From edc110907ee159df7853da719b2188345ef30006 Mon Sep 17 00:00:00 2001 From: PJBot Date: Mon, 30 Sep 2024 22:41:38 +0000 Subject: [PATCH 01/94] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index dfa6f67546..fcd23b07ef 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Plykiya - changes: - - message: You can now eat or drink and swap hands without it being interrupted. - type: Tweak - id: 6962 - time: '2024-07-22T09:17:57.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30060 - author: IProduceWidgets changes: - message: Zookeepers can now possess Nonlethal shotguns according to spacelaw. @@ -3937,3 +3930,11 @@ id: 7461 time: '2024-09-30T22:24:37.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/30250 +- author: kosticia + changes: + - message: The maximum number of ID cards required to complete a thief's objective + has been changed from 15 to 10. + type: Tweak + id: 7462 + time: '2024-09-30T22:40:31.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32411 From 3b682d4d68c82b218a3727961241e519a91677f1 Mon Sep 17 00:00:00 2001 From: Golinth Date: Mon, 30 Sep 2024 22:13:16 -0500 Subject: [PATCH 02/94] Added Firebots - Real (#32482) * Add Firebots Had to add OnActivateInWorld to the spray system to get the bot to work. Checks for the flammable component and if the onFire boolean is true. * Make SpraySystem actually use useDelay got rid of that TODO * Added firebot speech Fire detected! --- .../Fluids/EntitySystems/SpraySystem.cs | 48 ++++++++++++------ .../Queries/Considerations/TargetOnFireCon.cs | 9 ++++ .../NPC/Systems/NPCUtilitySystem.cs | 7 +++ .../interaction-popup-component.ftl | 2 + Resources/Locale/en-US/npc/firebot.ftl | 1 + .../Entities/Clothing/Head/helmets.yml | 2 + .../Prototypes/Entities/Mobs/NPCs/silicon.yml | 47 +++++++++++++++++ .../Objects/Misc/fire_extinguisher.yml | 3 ++ Resources/Prototypes/NPCs/firebot.yml | 44 ++++++++++++++++ Resources/Prototypes/NPCs/utility_queries.yml | 21 ++++++++ .../Recipes/Crafting/Graphs/bots/firebot.yml | 33 ++++++++++++ .../Prototypes/Recipes/Crafting/bots.yml | 13 +++++ Resources/Prototypes/tags.yml | 6 +++ .../Mobs/Silicon/Bots/firebot.rsi/firebot.png | Bin 0 -> 4614 bytes .../Mobs/Silicon/Bots/firebot.rsi/meta.json | 20 ++++++++ 15 files changed, 241 insertions(+), 15 deletions(-) create mode 100644 Content.Server/NPC/Queries/Considerations/TargetOnFireCon.cs create mode 100644 Resources/Locale/en-US/npc/firebot.ftl create mode 100644 Resources/Prototypes/NPCs/firebot.yml create mode 100644 Resources/Prototypes/Recipes/Crafting/Graphs/bots/firebot.yml create mode 100644 Resources/Textures/Mobs/Silicon/Bots/firebot.rsi/firebot.png create mode 100644 Resources/Textures/Mobs/Silicon/Bots/firebot.rsi/meta.json diff --git a/Content.Server/Fluids/EntitySystems/SpraySystem.cs b/Content.Server/Fluids/EntitySystems/SpraySystem.cs index fe179be402..a1f195bf43 100644 --- a/Content.Server/Fluids/EntitySystems/SpraySystem.cs +++ b/Content.Server/Fluids/EntitySystems/SpraySystem.cs @@ -14,6 +14,7 @@ using Robust.Shared.Physics.Components; using Robust.Shared.Prototypes; using System.Numerics; +using Robust.Shared.Map; namespace Content.Server.Fluids.EntitySystems; @@ -35,6 +36,19 @@ public override void Initialize() base.Initialize(); SubscribeLocalEvent(OnAfterInteract); + SubscribeLocalEvent(OnActivateInWorld); + } + + private void OnActivateInWorld(Entity entity, ref UserActivateInWorldEvent args) + { + if (args.Handled) + return; + + args.Handled = true; + + var targetMapPos = _transform.GetMapCoordinates(GetEntityQuery().GetComponent(args.Target)); + + Spray(entity, args.User, targetMapPos); } private void OnAfterInteract(Entity entity, ref AfterInteractEvent args) @@ -44,29 +58,36 @@ private void OnAfterInteract(Entity entity, ref AfterInteractEve args.Handled = true; + var clickPos = _transform.ToMapCoordinates(args.ClickLocation); + + Spray(entity, args.User, clickPos); + } + + public void Spray(Entity entity, EntityUid user, MapCoordinates mapcoord) + { if (!_solutionContainer.TryGetSolution(entity.Owner, SprayComponent.SolutionName, out var soln, out var solution)) return; - var ev = new SprayAttemptEvent(args.User); + var ev = new SprayAttemptEvent(user); RaiseLocalEvent(entity, ref ev); if (ev.Cancelled) return; - if (!TryComp(entity, out var useDelay) - || _useDelay.IsDelayed((entity, useDelay))) + if (TryComp(entity, out var useDelay) + && _useDelay.IsDelayed((entity, useDelay))) return; if (solution.Volume <= 0) { - _popupSystem.PopupEntity(Loc.GetString("spray-component-is-empty-message"), entity.Owner, args.User); + _popupSystem.PopupEntity(Loc.GetString("spray-component-is-empty-message"), entity.Owner, user); return; } var xformQuery = GetEntityQuery(); - var userXform = xformQuery.GetComponent(args.User); + var userXform = xformQuery.GetComponent(user); var userMapPos = _transform.GetMapCoordinates(userXform); - var clickMapPos = args.ClickLocation.ToMap(EntityManager, _transform); + var clickMapPos = mapcoord; var diffPos = clickMapPos.Position - userMapPos.Position; if (diffPos == Vector2.Zero || diffPos == Vector2Helpers.NaN) @@ -88,8 +109,6 @@ private void OnAfterInteract(Entity entity, ref AfterInteractEve var amount = Math.Max(Math.Min((solution.Volume / entity.Comp.TransferAmount).Int(), entity.Comp.VaporAmount), 1); var spread = entity.Comp.VaporSpread / amount; - // TODO: Just use usedelay homie. - var cooldownTime = 0f; for (var i = 0; i < amount; i++) { @@ -131,20 +150,19 @@ private void OnAfterInteract(Entity entity, ref AfterInteractEve // impulse direction is defined in world-coordinates, not local coordinates var impulseDirection = rotation.ToVec(); var time = diffLength / entity.Comp.SprayVelocity; - cooldownTime = MathF.Max(time, cooldownTime); - _vapor.Start(ent, vaporXform, impulseDirection * diffLength, entity.Comp.SprayVelocity, target, time, args.User); + _vapor.Start(ent, vaporXform, impulseDirection * diffLength, entity.Comp.SprayVelocity, target, time, user); - if (TryComp(args.User, out var body)) + if (TryComp(user, out var body)) { - if (_gravity.IsWeightless(args.User, body)) - _physics.ApplyLinearImpulse(args.User, -impulseDirection.Normalized() * entity.Comp.PushbackAmount, body: body); + if (_gravity.IsWeightless(user, body)) + _physics.ApplyLinearImpulse(user, -impulseDirection.Normalized() * entity.Comp.PushbackAmount, body: body); } } _audio.PlayPvs(entity.Comp.SpraySound, entity, entity.Comp.SpraySound.Params.WithVariation(0.125f)); - _useDelay.SetLength(entity.Owner, TimeSpan.FromSeconds(cooldownTime)); - _useDelay.TryResetDelay((entity, useDelay)); + if (useDelay != null) + _useDelay.TryResetDelay((entity, useDelay)); } } diff --git a/Content.Server/NPC/Queries/Considerations/TargetOnFireCon.cs b/Content.Server/NPC/Queries/Considerations/TargetOnFireCon.cs new file mode 100644 index 0000000000..d86dbc06ec --- /dev/null +++ b/Content.Server/NPC/Queries/Considerations/TargetOnFireCon.cs @@ -0,0 +1,9 @@ +namespace Content.Server.NPC.Queries.Considerations; + +/// +/// Returns 1f if the target is on fire or 0f if not. +/// +public sealed partial class TargetOnFireCon : UtilityConsideration +{ + +} diff --git a/Content.Server/NPC/Systems/NPCUtilitySystem.cs b/Content.Server/NPC/Systems/NPCUtilitySystem.cs index 8dff93648b..60bc5cdfd8 100644 --- a/Content.Server/NPC/Systems/NPCUtilitySystem.cs +++ b/Content.Server/NPC/Systems/NPCUtilitySystem.cs @@ -1,3 +1,4 @@ +using Content.Server.Atmos.Components; using Content.Server.Fluids.EntitySystems; using Content.Server.NPC.Queries; using Content.Server.NPC.Queries.Considerations; @@ -351,6 +352,12 @@ private float GetScore(NPCBlackboard blackboard, EntityUid targetUid, UtilityCon return 0f; } + case TargetOnFireCon: + { + if (TryComp(targetUid, out FlammableComponent? fire) && fire.OnFire) + return 1f; + return 0f; + } default: throw new NotImplementedException(); } diff --git a/Resources/Locale/en-US/interaction/interaction-popup-component.ftl b/Resources/Locale/en-US/interaction/interaction-popup-component.ftl index 10773d6de8..a180b698fa 100644 --- a/Resources/Locale/en-US/interaction/interaction-popup-component.ftl +++ b/Resources/Locale/en-US/interaction/interaction-popup-component.ftl @@ -60,6 +60,7 @@ petting-success-honkbot = You pet {THE($target)} on {POSS-ADJ($target)} slippery petting-success-mimebot = You pet {THE($target)} on {POSS-ADJ($target)} cold metal head. petting-success-cleanbot = You pet {THE($target)} on {POSS-ADJ($target)} damp metal head. petting-success-medibot = You pet {THE($target)} on {POSS-ADJ($target)} sterile metal head. +petting-success-firebot = You pet {THE($target)} on {POSS-ADJ($target)} warm metal head. petting-success-generic-cyborg = You pet {THE($target)} on {POSS-ADJ($target)} metal head. petting-success-salvage-cyborg = You pet {THE($target)} on {POSS-ADJ($target)} dirty metal head. petting-success-engineer-cyborg = You pet {THE($target)} on {POSS-ADJ($target)} reflective metal head. @@ -73,6 +74,7 @@ petting-failure-honkbot = You reach out to pet {THE($target)}, but {SUBJECT($tar petting-failure-cleanbot = You reach out to pet {THE($target)}, but {SUBJECT($target)} {CONJUGATE-BE($target)} busy mopping! petting-failure-mimebot = You reach out to pet {THE($target)}, but {SUBJECT($target)} {CONJUGATE-BE($target)} busy miming! petting-failure-medibot = You reach out to pet {THE($target)}, but {POSS-ADJ($target)} syringe nearly stabs your hand! +petting-failure-firebot = You reach out to pet {THE($target)}, but {SUBJECT($target)} sprays you in the face before you can get close! petting-failure-generic-cyborg = You reach out to pet {THE($target)}, but {SUBJECT($target)} {CONJUGATE-BE($target)} busy stating laws! petting-failure-salvage-cyborg = You reach out to pet {THE($target)}, but {SUBJECT($target)} {CONJUGATE-BE($target)} busy drilling! petting-failure-engineer-cyborg = You reach out to pet {THE($target)}, but {SUBJECT($target)} {CONJUGATE-BE($target)} busy repairing! diff --git a/Resources/Locale/en-US/npc/firebot.ftl b/Resources/Locale/en-US/npc/firebot.ftl new file mode 100644 index 0000000000..758874ceaa --- /dev/null +++ b/Resources/Locale/en-US/npc/firebot.ftl @@ -0,0 +1 @@ +firebot-fire-detected = Fire detected! diff --git a/Resources/Prototypes/Entities/Clothing/Head/helmets.yml b/Resources/Prototypes/Entities/Clothing/Head/helmets.yml index 625ef7a056..11643c076d 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/helmets.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/helmets.yml @@ -249,6 +249,7 @@ - type: Tag tags: - WhitelistChameleon + - FireHelmet - type: HideLayerClothing slots: - Hair @@ -281,6 +282,7 @@ - type: Tag tags: - WhitelistChameleon + - FireHelmet - type: HideLayerClothing slots: - Hair diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml b/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml index d5b4366e2b..7d988c6fe9 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml @@ -108,6 +108,53 @@ - type: NoSlip - type: Insulated +- type: entity + parent: MobSiliconBase + id: MobFireBot + name: firebot + description: A little fire extinguishing bot. He looks rather anxious. + components: + - type: Sprite + sprite: Mobs/Silicon/Bots/firebot.rsi + state: firebot + - type: Construction + graph: FireBot + node: bot + - type: SentienceTarget + flavorKind: station-event-random-sentience-flavor-mechanical + - type: HTN + rootTask: + task: FirebotCompound + - type: SolutionContainerManager + solutions: + spray: + maxVol: 10 + reagents: + - ReagentId: Water + Quantity: 10 + - type: SolutionRegeneration + solution: spray + generated: + reagents: + - ReagentId: Water + Quantity: 10 + - type: Spray + transferAmount: 10 + pushbackAmount: 60 + spraySound: + path: /Audio/Effects/extinguish.ogg + sprayedPrototype: ExtinguisherSpray + vaporAmount: 1 + vaporSpread: 90 + sprayVelocity: 3.0 + - type: UseDelay + delay: 4 + - type: InteractionPopup + interactSuccessString: petting-success-firebot + interactFailureString: petting-failure-firebot + interactSuccessSound: + path: /Audio/Ambience/Objects/periodic_beep.ogg + - type: entity parent: MobSiliconBase id: MobHonkBot diff --git a/Resources/Prototypes/Entities/Objects/Misc/fire_extinguisher.yml b/Resources/Prototypes/Entities/Objects/Misc/fire_extinguisher.yml index 0389db27ea..b306da6442 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/fire_extinguisher.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/fire_extinguisher.yml @@ -62,6 +62,9 @@ - Rolling speedModifier: 0.5 # its very big, awkward to use - type: Appearance + - type: Tag + tags: + - FireExtinguisher - type: GenericVisualizer visuals: enum.ToggleVisuals.Toggled: diff --git a/Resources/Prototypes/NPCs/firebot.yml b/Resources/Prototypes/NPCs/firebot.yml new file mode 100644 index 0000000000..acea6498bd --- /dev/null +++ b/Resources/Prototypes/NPCs/firebot.yml @@ -0,0 +1,44 @@ +- type: htnCompound + id: FirebotCompound + branches: + - tasks: + - !type:HTNCompoundTask + task: DouseFireTargetCompound + - tasks: + - !type:HTNCompoundTask + task: IdleCompound + +- type: htnCompound + id: DouseFireTargetCompound + branches: + - tasks: + - !type:HTNPrimitiveTask + operator: !type:UtilityOperator + proto: NearbyOnFire + + - !type:HTNPrimitiveTask + operator: !type:SpeakOperator + speech: firebot-fire-detected + hidden: true + + - !type:HTNPrimitiveTask + operator: !type:MoveToOperator + pathfindInPlanning: true + removeKeyOnFinish: false + targetKey: TargetCoordinates + pathfindKey: TargetPathfind + rangeKey: InteractRange + + - !type:HTNPrimitiveTask + preconditions: + - !type:TargetInRangePrecondition + targetKey: Target + rangeKey: InteractRange + operator: !type:InteractWithOperator + targetKey: Target + services: + - !type:UtilityService + id: FireService + proto: NearbyOnFire + key: Target + diff --git a/Resources/Prototypes/NPCs/utility_queries.yml b/Resources/Prototypes/NPCs/utility_queries.yml index 06bc0a9a9e..e10a0ed30c 100644 --- a/Resources/Prototypes/NPCs/utility_queries.yml +++ b/Resources/Prototypes/NPCs/utility_queries.yml @@ -144,6 +144,27 @@ - !type:TargetAccessibleCon curve: !type:BoolCurve +- type: utilityQuery + id: NearbyOnFire + query: + - !type:ComponentQuery + components: + - type: Flammable + # why does Flammable even have a required damage + damage: + types: + burn: 0 + considerations: + - !type:TargetDistanceCon + curve: !type:PresetCurve + preset: TargetDistance + - !type:TargetAccessibleCon + curve: !type:BoolCurve + - !type:TargetInLOSOrCurrentCon + curve: !type:BoolCurve + - !type:TargetOnFireCon + curve: !type:BoolCurve + - type: utilityQuery id: NearbyPuddles query: diff --git a/Resources/Prototypes/Recipes/Crafting/Graphs/bots/firebot.yml b/Resources/Prototypes/Recipes/Crafting/Graphs/bots/firebot.yml new file mode 100644 index 0000000000..977ffd4093 --- /dev/null +++ b/Resources/Prototypes/Recipes/Crafting/Graphs/bots/firebot.yml @@ -0,0 +1,33 @@ +- type: constructionGraph + id: FireBot + start: start + graph: + - node: start + edges: + - to: bot + steps: + - tag: FireExtinguisher + icon: + sprite: Objects/Misc/fire_extinguisher.rsi + state: fire_extinguisher_open + name: fire extinguisher + - tag: FireHelmet + icon: + sprite: Clothing/Head/Helmets/firehelmet.rsi + state: icon + name: fire helmet + doAfter: 2 + - tag: ProximitySensor + icon: + sprite: Objects/Misc/proximity_sensor.rsi + state: icon + name: proximity sensor + doAfter: 2 + - tag: BorgArm + icon: + sprite: Mobs/Silicon/drone.rsi + state: l_hand + name: borg arm + doAfter: 2 + - node: bot + entity: MobFireBot diff --git a/Resources/Prototypes/Recipes/Crafting/bots.yml b/Resources/Prototypes/Recipes/Crafting/bots.yml index 3031f4a780..21b524a060 100644 --- a/Resources/Prototypes/Recipes/Crafting/bots.yml +++ b/Resources/Prototypes/Recipes/Crafting/bots.yml @@ -11,6 +11,19 @@ sprite: Mobs/Silicon/Bots/cleanbot.rsi state: cleanbot +- type: construction + name: firebot + id: firebot + graph: FireBot + startNode: start + targetNode: bot + category: construction-category-utilities + objectType: Item + description: This bot puts out fires wherever it goes. + icon: + sprite: Mobs/Silicon/Bots/firebot.rsi + state: firebot + - type: construction name: honkbot id: honkbot diff --git a/Resources/Prototypes/tags.yml b/Resources/Prototypes/tags.yml index 2a07d061d3..86ade97d4e 100644 --- a/Resources/Prototypes/tags.yml +++ b/Resources/Prototypes/tags.yml @@ -617,6 +617,12 @@ - type: Tag id: FirelockElectronics +- type: Tag + id: FireExtinguisher + +- type: Tag + id: FireHelmet + - type: Tag id: Flare diff --git a/Resources/Textures/Mobs/Silicon/Bots/firebot.rsi/firebot.png b/Resources/Textures/Mobs/Silicon/Bots/firebot.rsi/firebot.png new file mode 100644 index 0000000000000000000000000000000000000000..70ee9313d2d62bc1847b1bc663f2205e85a9685e GIT binary patch literal 4614 zcmeHKdsGu=7N39u;pQeTtDFd<}2d?f*531%S`bg?p-nS@#Lo`D2WQPgUE zAU?3&F1Avu7Q3aQt754Yg!)3aYCYBZ#8yO)>uT|VT8jH6AmZ7cv&VC`|B-VhGjkum z@7~|N_dD~wr%O!=2^AAb5eH7j`hU6Z&BhVe-~Z}+W!Q$g$g#-L%h3<+iZe6Fh-rx})`R)4 zZqF-iqp4M**kM24HtJ6V>|C7fXPMWuZD!l!pg*@~tk1i+=|onms#ALQ`0d+k=E0{2 zHXmJ3#S@j_m|xkrWpjs=4)LeZQp+I0wJRTm)<`EnGtS+~ue%6Ayv2-CsnaNx&r$-3 zl+RnENN$)E_3iBREi=c2PS-h(=r;cA6Mo5-BHix)+& zc-w!lY1Zpm{U_h`ZTzubb4oq6V|H53z@O_K6E9yXytvPX@sO zzTZ2iRuIAb1)CaE6n~v@f5Wu@Qxtt)}G(ynJ=6OuX`Gt#aN1V^N!D7 z`;IMl&G1b{ku^2e+_pFD`+S2HH`m6<)_%NIH_qpd>AtogyZN<%s;~C%e&~1tQI(%> ziEM5T8zTJE!w(PF7UG4!wx@i4Alf;?xpmp_S))MfAlcaq#RB3;D3ugv(X%GqpNcX>-yrCcp$DMD1qsQT~KLSni~Z zc$zA)8v?v3_&FSB$AvX=Q+*ZbSP3tn`sL$Wx=ZA7nV%YXmvdv9tup1 z#qRY2WWQj^F~;X)y%3v6<4vb`Ai%u`_XX=`xqFR)l~#+ZY-FA%JdH}h_pFaoHj<%m z@1w+sQVAl8LQqmfBbbCXAO;epkOT~);v_UiU^289l*Y<(gq5T{Pyk%O030-d#v~$= zMo82^A{a%A5E&ImBQgR*MW~U&&;+s<#55-Zx{@&Wj>-c?0Vu*iNMvG6h8W^8DS{C) z0+C^2BSJ_}EP<4u2C+fxg`!A2(dM)epqz|_FwsK0)#O!p2*)SuGzvZ{5IvXZ%mily z4qyftD`j)B&sBQHLZ@?thflE-m7+44NFo)*qhg8VxzTjm$%0<=po&F;ILxc@6b1+B z0BQ+Orvd=49AtwloixGOoO+whtl)csf<2x+YAqNjir@$p!O;LzgkrczhNBX_I35>E z@i-|WlHj6V_BM(!7W^-3&-lRduA(P1ELgw5E9#o5blTDN*7a&;yu$>;-m$<5vMU9a z$fqf9oB*p!MdlDz6Aku{?uLCPXMU#{#4@ANh)LrRi3E!W6^us_Z+j(>vN)8EC*!49 z7fC(ntj)-|2q!(+1b75ofd=(*1&``3)#w+aaplmSIsnQLkqqfY8DH3)tkAP#Jj+%t z{4YM_UV~m+4DjocfvpSdgumT{+uEQU>1Pu2r@>2Zv(bY%SOEK_L#(mw@ zN7qX+@KVNo-SvN?EAaVYinf9;AQw0)Wsi(q0*+aJhPRSb-UAo(SXo;Ho?fvh&tM@a zw9#|%%EpF90--;r(W?D#yfXCFfg>Z@uC#))bd^RmS)X(Hc4qZdU-6L6wfBaq>@LR* z4LtZRul)QzWyRkX<(@4r;5pdAc*5Rw19Zz;it`@ykI0Z-9k%pgRYv8vjUO$&|Fpzj zn$=d+KJqc!&g*xuYSEJXh$%H#b<;xY!9zcN^ZGx2NDa6OK}jaHW3as}{N&8qrag(f zek{+BUlB(7YIcP6Pux84Sli&gj0r`@AgJo-%ea*mps7TFza1?}jjF zfwejR`h@y>uRUGCjUGKKvhzae(y;N@ zqkhAdOubf~!#_1GJ*rb3dpu@n!^!jf8p>Ro3t!27dNLceg`HCt#na ztLu(thn?B8`_95Qn!gFUf9|F`I~nbmF8= c=&I{czc!!93dg%_s;AZ(b*idrN_O#o0LjaybN~PV literal 0 HcmV?d00001 diff --git a/Resources/Textures/Mobs/Silicon/Bots/firebot.rsi/meta.json b/Resources/Textures/Mobs/Silicon/Bots/firebot.rsi/meta.json new file mode 100644 index 0000000000..e13b42deee --- /dev/null +++ b/Resources/Textures/Mobs/Silicon/Bots/firebot.rsi/meta.json @@ -0,0 +1,20 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/tgstation/tgstation/commit/eba0d62005e7754dd8b1c88e45cd949c360774d5", + "states": [ + { + "name": "firebot", + "delays": [ + [ + 0.5, + 0.2 + ] + ] + } + ] +} From a73780bc57e2409862cfe5dc7862c877fd169b10 Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 1 Oct 2024 03:14:22 +0000 Subject: [PATCH 03/94] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index fcd23b07ef..20c02f6d81 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: IProduceWidgets - changes: - - message: Zookeepers can now possess Nonlethal shotguns according to spacelaw. - type: Tweak - id: 6963 - time: '2024-07-22T09:33:03.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30237 - author: Plykiya changes: - message: Bag sounds can now only be heard from half the distance and is quieter @@ -3938,3 +3931,11 @@ id: 7462 time: '2024-09-30T22:40:31.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32411 +- author: Golinth + changes: + - message: Firebots can now be constructed by scientists - the bots wander the station + looking for fires to put out with their built-in extinguisher. + type: Add + id: 7463 + time: '2024-10-01T03:13:16.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32482 From ba68fb2ddbbda039b2072e905abd6ce4ea62d58a Mon Sep 17 00:00:00 2001 From: ScarKy0 <106310278+ScarKy0@users.noreply.github.com> Date: Tue, 1 Oct 2024 06:03:37 +0200 Subject: [PATCH 04/94] Update binary key to use AI icon (#32327) * Init * uplink icon --- Resources/Prototypes/Catalog/uplink_catalog.yml | 2 +- .../Entities/Objects/Devices/encryption_keys.yml | 4 ++-- .../Devices/encryption_keys.rsi/ai_label.png | Bin 0 -> 5737 bytes .../Devices/encryption_keys.rsi/meta.json | 3 ++- 4 files changed, 5 insertions(+), 4 deletions(-) create mode 100644 Resources/Textures/Objects/Devices/encryption_keys.rsi/ai_label.png diff --git a/Resources/Prototypes/Catalog/uplink_catalog.yml b/Resources/Prototypes/Catalog/uplink_catalog.yml index 8d7f835603..a91aab53c8 100644 --- a/Resources/Prototypes/Catalog/uplink_catalog.yml +++ b/Resources/Prototypes/Catalog/uplink_catalog.yml @@ -773,7 +773,7 @@ id: UplinkBinaryTranslatorKey name: uplink-binary-translator-key-name description: uplink-binary-translator-key-desc - icon: { sprite: /Textures/Objects/Devices/encryption_keys.rsi, state: borg_label } + icon: { sprite: /Textures/Objects/Devices/encryption_keys.rsi, state: ai_label } productEntity: EncryptionKeyBinarySyndicate cost: Telecrystal: 1 diff --git a/Resources/Prototypes/Entities/Objects/Devices/encryption_keys.yml b/Resources/Prototypes/Entities/Objects/Devices/encryption_keys.yml index 25d81a6f83..7393532654 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/encryption_keys.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/encryption_keys.yml @@ -227,7 +227,7 @@ - type: Sprite layers: - state: crypt_silver - - state: borg_label + - state: ai_label - type: entity parent: [ EncryptionKey, BaseSyndicateContraband ] @@ -242,7 +242,7 @@ - type: Sprite layers: - state: crypt_red - - state: borg_label + - state: ai_label - type: entity parent: EncryptionKey diff --git a/Resources/Textures/Objects/Devices/encryption_keys.rsi/ai_label.png b/Resources/Textures/Objects/Devices/encryption_keys.rsi/ai_label.png new file mode 100644 index 0000000000000000000000000000000000000000..02409127a3fdaf41b992c5fc769d6402031b1de7 GIT binary patch literal 5737 zcmeHKYg7~077n1GAPOo1iaJKLqJ|_x2uVt)JS7SQ0TrbS9A+kDATN_Z0=_}5;@esg zvET!1!2nuRkkZOS1@WzvDk2I#QBbTEC>HIRfQYwVdtK}HpR5%!=bUeUd!O&@y-#Ls zV8C>9(~+hW3dLOD>lFmPA@Vc882ncyB>YaH^y4IigsOuO4Wv-YMT7*0)bR=&!nK5m zLebW?q=ap4o;Yart$E(tms=Davdf))-F7JIoI)cW^!`HeR%Z?V4I!GGdL?Zki-gW_deh4=p3YmEmCHG8zaplflc;a7|A9_Too-I`vN z?~`%lL{eG8Q4>}%FF51gS1tBWYvrpN3OmkM)@6)8acq4E1RInJ&+=e+B`=oDG? zUnlt8tA?)KR=Q<4$jXI*1uE;hF&00KuAJU{xZz32B!jbi{gNirb{=T1Mj`{8Y^$~< zG+wE*GpM*aX4Ea4(bw&p zqJ1tH4nT0DkyGi1s(dAD#-811lU=se+w0WH{l2qnbbGVE`}~jD=-G+iiSEzQ@fO7` zj8zQ@FWw$vb7ofZh$-PSvaFKkh;uuNJa*S?A6ZbBN#x(pIZ|us#@95}<}7-+|JNN+!h8p=A$yPj7+bf=9D3cHkE z-I{gXvww@4nr6FZzaJz^qZsm}qRS2shO>*#Pu;$9_PBv_s#ZIRhZ&W+I-J@2*^ehG ze^Qunm#qy;*lafHW*%hCE)rIDRkj#KqfgmOGaFd(I5fX@j8M@o<59PRqK{{g6XQjzw%&wQwJrl-sJ@q$#eZ?Uv@kV8E>OPaQ z4&RjO1=S%j40%Sw^T4V{X8GxrD5thkvco4SVt%Ts@+8y8*XQ#{JLs$QrDw*qTS;f> zJe66y_wJxx;N)A|t-oPcnUpfGLKu-zd%!JPHEv<&Z0<6Tp{K8ISadscm-!jZnbm1W z%)@GjpP3gg*%rnUKTp|F5>l{h+F*<6)#uy1ywkob5#U66&BE{%1$W{c1Q!inR%M|P ze+JpQJt}eSwqiSIrsIJ@LwNZ`+53~ib2zP{`Lg%)&Hwi75winuL z*tVZSF<41>dIkzSJ>T>Y&^dN3*~0fNpJsO|B6$B~+Tb_~%X5L>PF<7CnPIhV!JZ>l z^J5vue>dC7vUhOYm>5%9y6IGQ(z^WI!MTZ0he2cW?aYVN39sl5N7g*MT{!mX6aJHW z1CM=WA^9$G>d+W0oj#c@^7rVF~GwQMB zLi=>I2(gq~T$Ie`Jy_Dnm?AKJ#(h@kZf(ExZc+1ZqaN%nH@rA#RBE;B!X2Sg;||r8 z>ag!mUOj2){mZ0?$|9YjzEL+PS{EyPRkk2JOrZMqKBFhH%x)iq2dk*J7EJayAjf)o zl^UZ9z<>qz0|0cG!QjvsFb(F?``Uw5fB#-A3ghr-4&4vpoEuxT78E`x?LU2qP|#f5`$ zkUmrbnM#ewP@JR!jf1hdG@Q-CaZaQYn<--Sp%5ww zPzi{nZ&V}|2B>gmB<6yi(|2*q#=#$Xr~>8Z$b;JF71_*B@j zn_NE=C_&UBxl#(si;!V*jp{8pgplIFYJ`-H=>oICCYjD`m<#fs`4%(>SE@joldMdJ zBMj?TFqG#5I1!L;gcOOw=?Yntet|p~9@q|$79pzxFze^RZg`$b98t@aA#%BdPbFi6 zNJ@QCL9RXJ!t;}(dP6-J$HeVhkpO)t!C4>?*lPtwEHydlbk4aL%B(^ydss>d8NcccamWaWc6WFpCCC1!jaW zoq0|$&xuX#K5fXAPIlNgyLBadkiS2#uO6;skKzf)L=28qC?o`~d{?J8dGlXzee8R3 z^qpXB-|1wIP=DZBn}a+$t;<;G>; zcb^8lP;>hoa|bWu#*s6pdx7sF$`8Zu4YdVN0~NmWR1}KYF!EzS*}2OGOq!?#{@x}J z2M#xf?7iE|YQR*2z{@=(w7liYVe{pXMgL2A@cI~wijpg38xCy_C@A4$Hl;p;a&|26 zdv!3EJNT7>g{9>ZT@?{jyE>GPnot-QP;pwtgSB;O6{VC*!mv2QM*qc43mhiY1T8YN z-Y=b6UOaY>*s$sGE#2-51bpGv;R;^YFfT8!6H3EHPPDDBB6j(KC@2E&0Iyt+1&MzF Duz8jW literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Devices/encryption_keys.rsi/meta.json b/Resources/Textures/Objects/Devices/encryption_keys.rsi/meta.json index 6ae7bca9dd..a6222e988f 100644 --- a/Resources/Textures/Objects/Devices/encryption_keys.rsi/meta.json +++ b/Resources/Textures/Objects/Devices/encryption_keys.rsi/meta.json @@ -35,6 +35,7 @@ {"name": "sec_label"}, {"name": "service_label"}, {"name": "synd_label"}, - {"name": "borg_label"} + {"name": "borg_label"}, + {"name": "ai_label"} ] } From 6a1815aeafbd4996abca1e4f6ade614f24bb53c3 Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 1 Oct 2024 04:04:43 +0000 Subject: [PATCH 05/94] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 20c02f6d81..04f65e3367 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: Plykiya - changes: - - message: Bag sounds can now only be heard from half the distance and is quieter - in general. - type: Tweak - id: 6964 - time: '2024-07-22T09:54:15.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30225 - author: osjarw changes: - message: Syringes are now 0.5 seconds faster. @@ -3939,3 +3931,10 @@ id: 7463 time: '2024-10-01T03:13:16.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32482 +- author: ScarKy0 + changes: + - message: Binary encryption key now uses an AI icon + type: Tweak + id: 7464 + time: '2024-10-01T04:03:37.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32327 From f79de12509002743dcae02984b99d60656f32025 Mon Sep 17 00:00:00 2001 From: BramvanZijp <56019239+BramvanZijp@users.noreply.github.com> Date: Tue, 1 Oct 2024 17:13:59 +0200 Subject: [PATCH 06/94] Prevent borgs from being able to be briefly toggled off. (#32485) * Prevent borgs from being able to be briefly toggled off. * Use the pre-existing component instead of making an unneccesary duplicate. --- Content.Shared/Item/ItemToggle/ItemToggleSystem.cs | 2 +- .../Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Content.Shared/Item/ItemToggle/ItemToggleSystem.cs b/Content.Shared/Item/ItemToggle/ItemToggleSystem.cs index 98029f97d5..d5bbaac12c 100644 --- a/Content.Shared/Item/ItemToggle/ItemToggleSystem.cs +++ b/Content.Shared/Item/ItemToggle/ItemToggleSystem.cs @@ -71,7 +71,7 @@ private void OnUseInHand(Entity ent, ref UseInHandEvent arg private void OnActivateVerb(Entity ent, ref GetVerbsEvent args) { - if (!args.CanAccess || !args.CanInteract) + if (!args.CanAccess || !args.CanInteract || !ent.Comp.OnActivate) return; var user = args.User; diff --git a/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml b/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml index 955ddfd2e3..54bd58af78 100644 --- a/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml +++ b/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml @@ -121,6 +121,7 @@ cellSlotId: cell_slot fitsInCharger: true - type: ItemToggle + onActivate: false # You should not be able to turn off a borg temporarily. activated: false # gets activated when a mind is added onUse: false # no item-borg toggling sorry - type: ItemTogglePointLight From d82c666e8030ee117f1e3740094410d462c4ba7d Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 1 Oct 2024 15:15:06 +0000 Subject: [PATCH 07/94] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 04f65e3367..625ed1613b 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: osjarw - changes: - - message: Syringes are now 0.5 seconds faster. - type: Tweak - id: 6965 - time: '2024-07-22T10:20:36.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29825 - author: Errant changes: - message: Replay observers now always spawn on the station. @@ -3938,3 +3931,10 @@ id: 7464 time: '2024-10-01T04:03:37.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32327 +- author: BramvanZijp + changes: + - message: Fixed borgs being able to be briefly disabled by others. + type: Fix + id: 7465 + time: '2024-10-01T15:13:59.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32485 From 23f4bc1d7a39b1e4d3e441c587449604314dcd90 Mon Sep 17 00:00:00 2001 From: TakoDragon <69509841+BackeTako@users.noreply.github.com> Date: Tue, 1 Oct 2024 23:07:48 +0200 Subject: [PATCH 08/94] Gay Boykissers (#32584) --- .../Prototypes/Entities/Clothing/Neck/pins.yml | 16 ++++++++++++++++ .../Markers/Spawners/Random/maintenance.yml | 1 + .../Loadouts/Miscellaneous/trinkets.yml | 6 ++++++ .../Prototypes/Loadouts/loadout_groups.yml | 1 + .../Neck/Misc/pins.rsi/gay-equipped.png | Bin 0 -> 179 bytes .../Clothing/Neck/Misc/pins.rsi/gay.png | Bin 0 -> 317 bytes .../Clothing/Neck/Misc/pins.rsi/meta.json | 9 ++++++++- 7 files changed, 32 insertions(+), 1 deletion(-) create mode 100644 Resources/Textures/Clothing/Neck/Misc/pins.rsi/gay-equipped.png create mode 100644 Resources/Textures/Clothing/Neck/Misc/pins.rsi/gay.png diff --git a/Resources/Prototypes/Entities/Clothing/Neck/pins.yml b/Resources/Prototypes/Entities/Clothing/Neck/pins.yml index eb948d299c..9f0ff79b20 100644 --- a/Resources/Prototypes/Entities/Clothing/Neck/pins.yml +++ b/Resources/Prototypes/Entities/Clothing/Neck/pins.yml @@ -72,6 +72,22 @@ neck: - state: bi-equipped +- type: entity + parent: ClothingNeckPinBase + id: ClothingNeckGayPin + name: gay pin + description: Be gay~ do crime. + components: + - type: Sprite + sprite: Clothing/Neck/Misc/pins.rsi + layers: + - state: gay + - type: Clothing + sprite: Clothing/Neck/Misc/pins.rsi + clothingVisuals: + neck: + - state: gay-equipped + - type: entity parent: ClothingNeckPinBase id: ClothingNeckIntersexPin diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml index 0aaaaf99b5..3f735cf98b 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml @@ -144,6 +144,7 @@ - id: ClothingNeckAromanticPin - id: ClothingNeckAsexualPin - id: ClothingNeckBisexualPin + - id: ClothingNeckGayPin - id: ClothingNeckIntersexPin - id: ClothingNeckLesbianPin - id: ClothingNeckNonBinaryPin diff --git a/Resources/Prototypes/Loadouts/Miscellaneous/trinkets.yml b/Resources/Prototypes/Loadouts/Miscellaneous/trinkets.yml index c91108124f..ea70828ce4 100644 --- a/Resources/Prototypes/Loadouts/Miscellaneous/trinkets.yml +++ b/Resources/Prototypes/Loadouts/Miscellaneous/trinkets.yml @@ -95,6 +95,12 @@ back: - ClothingNeckBisexualPin +- type: loadout + id: ClothingNeckGayPin + storage: + back: + - ClothingNeckGayPin + - type: loadout id: ClothingNeckIntersexPin storage: diff --git a/Resources/Prototypes/Loadouts/loadout_groups.yml b/Resources/Prototypes/Loadouts/loadout_groups.yml index 9bf0b4eb3d..1483fc3c11 100644 --- a/Resources/Prototypes/Loadouts/loadout_groups.yml +++ b/Resources/Prototypes/Loadouts/loadout_groups.yml @@ -18,6 +18,7 @@ - ClothingNeckAromanticPin - ClothingNeckAsexualPin - ClothingNeckBisexualPin + - ClothingNeckGayPin - ClothingNeckIntersexPin - ClothingNeckLesbianPin - ClothingNeckNonBinaryPin diff --git a/Resources/Textures/Clothing/Neck/Misc/pins.rsi/gay-equipped.png b/Resources/Textures/Clothing/Neck/Misc/pins.rsi/gay-equipped.png new file mode 100644 index 0000000000000000000000000000000000000000..d5127a021865ca0397b1ccd2e2d78f5ae13e4e4f GIT binary patch literal 179 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D$|ay?xfLn`LH zJ?F@K$U(s2qUQ}}zJkDWA>O_gXiu*J%1KD=Rc^J z{VrEVE?36y_UEl{48H~&ZCAP5bJXzv#Gm$6(QmdKI;Vst0GWGr A;s5{u literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Neck/Misc/pins.rsi/meta.json b/Resources/Textures/Clothing/Neck/Misc/pins.rsi/meta.json index 46b0496399..aab069b547 100644 --- a/Resources/Textures/Clothing/Neck/Misc/pins.rsi/meta.json +++ b/Resources/Textures/Clothing/Neck/Misc/pins.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "PixelTK leaves his mark on upstream", + "copyright": "PixelTK leaves his mark on upstream, BackeTako made the gay", "size": { "x": 32, "y": 32 @@ -28,6 +28,13 @@ "name": "bi-equipped", "directions": 4 }, + { + "name": "gay" + }, + { + "name": "gay-equipped", + "directions": 4 + }, { "name": "inter" }, From bfb2f60090ac4b13d5726a818f782add040b9a9b Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 1 Oct 2024 21:08:56 +0000 Subject: [PATCH 09/94] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 625ed1613b..880e212c69 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Errant - changes: - - message: Replay observers now always spawn on the station. - type: Fix - id: 6966 - time: '2024-07-22T19:32:30.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30252 - author: Cojoke-dot changes: - message: You can now read the volume of a gas tank in its examine text @@ -3938,3 +3931,10 @@ id: 7465 time: '2024-10-01T15:13:59.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32485 +- author: BackeTako + changes: + - message: Gay Pin + type: Add + id: 7466 + time: '2024-10-01T21:07:48.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32584 From f3fe5af240d9053f5ea89ba220218bfa4a02723c Mon Sep 17 00:00:00 2001 From: TakoDragon <69509841+BackeTako@users.noreply.github.com> Date: Tue, 1 Oct 2024 23:44:47 +0200 Subject: [PATCH 10/94] Reinforced walls sprite see throu top (#32578) fixed a gap --- .../Walls/solid.rsi/reinf_over0.png | Bin 1233 -> 1226 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/Resources/Textures/Structures/Walls/solid.rsi/reinf_over0.png b/Resources/Textures/Structures/Walls/solid.rsi/reinf_over0.png index eb81655efaaeefce2c7b75a0276b9ce2ba9b2d9b..338d7c8de01ea0e35fdfca6ad52e486fc24470df 100644 GIT binary patch delta 1193 zcmV;a1Xlae3CanOF@J0G{Uoz`HVl?d3%vfg1t9 z<8%6@41YK|K1NNJ;W*Cc%79+4hkn1Gi46G+a9tO=VPH0!acgN&QOHvuU#-<;87to} zVkk07vl%K1WCB>4=VMv$Hv_0&z!tcCEDN|Sf~;mgIX(vPxajRd6h%CS;|ekXf$t*> zLj=B$nk>V0UBq!#?TX_VO-;j{=i%=5HtGI~0DtlnxPMyo?$>MFI1ZvHLLA4L13+@~ z-EJ3mx3|<`xq(c;a=FBLr-S8ki65t@h@$AlBQ1W20`e4KH9d>(5jg<}Q3V1V2w*po zk7dD^uLH;#kk{+K+!V;`^|RUR)$^GLK$P7ec?zWU`d`=AFKYXeBxO7RqJW$MX}w<8 zb$=`ti>*QkKq7Y!hr?H0Ao~WrCz#Uf1K&rh)k3gi@6Y-HO|F{mwwN{bb%Yk!H?6^qzEd#G-jG6fPY72Xfm0+sSIh&=I2s|Ow&xX!Odp#^|Zkt z2r>fcm(vFGC|d>yVUkLFgx+$9n5LPTc2`$d#y06^j$Xs9Z@)hhGZ%J*?}bd>QUe5!w%N_z+HJa5Zm5JeIG8;>)71RfBE zfV6kuC4T|)A*3S}LQH}8imGWJ0wS+|f)E4%?^la?`w;#B@P^AWjAd0s00000NkvXX Hu0mjfE}|=u delta 1200 zcmV;h1W)_Q3DF6VF@K9mL_t(|ob8)YZ=y;R$N$o+*aZ>NT;fYh%yvmyeQo>_ee6f= zmoUESeeiZ;s6G%AV~bFwo4|c&hXUHx=8WFK-CsgZRB+_<%y8zMe@pnExw^WFDcARU zy%Od6zbF^;#ImeU&v6_FmStru6(Jm8Sr#Uf2^OA*nx=ht-hXg7gl*f2?e%)3u_e;g z99eiC+U+(Lo(D;iHXi>B1~3dGW2p$^fSRVE-|wTY>!@oQN~KcfkR%B|Y#ZN>j{zXD zRD_rUjJmD^02aOvtyar?rl=|c--n{AkYzcsRD_8Dh9tfHq*WLu2Y_VJ3twL|OB#>- z4SS+eE~6w#Yk!tXVH~h43gdw4>!O#pRD@at8I48*0ALsf0Dd>S2~rx#1C|O~mW7{p zcQ~^wJcl9f$K$ngo6ROhqfzF)!C+AQRG4LWhGF12456qhE-o%mDVG7fML@UPMYURm zmdX|f#AHYa2RM!c+qRR;PL^eaVYqRX*E9`^qCim;E`MVS;Q$r^f14)09UntcRRGu+ z0RW&V3W6ZuGPV#7_(}xuhP((~Uthv@w8lG zKA*$3Z8(lY-p^AZM?gLtS(xUjl*>u#df94m*~{~Q?11TX3IOmt4*<4`0JfJG!3o?P z0K7b>-+zmMv(r;lWEqa*999H$IvsSo-Hc`ABfxcC=!SvGWWueaMP(;Xfqb@Bm1Qh^ ze-}fMDa>YQSCAdR!aQ$_!k-ABegRwH^0p{&Sp-?mes+2a;APR92~%I zByayv5Xi-do12?B-?!fe7Ab`I|8tne+x% ztJUw<8w`RV(;)rrdV_h276C$tq|zFp&lDo2X=bL~?d@&xMN(f?h_GqL10fvn6^#(n zAsnnm=!b11@O?Orvlam?&seQi+{PBd0hVQ9JRUk4@55dH%*p3g1U22tAp O0000 Date: Tue, 1 Oct 2024 21:45:55 +0000 Subject: [PATCH 11/94] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 880e212c69..640bb92ba1 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Cojoke-dot - changes: - - message: You can now read the volume of a gas tank in its examine text - type: Tweak - id: 6967 - time: '2024-07-22T21:41:42.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29771 - author: Cojoke-dot changes: - message: Throwing a jetpack mid-flight will no longer freeze your character @@ -3938,3 +3931,10 @@ id: 7466 time: '2024-10-01T21:07:48.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32584 +- author: BackeTako + changes: + - message: Reinforced walls sprite see throu top + type: Fix + id: 7467 + time: '2024-10-01T21:44:47.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32578 From ec8b7b238a129e106f622704f77cf44a86843099 Mon Sep 17 00:00:00 2001 From: Zylofan <80375291+Zylofan@users.noreply.github.com> Date: Tue, 1 Oct 2024 17:55:56 -0400 Subject: [PATCH 12/94] fixed it so blue bandana head and mask sprite is not reversed on vox (#32569) --- .../Bandanas/blue.rsi/equipped-HELMET-vox.png | Bin 578 -> 552 bytes .../Bandanas/blue.rsi/equipped-MASK-vox.png | Bin 552 -> 578 bytes 2 files changed, 0 insertions(+), 0 deletions(-) diff --git a/Resources/Textures/Clothing/Head/Bandanas/blue.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Bandanas/blue.rsi/equipped-HELMET-vox.png index 726643237272c5e94fdb3654f409910742f35833..6bc5266367f4bfd767d5360aaa3a51198603d8fb 100644 GIT binary patch delta 505 zcmX@avVvuTW&JHr7srr_Id5kj^g8Sy&{n_Db?plFg>l8g{Bbq1^AD+i)U1)!mpc-@ zUd(2N#8fe@`omKsbV|)||?~$d~(woztRz_nx>5-+sSNdHePF z?%C&5Hk^1onfpw7ensWJ_<6~8B8NU33N^9hL}mFfNIqbGaOwHw|2p%h{nu1zQ(&C^ z=GhIVnol~@TBZNwYb#BOt7X-gaeK|aKW|Tn3U2;erP^?%+vnq>w{sZ|$L+|C-?LXV z!FBuJS6{*$w1BQHWE42g>QFBu4t6_)hr*c?#&ly!#=O@>VF#Wu%}UAdiFo+tboBgr z8**(W#8$sv8TIsQ#nq4LXUsk>Vu@Jriz^}MPvrG!+KR64`@U~@_Pi!+U7JxvMXAol zsn;aBp9?24P2=#iRk$c}<4)O`g}(I$Q4UvU$rUX=-8tcY#<9&Sr$#JtOSz`HnRf>B z_D*#qGvC6gM}W$qa6$# hkC_zu&^e!&_A&bE{4Ln;ZB@zu1fH&bF6*2UngC1q=STnm delta 532 zcmZ3%a)@PuW&IaV7srr_Id5m}_de_(a(w^N&TAQ^0&5mOP*8F$DEw$&_(i{lKb>@EufN{QgWaspIv5PxSsE;r z7|vW2+OWC))%JOL+NXe|U1L{foUxH|m`w zFA6!7PiKkPW?VV3u=WQ3?TN})%CD~S&6TfYeruRu+Z+>{u!PK6!iP zv;8)AB)-o6sp@fgo*c85IOAOwu6tkhPWE*861X6}UQple>hjF{Gt(O;1#H`1C$qTJ z;byaXiXsb=6YB*T6Z$w9id`6HC^H?95oCbNDZJzFhcw7&P9`}_QN z_F9J*GUwku(Nmnv;MEy8bBbh;BfI$a>&;hore6PF<73EeHSOHTnDjkg)z-~aNxoL` zY@(&5S87Ruy|@f}ZuIIEdTWnh0_wRNXyd=bPs7%-vz>^3Yh` zo@KhZFWP@+pW7DpA<*W#Y;&CTM%`Q6Jttk$u(ru{;F=`Fc7e}jiK^U>J=QTlzB6V9 zGXEEy$XA+k?>~c!;%kPx4qY5Eirk8@Sit7P=iElKb>@EufN{QgWaspIv5PxSsE;r z7|vW2+OWC))%JOL+NXe|U1L{foUxH|m`w zFA6!7PiKkPW?VV3u=WQ3?TN})%CD~S&6TfYeruRu+Z+>{u!PK6!iP zv;8)AB)-o6sp@fgo*c85IOAOwu6tkhPWE*861X6}UQple>hjF{Gt(O;1#H`1C$qTJ z;byaXiXsb=6YB*T6Z$w9id`6HC^H?95oCbNDZJzFhcw7&P9`}_QN z_F9J*GUwku(Nmnv;MEy8bBbh;BfI$a>&;hore6PF<73EeHSOHTnDjkg)z-~aNxoL` zY@(&5S87Ruy|@f}ZuIIEdTWnh0_wRNXyd=bPs7%-vz>^3Yh` zo@KhZFWP@+pW7DpA<*W#Y;&CTM%`Q6Jttk$u(ru{;F=`Fc7e}jiK^U>J=QTlzB6V9 zGXEEy$XA+k?>~c!;%kPx4qY5Eirk8@Sit7P=iEl8g{Bbq1^AD+i)U1)!mpc-@ zUd(2N#8fe@`omKsbV|)||?~$d~(woztRz_nx>5-+sSNdHePF z?%C&5Hk^1onfpw7ensWJ_<6~8B8NU33N^9hL}mFfNIqbGaOwHw|2p%h{nu1zQ(&C^ z=GhIVnol~@TBZNwYb#BOt7X-gaeK|aKW|Tn3U2;erP^?%+vnq>w{sZ|$L+|C-?LXV z!FBuJS6{*$w1BQHWE42g>QFBu4t6_)hr*c?#&ly!#=O@>VF#Wu%}UAdiFo+tboBgr z8**(W#8$sv8TIsQ#nq4LXUsk>Vu@Jriz^}MPvrG!+KR64`@U~@_Pi!+U7JxvMXAol zsn;aBp9?24P2=#iRk$c}<4)O`g}(I$Q4UvU$rUX=-8tcY#<9&Sr$#JtOSz`HnRf>B z_D*#qGvC6gM}W$qa6$# hkC_zu&^e!&_A&bE{4Ln;ZB@zu1fH&bF6*2UngC1q=STnm From 8833cf624ad94cbb189f2308af4cb34301a04edd Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 2 Oct 2024 01:29:00 +0200 Subject: [PATCH 13/94] Update Credits (#32516) Co-authored-by: PJBot --- Resources/Credits/GitHub.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Credits/GitHub.txt b/Resources/Credits/GitHub.txt index 21d0f430bd..b18c4646ed 100644 --- a/Resources/Credits/GitHub.txt +++ b/Resources/Credits/GitHub.txt @@ -1 +1 @@ -0x6273, 12rabbits, 13spacemen, 2013HORSEMEATSCANDAL, 20kdc, 21Melkuu, 3nderall, 4310v343k, 4dplanner, 612git, 778b, Ablankmann, abregado, Absolute-Potato, achookh, Acruid, actioninja, actually-reb, ada-please, adamsong, Adeinitas, Admiral-Obvious-001, adrian, Adrian16199, Ady4ik, Aerocrux, Aeshus, Aexolott, Aexxie, africalimedrop, Afrokada, Agoichi, Ahion, aiden, AJCM-git, AjexRose, Alekshhh, alexkar598, AlexMorgan3817, alexumandxgabriel08x, Alithsko, ALMv1, Alpha-Two, AlphaQwerty, Altoids1, amylizzle, ancientpower, Andre19926, AndrewEyeke, AndreyCamper, Anzarot121, Appiah, ar4ill, ArchPigeon, ArchRBX, areitpog, Arendian, arimah, Arkanic, ArkiveDev, armoks, Arteben, ArthurMousatov, ArtisticRoomba, artur, AruMoon, ArZarLordOfMango, as334, AsikKEsel, AsnDen, asperger-sind, aspiringLich, astriloqua, august-sun, AutoOtter, avghdev, Awlod, AzzyIsNotHere, BackeTako, BananaFlambe, Baptr0b0t, BasedUser, beck-thompson, bellwetherlogic, benev0, benjamin-burges, BGare, bhenrich, bhespiritu, bibbly, BIGZi0348, bingojohnson, BismarckShuffle, Bixkitts, Blackern5000, Blazeror, BlitzTheSquishy, bloodrizer, Bloody2372, blueDev2, Boaz1111, BobdaBiscuit, BobTheSleder, boiled-water-tsar, BombasterDS, botanySupremist, brainfood1183, BramvanZijp, Brandon-Huu, BriBrooo, Bright0, brndd, bryce0110, BubblegumBlue, buletsponge, buntobaggins, bvelliquette, byondfuckery, c0rigin, c4llv07e, CaasGit, Caconym27, Calecute, Callmore, capnsockless, CaptainSqrBeard, Carbonhell, Carolyn3114, Carou02, carteblanche4me, CatTheSystem, Centronias, chairbender, Charlese2, ChaseFlorom, chavonadelal, Cheackraze, cheesePizza2, cheeseplated, Chief-Engineer, chillyconmor, christhirtle, chromiumboy, Chronophylos, Chubbicous, Chubbygummibear, Ciac32, civilCornball, Clement-O, clyf, Clyybber, CMDR-Piboy314, cohanna, Cohnway, Cojoke-dot, ColdAutumnRain, Colin-Tel, collinlunn, ComicIronic, CookieMasterT, coolboy911, coolmankid12345, Coolsurf6, corentt, CormosLemming, crazybrain23, creadth, CrigCrag, croilbird, Crotalus, CrudeWax, CrzyPotato, Cyberboss, d34d10cc, DadeKuma, Daemon, daerSeebaer, dahnte, dakamakat, dakimasu, DakotaGay, DamianX, DangerRevolution, daniel-cr, DanSAussieITS, Daracke, Darkenson, DawBla, Daxxi3, dch-GH, de0rix, Deahaka, dean, DEATHB4DEFEAT, DeathCamel58, Deatherd, deathride58, DebugOk, Decappi, Decortex, Deeeeja, deepdarkdepths, degradka, Delete69, deltanedas, DenisShvalov, DerbyX, derek, dersheppard, Deserty0, Detintinto, DevilishMilk, dexlerxd, dffdff2423, DieselMohawk, digitalic, Dimastra, DinoWattz, DisposableCrewmember42, DjfjdfofdjfjD, doc-michael, docnite, Doctor-Cpu, DoctorBeard, DogZeroX, dolgovmi, dontbetank, Doomsdrayk, Doru991, DoubleRiceEddiedd, DoutorWhite, dragonryan06, drakewill-CRL, Drayff, dreamlyjack, DrEnzyme, dribblydrone, DrMelon, drongood12, DrSingh, DrSmugleaf, drteaspoon420, DTanxxx, DubiousDoggo, Duddino, dukevanity, duskyjay, Dutch-VanDerLinde, dvir001, Dynexust, Easypoller, echo, eclips_e, eden077, EEASAS, Efruit, efzapa, Ekkosangen, ElectroSR, elsie, elthundercloud, Elysium206, Emisse, emmafornash, EmoGarbage404, Endecc, eoineoineoin, eris, erohrs2, ERORR404V1, Errant-4, ertanic, esguard, estacaoespacialpirata, eugene, exincore, exp111, f0x-n3rd, FacePluslll, Fahasor, FairlySadPanda, FATFSAAM2, Feluk6174, ficcialfaint, Fiftyllama, Fildrance, FillerVK, FinnishPaladin, FirinMaLazors, Fishfish458, FL-OZ, Flareguy, flashgnash, FluffiestFloof, FluidRock, foboscheshir, FoLoKe, fooberticus, ForestNoises, forgotmyotheraccount, forkeyboards, forthbridge, Fortune117, Fouin, foxhorn, freeman2651, freeze2222, Froffy025, Fromoriss, froozigiusz, FrostMando, FungiFellow, FunTust, Futuristic-OK, GalacticChimp, Gaxeer, gbasood, Geekyhobo, genderGeometries, GeneralGaws, Genkail, geraeumig, Ghagliiarghii, Git-Nivrak, githubuser508, gituhabu, GlassEclipse, GNF54, godisdeadLOL, goet, Goldminermac, Golinth, GoodWheatley, Gorox221, graevy, GraniteSidewalk, GreaseMonk, greenrock64, GreyMario, GTRsound, gusxyz, Gyrandola, h3half, hamurlik, Hanzdegloker, HappyRoach, Hardly3D, harikattar, he1acdvv, Hebi, Henry, HerCoyote23, hitomishirichan, hiucko, Hmeister-fake, Hmeister-real, Hobbitmax, hobnob, HoidC, Holinka4ever, holyssss, HoofedEar, Hoolny, hord-brayden, Hreno, hubismal, Hugal31, Huxellberger, Hyenh, i-justuser-i, iacore, IamVelcroboy, Ian321, icekot8, icesickleone, iczero, iglov, IgorAnt028, igorsaux, ike709, illersaver, Illiux, Ilushkins33, Ilya246, IlyaElDunaev, imrenq, imweax, indeano, Injazz, Insineer, IntegerTempest, Interrobang01, IProduceWidgets, ItsMeThom, Itzbenz, iztokbajcar, Jackal298, Jackrost, jacksonzck, Jackw2As, jacob, jamessimo, janekvap, Jark255, Jaskanbe, JasperJRoth, jerryimmouse, JerryImMouse, Jessetriesagain, jessicamaybe, Jezithyr, jicksaw, JiimBob, JimGamemaster, jimmy12or, JIPDawg, jjtParadox, JoeHammad1844, joelsgp, JohnGinnane, johnku1, joshepvodka, jproads, Jrpl, juliangiebel, JustArt1m, JustCone14, justdie12, justin, justintether, JustinTrotter, justtne, K-Dynamic, k3yw, Kadeo64, Kaga-404, KaiShibaa, kalane15, kalanosh, Kanashi-Panda, katzenminer, kbailey-git, Keelin, Keer-Sar, KEEYNy, keikiru, Kelrak, kerisargit, keronshb, KIBORG04, Killerqu00, Kimpes, KingFroozy, kira-er, Kirillcas, Kirus59, Kistras, Kit0vras, KittenColony, klaypexx, Kmc2000, Ko4ergaPunk, kognise, kokoc9n, komunre, KonstantinAngelov, koteq, KrasnoshchekovPavel, Krunklehorn, Kukutis96513, Kupie, kxvvv, kyupolaris, kzhanik, lajolico, Lamrr, LankLTE, laok233, lapatison, larryrussian, lawdog4817, Lazzi0706, leander-0, leonardo-dabepis, leonsfriedrich, LeoSantich, LetterN, lettern, Level10Cybermancer, LEVELcat, lever1209, Lgibb18, lgruthes, LightVillet, liltenhead, LinkUyx, LittleBuilderJane, lizelive, localcc, lokachop, Lomcastar, LordCarve, LordEclipse, LucasTheDrgn, luckyshotpictures, LudwigVonChesterfield, luizwritescode, Lukasz825700516, luminight, lunarcomets, luringens, lvvova1, Lyndomen, lyroth001, lzimann, lzk228, M3739, mac6na6na, MACMAN2003, Macoron, Magicalus, magmodius, MagnusCrowe, malchanceux, MaloTV, ManelNavola, Mangohydra, marboww, Markek1, Matz05, max, MaxNox7, maylokana, MehimoNemo, MeltedPixel, MemeProof, MendaxxDev, Menshin, Mephisto72, MerrytheManokit, Mervill, metalgearsloth, MetalSage, MFMessage, mhamsterr, michaelcu, micheel665, MilenVolf, milon, Minty642, Mirino97, mirrorcult, misandrie, MishaUnity, MissKay1994, MisterMecky, Mith-randalf, MjrLandWhale, mkanke-real, MLGTASTICa, moderatelyaware, modern-nm, mokiros, Moneyl, Moomoobeef, moony, Morb0, mr-bo-jangles, Mr0maks, MrFippik, mrrobdemo, MureixloI, musicmanvr, MWKane, Myakot, Myctai, N3X15, nails-n-tape, Nairodian, Naive817, NakataRin, namespace-Memory, Nannek, NazrinNya, neutrino-laser, NickPowers43, nikthechampiongr, Nimfar11, Nirnael, NIXC, NkoKirkto, nmajask, noctyrnal, nok-ko, NonchalantNoob, NoobyLegion, Nopey, not-gavnaed, notafet, notquitehadouken, NotSoDana, noudoit, noverd, NuclearWinter, nukashimika, nuke-haus, NULL882, nullarmo, nyeogmi, Nylux, Nyranu, och-och, OctoRocket, OldDanceJacket, OliverOtter, onoira, OnyxTheBrave, OrangeMoronage9622, osjarw, Ostaf, othymer, OttoMaticode, Owai-Seek, packmore, paigemaeforrest, pali6, Pangogie, panzer-iv1, partyaddict, patrikturi, PaulRitter, peccneck, Peptide90, peptron1, PeterFuto, PetMudstone, pewter-wiz, Pgriha, Phantom-Lily, Phill101, phunnyguy, pigeonpeas, PilgrimViis, Pill-U, Pireax, Pissachu, pissdemon, PixeltheAertistContrib, PixelTheKermit, PJB3005, Plasmaguy, plinyvic, Plykiya, poeMota, pofitlo, pointer-to-null, pok27, PolterTzi, PoorMansDreams, PopGamer45, portfiend, potato1234x, PotentiallyTom, ProfanedBane, ProPandaBear, PrPleGoo, ps3moira, Pspritechologist, Psychpsyo, psykzz, PuceTint, PuroSlavKing, PursuitInAshes, Putnam3145, quatre, QueerNB, QuietlyWhisper, qwerltaz, RadioMull, Radosvik, Radrark, Rainbeon, Rainfey, Raitononai, Ramlik, RamZ, randy10122, Rane, Ranger6012, Rapidgame7, ravage123321, rbertoche, Redfire1331, Redict, RedlineTriad, redmushie, RednoWCirabrab, RemberBM, RemieRichards, RemTim, rene-descartes2021, Renlou, retequizzle, RiceMar1244, rich-dunne, RieBi, riggleprime, RIKELOLDABOSS, rinary1, Rinkashikachi, riolume, RobbyTheFish, Rockdtben, Rohesie, rok-povsic, rolfero, RomanNovo, rosieposieeee, Roudenn, router, RumiTiger, S1rFl0, S1ss3l, Saakra, saga3152, saintmuntzer, Salex08, sam, samgithubaccount, SaphireLattice, SapphicOverload, Sarahon, sativaleanne, SaveliyM360, sBasalto, ScalyChimp, ScarKy0, scrato, Scribbles0, scruq445, scuffedjays, ScumbagDog, Segonist, sephtasm, Serkket, sewerpig, sh18rw, ShadeAware, ShadowCommander, Shadowtheprotogen546, shaeone, shampunj, shariathotpatrol, SignalWalker, siigiil, Simyon264, sirdragooon, Sirionaut, Sk1tch, SkaldetSkaeg, Skarletto, Skrauz, Skyedra, SlamBamActionman, slarticodefast, Slava0135, Slyfox333, snebl, snicket, sniperchance, Snowni, snowsignal, SolidusSnek, SonicHDC, SoulFN, SoulSloth, Soundwavesghost, SpaceManiac, SpaceyLady, spanky-spanky, spartak, SpartanKadence, SpeltIncorrectyl, Spessmann, SphiraI, SplinterGP, spoogemonster, sporekto, ssdaniel24, stalengd, stanberytrask, Stanislav4ix, StanTheCarpenter, Stealthbomber16, stellar-novas, stopbreaking, stopka-html, StrawberryMoses, Stray-Pyramid, strO0pwafel, Strol20, StStevens, Subversionary, sunbear-dev, superjj18, Supernorn, SweptWasTaken, Sybil, SYNCHRONIC, Szunti, Tainakov, takemysoult, TaralGit, Taran, taurie, Tayrtahn, tday93, TekuNut, telyonok, TemporalOroboros, tentekal, terezi4real, Terraspark4941, texcruize, TGODiamond, TGRCdev, tgrkzus, ThatOneGoblin25, thatrandomcanadianguy, TheArturZh, theashtronaut, thecopbennet, TheCze, TheDarkElites, thedraccx, TheEmber, TheIntoxicatedCat, thekilk, themias, Theomund, theOperand, TherapyGoth, TheShuEd, thetolbean, thevinter, TheWaffleJesus, Thinbug0, ThunderBear2006, timothyteakettle, TimrodDX, timurjavid, tin-man-tim, Titian3, tk-a369, tkdrg, tmtmtl30, TokenStyle, Tollhouse, tom-leys, tomasalves8, Tomeno, Tonydatguy, topy, Tornado-Technology, tosatur, TotallyLemon, tropicalhibi, truepaintgit, Truoizys, Tryded, TsjipTsjip, Tunguso4ka, TurboTrackerss14, TyAshley, Tyler-IN, Tyzemol, UbaserB, ubis1, UBlueberry, UKNOWH, UltimateJester, Unbelievable-Salmon, underscorex5, UnicornOnLSD, Unisol, Unkn0wnGh0st333, unusualcrow, Uriende, UristMcDorf, user424242420, Vaaankas, valentfingerov, Varen, VasilisThePikachu, veliebm, VelonacepsCalyxEggs, veprolet, veritable-calamity, Veritius, Vermidia, vero5123, Verslebas, VigersRay, violet754, Visne, VMSolidus, voidnull000, volotomite, volundr-, Voomra, Vordenburg, vorkathbruh, vulppine, wafehling, Warentan, WarMechanic, Watermelon914, waylon531, weaversam8, wertanchik, whateverusername0, Willhelm53, WilliamECrew, willicassi, Winkarst-cpu, wirdal, wixoaGit, WlarusFromDaSpace, wrexbe, wtcwr68, xkreksx, xprospero, xRiriq, YanehCheck, yathxyz, Ygg01, YotaXP, youarereadingthis, Yousifb26, youtissoum, YuriyKiss, zach-hill, Zadeon, zamp, Zandario, Zap527, Zealith-Gamer, ZelteHonor, zero, ZeroDiamond, zerorulez, ZeWaka, zionnBE, ZNixian, ZoldorfTheWizard, Zonespace27, Zumorica, Zymem, zzylex +0x6273, 12rabbits, 13spacemen, 2013HORSEMEATSCANDAL, 20kdc, 21Melkuu, 3nderall, 4310v343k, 4dplanner, 612git, 778b, Ablankmann, abregado, Absolute-Potato, achookh, Acruid, actioninja, actually-reb, ada-please, adamsong, Adeinitas, Admiral-Obvious-001, adrian, Adrian16199, Ady4ik, Aerocrux, Aeshus, Aexolott, Aexxie, africalimedrop, Afrokada, Agoichi, Ahion, aiden, AJCM-git, AjexRose, Alekshhh, alexkar598, AlexMorgan3817, alexumandxgabriel08x, Alithsko, ALMv1, Alpha-Two, AlphaQwerty, Altoids1, amylizzle, ancientpower, Andre19926, AndrewEyeke, AndreyCamper, Anzarot121, Appiah, ar4ill, ArchPigeon, ArchRBX, areitpog, Arendian, arimah, Arkanic, ArkiveDev, armoks, Arteben, ArthurMousatov, ArtisticRoomba, artur, AruMoon, ArZarLordOfMango, as334, AsikKEsel, AsnDen, asperger-sind, aspiringLich, astriloqua, august-sun, AutoOtter, avghdev, Awlod, AzzyIsNotHere, BackeTako, BananaFlambe, Baptr0b0t, BasedUser, beck-thompson, bellwetherlogic, benev0, benjamin-burges, BGare, bhenrich, bhespiritu, bibbly, BIGZi0348, bingojohnson, BismarckShuffle, Bixkitts, Blackern5000, Blazeror, BlitzTheSquishy, bloodrizer, Bloody2372, blueDev2, Boaz1111, BobdaBiscuit, BobTheSleder, boiled-water-tsar, BombasterDS, botanySupremist, brainfood1183, BramvanZijp, Brandon-Huu, BriBrooo, Bright0, brndd, bryce0110, BubblegumBlue, buletsponge, buntobaggins, bvelliquette, byondfuckery, c0rigin, c4llv07e, CaasGit, Caconym27, Calecute, Callmore, capnsockless, CaptainSqrBeard, Carbonhell, Carolyn3114, Carou02, carteblanche4me, CatTheSystem, Centronias, chairbender, Charlese2, ChaseFlorom, chavonadelal, Cheackraze, cheesePizza2, cheeseplated, Chief-Engineer, chillyconmor, christhirtle, chromiumboy, Chronophylos, Chubbicous, Chubbygummibear, Ciac32, civilCornball, Clement-O, clyf, Clyybber, CMDR-Piboy314, cohanna, Cohnway, Cojoke-dot, ColdAutumnRain, Colin-Tel, collinlunn, ComicIronic, CookieMasterT, coolboy911, coolmankid12345, Coolsurf6, corentt, CormosLemming, crazybrain23, creadth, CrigCrag, croilbird, Crotalus, CrudeWax, CrzyPotato, Cyberboss, d34d10cc, DadeKuma, Daemon, daerSeebaer, dahnte, dakamakat, dakimasu, DakotaGay, DamianX, DangerRevolution, daniel-cr, DanSAussieITS, Daracke, Darkenson, DawBla, Daxxi3, dch-GH, de0rix, Deahaka, dean, DEATHB4DEFEAT, DeathCamel58, Deatherd, deathride58, DebugOk, Decappi, Decortex, Deeeeja, deepdarkdepths, degradka, Delete69, deltanedas, DenisShvalov, DerbyX, derek, dersheppard, Deserty0, Detintinto, DevilishMilk, dexlerxd, dffdff2423, DieselMohawk, digitalic, Dimastra, DinoWattz, DisposableCrewmember42, DjfjdfofdjfjD, doc-michael, docnite, Doctor-Cpu, DoctorBeard, DogZeroX, dolgovmi, dontbetank, Doomsdrayk, Doru991, DoubleRiceEddiedd, DoutorWhite, dragonryan06, drakewill-CRL, Drayff, dreamlyjack, DrEnzyme, dribblydrone, DrMelon, drongood12, DrSingh, DrSmugleaf, drteaspoon420, DTanxxx, DubiousDoggo, Duddino, dukevanity, duskyjay, Dutch-VanDerLinde, dvir001, Dynexust, Easypoller, echo, eclips_e, eden077, EEASAS, Efruit, efzapa, Ekkosangen, ElectroSR, elsie, elthundercloud, Elysium206, Emisse, emmafornash, EmoGarbage404, Endecc, eoineoineoin, eris, erohrs2, ERORR404V1, Errant-4, ertanic, esguard, estacaoespacialpirata, eugene, exincore, exp111, f0x-n3rd, FacePluslll, Fahasor, FairlySadPanda, FATFSAAM2, Feluk6174, ficcialfaint, Fiftyllama, Fildrance, FillerVK, FinnishPaladin, FirinMaLazors, Fishfish458, FL-OZ, Flareguy, flashgnash, FluffiestFloof, FluidRock, foboscheshir, FoLoKe, fooberticus, ForestNoises, forgotmyotheraccount, forkeyboards, forthbridge, Fortune117, Fouin, foxhorn, freeman2651, freeze2222, Froffy025, Fromoriss, froozigiusz, FrostMando, FungiFellow, FunTust, Futuristic-OK, GalacticChimp, Gaxeer, gbasood, Geekyhobo, genderGeometries, GeneralGaws, Genkail, geraeumig, Ghagliiarghii, Git-Nivrak, githubuser508, gituhabu, GlassEclipse, GNF54, godisdeadLOL, goet, Goldminermac, Golinth, GoodWheatley, Gorox221, graevy, GraniteSidewalk, GreaseMonk, greenrock64, GreyMario, GTRsound, gusxyz, Gyrandola, h3half, hamurlik, Hanzdegloker, HappyRoach, Hardly3D, harikattar, he1acdvv, Hebi, Henry, HerCoyote23, hitomishirichan, hiucko, Hmeister-fake, Hmeister-real, Hobbitmax, hobnob, HoidC, Holinka4ever, holyssss, HoofedEar, Hoolny, hord-brayden, Hreno, hubismal, Hugal31, Huxellberger, Hyenh, i-justuser-i, iacore, IamVelcroboy, Ian321, icekot8, icesickleone, iczero, iglov, IgorAnt028, igorsaux, ike709, illersaver, Illiux, Ilushkins33, Ilya246, IlyaElDunaev, imrenq, imweax, indeano, Injazz, Insineer, IntegerTempest, Interrobang01, IProduceWidgets, ItsMeThom, Itzbenz, iztokbajcar, Jackal298, Jackrost, jacksonzck, Jackw2As, jacob, jamessimo, janekvap, Jark255, Jaskanbe, JasperJRoth, jerryimmouse, JerryImMouse, Jessetriesagain, jessicamaybe, Jezithyr, jicksaw, JiimBob, JimGamemaster, jimmy12or, JIPDawg, jjtParadox, JoeHammad1844, joelsgp, JohnGinnane, johnku1, Jophire, joshepvodka, jproads, Jrpl, juliangiebel, JustArt1m, JustCone14, justdie12, justin, justintether, JustinTrotter, justtne, K-Dynamic, k3yw, Kadeo64, Kaga-404, KaiShibaa, kalane15, kalanosh, Kanashi-Panda, katzenminer, kbailey-git, Keelin, Keer-Sar, KEEYNy, keikiru, Kelrak, kerisargit, keronshb, KIBORG04, Killerqu00, Kimpes, KingFroozy, kira-er, Kirillcas, Kirus59, Kistras, Kit0vras, KittenColony, klaypexx, Kmc2000, Ko4ergaPunk, kognise, kokoc9n, komunre, KonstantinAngelov, koteq, KrasnoshchekovPavel, Krunklehorn, Kukutis96513, Kupie, kxvvv, kyupolaris, kzhanik, lajolico, Lamrr, LankLTE, laok233, lapatison, larryrussian, lawdog4817, Lazzi0706, leander-0, leonardo-dabepis, leonsfriedrich, LeoSantich, LetterN, lettern, Level10Cybermancer, LEVELcat, lever1209, Lgibb18, lgruthes, LightVillet, liltenhead, LinkUyx, LittleBuilderJane, LittleNorthStar, lizelive, localcc, lokachop, Lomcastar, LordCarve, LordEclipse, LucasTheDrgn, luckyshotpictures, LudwigVonChesterfield, luizwritescode, Lukasz825700516, luminight, lunarcomets, luringens, lvvova1, Lyndomen, lyroth001, lzimann, lzk228, M3739, mac6na6na, MACMAN2003, Macoron, Magicalus, magmodius, MagnusCrowe, malchanceux, MaloTV, ManelNavola, Mangohydra, marboww, Markek1, Matz05, max, MaxNox7, maylokana, MehimoNemo, MeltedPixel, MemeProof, MendaxxDev, Menshin, Mephisto72, MerrytheManokit, Mervill, metalgearsloth, MetalSage, MFMessage, mhamsterr, michaelcu, micheel665, MilenVolf, MilonPL, Minty642, Mirino97, mirrorcult, misandrie, MishaUnity, MissKay1994, MisterMecky, Mith-randalf, MjrLandWhale, mkanke-real, MLGTASTICa, moderatelyaware, modern-nm, mokiros, Moneyl, Moomoobeef, moony, Morb0, mr-bo-jangles, Mr0maks, MrFippik, mrrobdemo, MureixloI, musicmanvr, MWKane, Myakot, Myctai, N3X15, nails-n-tape, Nairodian, Naive817, NakataRin, namespace-Memory, Nannek, NazrinNya, neutrino-laser, NickPowers43, nikthechampiongr, Nimfar11, Nirnael, NIXC, NkoKirkto, nmajask, noctyrnal, nok-ko, NonchalantNoob, NoobyLegion, Nopey, not-gavnaed, notafet, notquitehadouken, NotSoDana, noudoit, noverd, NuclearWinter, nukashimika, nuke-haus, NULL882, nullarmo, nyeogmi, Nylux, Nyranu, och-och, OctoRocket, OldDanceJacket, OliverOtter, onoira, OnyxTheBrave, OrangeMoronage9622, osjarw, Ostaf, othymer, OttoMaticode, Owai-Seek, packmore, paigemaeforrest, pali6, Pangogie, panzer-iv1, partyaddict, patrikturi, PaulRitter, peccneck, Peptide90, peptron1, PeterFuto, PetMudstone, pewter-wiz, Pgriha, Phantom-Lily, Phill101, phunnyguy, pigeonpeas, PilgrimViis, Pill-U, Pireax, Pissachu, pissdemon, PixeltheAertistContrib, PixelTheKermit, PJB3005, Plasmaguy, plinyvic, Plykiya, poeMota, pofitlo, pointer-to-null, pok27, PolterTzi, PoorMansDreams, PopGamer45, portfiend, potato1234x, PotentiallyTom, ProfanedBane, ProPandaBear, PrPleGoo, ps3moira, Pspritechologist, Psychpsyo, psykzz, PuceTint, PuroSlavKing, PursuitInAshes, Putnam3145, quatre, QueerNB, QuietlyWhisper, qwerltaz, RadioMull, Radosvik, Radrark, Rainbeon, Rainfey, Raitononai, Ramlik, RamZ, randy10122, Rane, Ranger6012, Rapidgame7, ravage123321, rbertoche, Redfire1331, Redict, RedlineTriad, redmushie, RednoWCirabrab, RemberBM, RemieRichards, RemTim, rene-descartes2021, Renlou, retequizzle, RiceMar1244, rich-dunne, RieBi, riggleprime, RIKELOLDABOSS, rinary1, Rinkashikachi, riolume, RobbyTheFish, Rockdtben, Rohesie, rok-povsic, rolfero, RomanNovo, rosieposieeee, Roudenn, router, RumiTiger, S1rFl0, S1ss3l, Saakra, saga3152, saintmuntzer, Salex08, sam, samgithubaccount, SaphireLattice, SapphicOverload, Sarahon, sativaleanne, SaveliyM360, sBasalto, ScalyChimp, ScarKy0, scrato, Scribbles0, scruq445, scuffedjays, ScumbagDog, Segonist, sephtasm, Serkket, sewerpig, sh18rw, ShadeAware, ShadowCommander, Shadowtheprotogen546, shaeone, shampunj, shariathotpatrol, SignalWalker, siigiil, Simyon264, sirdragooon, Sirionaut, Sk1tch, SkaldetSkaeg, Skarletto, Skrauz, Skyedra, SlamBamActionman, slarticodefast, Slava0135, Slyfox333, snebl, snicket, sniperchance, Snowni, snowsignal, SolidusSnek, SonicHDC, SoulFN, SoulSloth, Soundwavesghost, Soydium, SpaceManiac, SpaceyLady, spanky-spanky, spartak, SpartanKadence, SpeltIncorrectyl, Spessmann, SphiraI, SplinterGP, spoogemonster, sporekto, ssdaniel24, stalengd, stanberytrask, Stanislav4ix, StanTheCarpenter, Stealthbomber16, stellar-novas, stopbreaking, stopka-html, StrawberryMoses, Stray-Pyramid, strO0pwafel, Strol20, StStevens, Subversionary, sunbear-dev, superjj18, Supernorn, SweptWasTaken, Sybil, SYNCHRONIC, Szunti, Tainakov, takemysoult, TaralGit, Taran, taurie, Tayrtahn, tday93, TekuNut, telyonok, TemporalOroboros, tentekal, terezi4real, Terraspark4941, texcruize, TGODiamond, TGRCdev, tgrkzus, ThatOneGoblin25, thatrandomcanadianguy, TheArturZh, theashtronaut, thecopbennet, TheCze, TheDarkElites, thedraccx, TheEmber, TheIntoxicatedCat, thekilk, themias, Theomund, theOperand, TherapyGoth, TheShuEd, thetolbean, thevinter, TheWaffleJesus, Thinbug0, ThunderBear2006, timothyteakettle, TimrodDX, timurjavid, tin-man-tim, Titian3, tk-a369, tkdrg, tmtmtl30, TokenStyle, Tollhouse, tom-leys, tomasalves8, Tomeno, Tonydatguy, topy, Tornado-Technology, tosatur, TotallyLemon, tropicalhibi, truepaintgit, Truoizys, Tryded, TsjipTsjip, Tunguso4ka, TurboTrackerss14, TyAshley, Tyler-IN, Tyzemol, UbaserB, ubis1, UBlueberry, UKNOWH, UltimateJester, Unbelievable-Salmon, underscorex5, UnicornOnLSD, Unisol, Unkn0wnGh0st333, unusualcrow, Uriende, UristMcDorf, user424242420, Vaaankas, valentfingerov, Varen, VasilisThePikachu, veliebm, VelonacepsCalyxEggs, veprolet, veritable-calamity, Veritius, Vermidia, vero5123, Verslebas, VigersRay, violet754, Visne, VMSolidus, voidnull000, volotomite, volundr-, Voomra, Vordenburg, vorkathbruh, vulppine, wafehling, Warentan, WarMechanic, Watermelon914, waylon531, weaversam8, wertanchik, whateverusername0, Willhelm53, WilliamECrew, willicassi, Winkarst-cpu, wirdal, wixoaGit, WlarusFromDaSpace, wrexbe, wtcwr68, xkreksx, xprospero, xRiriq, YanehCheck, yathxyz, Ygg01, YotaXP, youarereadingthis, Yousifb26, youtissoum, YuriyKiss, zach-hill, Zadeon, zamp, Zandario, Zap527, Zealith-Gamer, ZelteHonor, zero, ZeroDiamond, zerorulez, ZeWaka, zionnBE, ZNixian, ZoldorfTheWizard, Zonespace27, Zumorica, Zylofan, Zymem, zzylex From 20aa14e4f7c9907b8c96acde38dae2a2dd6264e5 Mon Sep 17 00:00:00 2001 From: Scribbles0 <91828755+Scribbles0@users.noreply.github.com> Date: Tue, 1 Oct 2024 18:45:54 -0700 Subject: [PATCH 14/94] Cog update (#32585) * ai core upgrades * fix distro color --- Resources/Maps/cog.yml | 425 ++++++++++++++++++++++++++++++----------- 1 file changed, 318 insertions(+), 107 deletions(-) diff --git a/Resources/Maps/cog.yml b/Resources/Maps/cog.yml index 562b27f87f..7bc328d798 100644 --- a/Resources/Maps/cog.yml +++ b/Resources/Maps/cog.yml @@ -805,8 +805,6 @@ entities: 5555: -28,58 5779: 31,-8 5786: 31,-2 - 5798: 0,-4 - 5799: -2,-4 6198: 3,-46 6200: 3,-40 6258: 58,-27 @@ -13373,6 +13371,29 @@ entities: - 4266 - 32067 - 32069 + - uid: 32231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-1.5 + parent: 12 + - type: DeviceList + devices: + - 32227 + - 32226 + - 32234 + - 32225 + - 32224 + - 32235 + - uid: 32232 + components: + - type: Transform + pos: -3.5,-9.5 + parent: 12 + - type: DeviceList + devices: + - 32229 + - 10069 - proto: AirAlarmVox entities: - uid: 7822 @@ -13412,16 +13433,6 @@ entities: - type: Transform pos: 38.5,-32.5 parent: 12 - - uid: 7195 - components: - - type: Transform - anchored: True - pos: 0.5,-3.5 - parent: 12 - - type: Physics - bodyType: Static - - type: Lock - locked: True - uid: 8863 components: - type: Transform @@ -18395,6 +18406,12 @@ entities: - type: Transform pos: -9.5,-16.5 parent: 12 + - uid: 145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 12 - uid: 247 components: - type: Transform @@ -24190,17 +24207,12 @@ entities: - uid: 2217 components: - type: Transform - pos: -0.5,-10.5 + pos: -0.5,0.5 parent: 12 - uid: 2218 components: - type: Transform - pos: -0.5,-9.5 - parent: 12 - - uid: 2219 - components: - - type: Transform - pos: -0.5,-8.5 + pos: -0.5,-0.5 parent: 12 - uid: 2220 components: @@ -24215,7 +24227,7 @@ entities: - uid: 2222 components: - type: Transform - pos: -0.5,-4.5 + pos: -1.5,-1.5 parent: 12 - uid: 2223 components: @@ -24265,18 +24277,13 @@ entities: - uid: 2232 components: - type: Transform - pos: -0.5,-3.5 + pos: 0.5,-1.5 parent: 12 - uid: 2233 components: - type: Transform pos: -0.5,-2.5 parent: 12 - - uid: 2234 - components: - - type: Transform - pos: -0.5,-1.5 - parent: 12 - uid: 2262 components: - type: Transform @@ -36062,6 +36069,11 @@ entities: - type: Transform pos: -20.5,-62.5 parent: 12 + - uid: 20074 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 12 - uid: 20257 components: - type: Transform @@ -43702,6 +43714,11 @@ entities: - type: Transform pos: -63.5,-53.5 parent: 12 + - uid: 32230 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 12 - proto: CableApcStack entities: - uid: 16561 @@ -56175,6 +56192,11 @@ entities: - type: Transform pos: -2.5,-9.5 parent: 12 + - uid: 2234 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 12 - uid: 2246 components: - type: Transform @@ -62365,11 +62387,6 @@ entities: - type: Transform pos: -47.5,17.5 parent: 12 - - uid: 20074 - components: - - type: Transform - pos: 2.5,-5.5 - parent: 12 - uid: 20343 components: - type: Transform @@ -103019,6 +103036,13 @@ entities: rot: 3.141592653589793 rad pos: 0.5,67.5 parent: 12 + - uid: 32228 + components: + - type: Transform + pos: -4.5,-4.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasPipeBend entities: - uid: 928 @@ -103223,12 +103247,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 2124 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-1.5 - parent: 12 - uid: 2168 components: - type: Transform @@ -103907,23 +103925,22 @@ entities: rot: -1.5707963267948966 rad pos: 37.5,-32.5 parent: 12 - - uid: 7188 - components: - - type: Transform - pos: -1.5,-1.5 - parent: 12 - uid: 7189 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,-1.5 + pos: 0.5,-3.5 parent: 12 - - uid: 7190 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7194 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,-1.5 + pos: -0.5,-3.5 parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 7205 components: - type: Transform @@ -106210,6 +106227,14 @@ entities: rot: 1.5707963267948966 rad pos: 0.5,68.5 parent: 12 + - uid: 32223 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-5.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasPipeFourway entities: - uid: 2577 @@ -106259,6 +106284,20 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 7188 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7190 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10894 components: - type: Transform @@ -107744,6 +107783,13 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 2124 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 2128 components: - type: Transform @@ -112564,6 +112610,41 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 7185 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7186 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7192 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7193 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7196 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 7204 components: - type: Transform @@ -114582,6 +114663,13 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 10033 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 10034 components: - type: Transform @@ -114766,13 +114854,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10066 - components: - - type: Transform - pos: -0.5,-7.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 10067 components: - type: Transform @@ -129244,6 +129325,65 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 32216 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 32217 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 32218 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 32219 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 32220 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 32221 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-5.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 32222 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-5.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 32233 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-5.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasPipeTJunction entities: - uid: 103 @@ -130207,6 +130347,22 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 7191 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7195 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 7206 components: - type: Transform @@ -130611,13 +130767,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10033 - components: - - type: Transform - pos: -0.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 10064 components: - type: Transform @@ -130634,6 +130783,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 10066 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-7.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10070 components: - type: Transform @@ -132652,18 +132809,6 @@ entities: rot: -1.5707963267948966 rad pos: 36.5,-32.5 parent: 12 - - uid: 7191 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-3.5 - parent: 12 - - uid: 7192 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-3.5 - parent: 12 - uid: 9038 components: - type: Transform @@ -132994,19 +133139,6 @@ entities: targetPressure: 4500 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7193 - components: - - type: Transform - pos: -1.5,-2.5 - parent: 12 - - type: GasPressurePump - targetPressure: 4500 - - uid: 7194 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-2.5 - parent: 12 - uid: 7212 components: - type: Transform @@ -133638,11 +133770,6 @@ entities: - 32066 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7186 - components: - - type: Transform - pos: 1.5,-0.5 - parent: 12 - uid: 7327 components: - type: Transform @@ -133819,6 +133946,9 @@ entities: rot: 3.141592653589793 rad pos: -0.5,-10.5 parent: 12 + - type: DeviceNetwork + deviceLists: + - 32232 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10073 @@ -135226,6 +135356,38 @@ entities: - 32066 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 32224 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 32231 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 32225 + components: + - type: Transform + pos: 0.5,0.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 32231 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 32235 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-7.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 32231 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasVentPumpVox entities: - uid: 6688 @@ -135634,11 +135796,6 @@ entities: - 28365 - type: AtmosPipeColor color: '#990000FF' - - uid: 7185 - components: - - type: Transform - pos: -2.5,-0.5 - parent: 12 - uid: 7519 components: - type: Transform @@ -136864,6 +137021,49 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 32226 + components: + - type: Transform + pos: -1.5,0.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 32231 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 32227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 32231 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 32229 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-10.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 32232 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 32234 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-5.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 32231 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasVentScrubberVox entities: - uid: 7844 @@ -147563,7 +147763,7 @@ entities: - type: Transform pos: -0.5,-8.5 parent: 12 - - uid: 145 + - uid: 2219 components: - type: Transform pos: -0.5,-4.5 @@ -159531,7 +159731,7 @@ entities: - uid: 24354 components: - type: Transform - pos: 39.5,45.5 + pos: 39.5,46.5 parent: 12 - uid: 24355 components: @@ -173430,16 +173630,6 @@ entities: - type: Transform pos: 36.5,-32.5 parent: 12 - - uid: 7196 - components: - - type: Transform - anchored: True - pos: -1.5,-3.5 - parent: 12 - - type: Physics - bodyType: Static - - type: Lock - locked: True - uid: 20776 components: - type: Transform @@ -174058,7 +174248,7 @@ entities: setupAvailableNetworks: - SurveillanceCameraCommand nameSet: True - id: AI core entrance + id: AI core entrance hall - uid: 32075 components: - type: Transform @@ -174070,6 +174260,20 @@ entities: - SurveillanceCameraCommand nameSet: True id: Gravity Gen + - uid: 32214 + components: + - type: Transform + pos: -10.5,-6.5 + parent: 12 + - type: SurveillanceCamera + id: AI core entrance + - uid: 32215 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 12 + - type: SurveillanceCamera + id: AI core power room - proto: SurveillanceCameraEngineering entities: - uid: 4167 @@ -181447,6 +181651,13 @@ entities: - type: Transform pos: -0.5,-44.5 parent: 12 +- proto: VendingMachineHappyHonk + entities: + - uid: 32236 + components: + - type: Transform + pos: 39.5,45.5 + parent: 12 - proto: VendingMachineHydrobe entities: - uid: 10333 From 42a1e02261ac872a926a40aa78697eff75d06671 Mon Sep 17 00:00:00 2001 From: Zylofan <80375291+Zylofan@users.noreply.github.com> Date: Tue, 1 Oct 2024 22:56:49 -0400 Subject: [PATCH 15/94] Seismic charge now craftable (#32459) * when tryInsertBlueprint is called it now also calls UpdateMaterialWhitelist on the ent so that it can accept new materials if needed. * Changed the previous commit to now just have sharedMaterialStorageSystem subscribe to TechnologyDatabaseModifiedEvent which will call UpdateMaterialWhitelist. * Empty-Commit --- Content.Shared/Materials/SharedMaterialStorageSystem.cs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Content.Shared/Materials/SharedMaterialStorageSystem.cs b/Content.Shared/Materials/SharedMaterialStorageSystem.cs index dc4858fd74..01539936b9 100644 --- a/Content.Shared/Materials/SharedMaterialStorageSystem.cs +++ b/Content.Shared/Materials/SharedMaterialStorageSystem.cs @@ -8,6 +8,7 @@ using Robust.Shared.Prototypes; using Robust.Shared.Timing; using Robust.Shared.Utility; +using Content.Shared.Research.Components; namespace Content.Shared.Materials; @@ -34,6 +35,7 @@ public override void Initialize() SubscribeLocalEvent(OnMapInit); SubscribeLocalEvent(OnInteractUsing); + SubscribeLocalEvent(OnDatabaseModified); } public override void Update(float frameTime) @@ -312,6 +314,11 @@ private void OnInteractUsing(EntityUid uid, MaterialStorageComponent component, args.Handled = TryInsertMaterialEntity(args.User, args.Used, uid, component); } + private void OnDatabaseModified(Entity ent, ref TechnologyDatabaseModifiedEvent args) + { + UpdateMaterialWhitelist(ent); + } + public int GetSheetVolume(MaterialPrototype material) { if (material.StackEntity == null) From c0d8d58629bb19d5fdbe66ade2c125946d1d67a4 Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 2 Oct 2024 02:57:55 +0000 Subject: [PATCH 16/94] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 640bb92ba1..be9445a27b 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Cojoke-dot - changes: - - message: Throwing a jetpack mid-flight will no longer freeze your character - type: Fix - id: 6968 - time: '2024-07-22T22:24:26.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30223 - author: Flareguy changes: - message: Added vox sprites for a few headwear items, including radiation suits @@ -3938,3 +3931,10 @@ id: 7467 time: '2024-10-01T21:44:47.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32578 +- author: Zylo + changes: + - message: Seismic charges being uncraftable + type: Fix + id: 7468 + time: '2024-10-02T02:56:49.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32459 From 360585276dae40c1ca27d34c96ea4c4680ce7e98 Mon Sep 17 00:00:00 2001 From: slarticodefast <161409025+slarticodefast@users.noreply.github.com> Date: Wed, 2 Oct 2024 05:22:09 +0200 Subject: [PATCH 17/94] fix voice mask chameleon menu (#32546) --- Resources/Prototypes/Entities/Clothing/Masks/specific.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Resources/Prototypes/Entities/Clothing/Masks/specific.yml b/Resources/Prototypes/Entities/Clothing/Masks/specific.yml index 90c648c9d8..d8da80611c 100644 --- a/Resources/Prototypes/Entities/Clothing/Masks/specific.yml +++ b/Resources/Prototypes/Entities/Clothing/Masks/specific.yml @@ -35,6 +35,8 @@ - Snout - type: UserInterface interfaces: + enum.ChameleonUiKey.Key: + type: ChameleonBoundUserInterface enum.VoiceMaskUIKey.Key: type: VoiceMaskBoundUserInterface From b050e8332e36b0d2727a9cbc754de9812eac7c6b Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 2 Oct 2024 03:23:15 +0000 Subject: [PATCH 18/94] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index be9445a27b..b55c96186a 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: Flareguy - changes: - - message: Added vox sprites for a few headwear items, including radiation suits - and the paramedic helmet. - type: Add - id: 6969 - time: '2024-07-23T02:18:33.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30150 - author: Cojoke-dot changes: - message: You can no longer use telescreens and televisions while blind or asleep. @@ -3938,3 +3930,10 @@ id: 7468 time: '2024-10-02T02:56:49.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32459 +- author: slarticodefast + changes: + - message: Fixed the chameleon settings menu not showing up for the voice mask. + type: Fix + id: 7469 + time: '2024-10-02T03:22:09.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32546 From 4ca2a2bb8fe99ee056046e8d751ed3fbeb25a22e Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Wed, 2 Oct 2024 15:00:48 +1000 Subject: [PATCH 19/94] Fix sensors blocking doors (#32591) --- Content.Shared/Doors/Systems/SharedDoorSystem.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Content.Shared/Doors/Systems/SharedDoorSystem.cs b/Content.Shared/Doors/Systems/SharedDoorSystem.cs index 4d88663ca0..80e7ff9669 100644 --- a/Content.Shared/Doors/Systems/SharedDoorSystem.cs +++ b/Content.Shared/Doors/Systems/SharedDoorSystem.cs @@ -552,8 +552,7 @@ public IEnumerable GetColliding(EntityUid uid, PhysicsComponent? phys var tileRef = _mapSystem.GetTileRef(xform.GridUid.Value, mapGridComp, xform.Coordinates); _doorIntersecting.Clear(); - - _entityLookup.GetLocalEntitiesIntersecting(xform.GridUid.Value, tileRef.GridIndices, _doorIntersecting, gridComp: mapGridComp); + _entityLookup.GetLocalEntitiesIntersecting(xform.GridUid.Value, tileRef.GridIndices, _doorIntersecting, gridComp: mapGridComp, flags: (LookupFlags.All & ~LookupFlags.Sensors)); // TODO SLOTH fix electro's code. // ReSharper disable once InconsistentNaming From cfc723e3f8a3c22fd72172faf4b8ae8eacb826a7 Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 2 Oct 2024 05:01:54 +0000 Subject: [PATCH 20/94] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index b55c96186a..2917fee060 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Cojoke-dot - changes: - - message: You can no longer use telescreens and televisions while blind or asleep. - type: Fix - id: 6970 - time: '2024-07-23T02:33:41.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30260 - author: Cojoke-dot changes: - message: Fix one of the QSI popups @@ -3937,3 +3930,10 @@ id: 7469 time: '2024-10-02T03:22:09.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32546 +- author: metalgearsloth + changes: + - message: Fix physics sensors (e.g. proximity triggers) being able to block doors. + type: Fix + id: 7470 + time: '2024-10-02T05:00:48.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32591 From 2a07e4666a87be5bbe5002621c6245de1d246f94 Mon Sep 17 00:00:00 2001 From: Plykiya <58439124+Plykiya@users.noreply.github.com> Date: Tue, 1 Oct 2024 22:27:01 -0700 Subject: [PATCH 21/94] Fix quick-swap stacks of items (#32560) * remove picking up stack on quick swap * better --- Content.Shared/Interaction/SmartEquipSystem.cs | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/Content.Shared/Interaction/SmartEquipSystem.cs b/Content.Shared/Interaction/SmartEquipSystem.cs index 4feb0445f8..746bc994ee 100644 --- a/Content.Shared/Interaction/SmartEquipSystem.cs +++ b/Content.Shared/Interaction/SmartEquipSystem.cs @@ -5,6 +5,7 @@ using Content.Shared.Input; using Content.Shared.Inventory; using Content.Shared.Popups; +using Content.Shared.Stacks; using Content.Shared.Storage; using Content.Shared.Storage.EntitySystems; using Content.Shared.Whitelist; @@ -151,8 +152,13 @@ private void HandleSmartEquip(ICommonSession? session, string equipmentSlot) _hands.TryDrop(uid, hands.ActiveHand, handsComp: hands); _storage.Insert(slotItem, handItem.Value, out var stacked, out _); - if (stacked != null) - _hands.TryPickup(uid, stacked.Value, handsComp: hands); + // if the hand item stacked with the things in inventory, but there's no more space left for the rest + // of the stack, place the stack back in hand rather than dropping it on the floor + if (stacked != null && !_storage.CanInsert(slotItem, handItem.Value, out _)) + { + if (TryComp(handItem.Value, out var handStack) && handStack.Count > 0) + _hands.TryPickup(uid, handItem.Value, handsComp: hands); + } return; } From 95f20f13dca544dfd1fe8d68755a17f73f6245a4 Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 2 Oct 2024 05:28:07 +0000 Subject: [PATCH 22/94] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 2917fee060..a89e8ed4ce 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Cojoke-dot - changes: - - message: Fix one of the QSI popups - type: Fix - id: 6971 - time: '2024-07-23T03:23:04.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30265 - author: Errant changes: - message: Players are now notified when trying to insert an incompatible magazine @@ -3937,3 +3930,11 @@ id: 7470 time: '2024-10-02T05:00:48.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32591 +- author: Plykiya + changes: + - message: You can now quick-swap uneven stacks of items into your inventory without + it getting "stuck" in your hands. + type: Fix + id: 7471 + time: '2024-10-02T05:27:01.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32560 From 2df61e4e71b6959561adf388e63aad3f571e4307 Mon Sep 17 00:00:00 2001 From: Preston Smith <92108534+thetolbean@users.noreply.github.com> Date: Wed, 2 Oct 2024 00:30:58 -0500 Subject: [PATCH 23/94] Added LV cables to Marathon SMES room (#32574) Added LV cables to SMES room, powering light and computers. --- Resources/Maps/marathon.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/Resources/Maps/marathon.yml b/Resources/Maps/marathon.yml index 7a23a84c70..fa6faec647 100644 --- a/Resources/Maps/marathon.yml +++ b/Resources/Maps/marathon.yml @@ -30953,6 +30953,31 @@ entities: - type: Transform pos: 19.5,-39.5 parent: 30 + - uid: 22544 + components: + - type: Transform + pos: -11.5,-44.5 + parent: 30 + - uid: 22547 + components: + - type: Transform + pos: -10.5,-44.5 + parent: 30 + - uid: 22550 + components: + - type: Transform + pos: -9.5,-44.5 + parent: 30 + - uid: 22551 + components: + - type: Transform + pos: -8.5,-44.5 + parent: 30 + - uid: 22552 + components: + - type: Transform + pos: -7.5,-44.5 + parent: 30 - proto: CableApcStack entities: - uid: 1637 From 936917cd05375f997f5bf3260c4bc009d8b9cbcc Mon Sep 17 00:00:00 2001 From: TakoDragon <69509841+BackeTako@users.noreply.github.com> Date: Wed, 2 Oct 2024 07:33:35 +0200 Subject: [PATCH 24/94] Hydroponics doors (#32575) * spriting done * yml hydro updates * Named wrong thing and forgot it inherets --- .../Structures/Doors/Airlocks/access.yml | 4 +- .../Structures/Doors/Airlocks/airlocks.yml | 20 ++ .../Structures/Doors/Airlocks/assembly.yml | 19 ++ .../Structures/Doors/airlock_groups.yml | 3 + .../Glass/hydroponics.rsi/assembly.png | Bin 0 -> 1268 bytes .../Glass/hydroponics.rsi/bolted_unlit.png | Bin 0 -> 144 bytes .../Airlocks/Glass/hydroponics.rsi/closed.png | Bin 0 -> 1373 bytes .../Glass/hydroponics.rsi/closed_unlit.png | Bin 0 -> 144 bytes .../Glass/hydroponics.rsi/closing.png | Bin 0 -> 2462 bytes .../Glass/hydroponics.rsi/closing_unlit.png | Bin 0 -> 432 bytes .../Glass/hydroponics.rsi/deny_unlit.png | Bin 0 -> 321 bytes .../Glass/hydroponics.rsi/emergency_unlit.png | Bin 0 -> 588 bytes .../Airlocks/Glass/hydroponics.rsi/meta.json | 195 ++++++++++++++++++ .../Airlocks/Glass/hydroponics.rsi/open.png | Bin 0 -> 365 bytes .../Glass/hydroponics.rsi/opening.png | Bin 0 -> 2451 bytes .../Glass/hydroponics.rsi/opening_unlit.png | Bin 0 -> 284 bytes .../Glass/hydroponics.rsi/panel_closing.png | Bin 0 -> 445 bytes .../Glass/hydroponics.rsi/panel_open.png | Bin 0 -> 315 bytes .../Glass/hydroponics.rsi/panel_opening.png | Bin 0 -> 470 bytes .../Airlocks/Glass/hydroponics.rsi/sparks.png | Bin 0 -> 697 bytes .../Glass/hydroponics.rsi/sparks_broken.png | Bin 0 -> 183 bytes .../Glass/hydroponics.rsi/sparks_damaged.png | Bin 0 -> 184 bytes .../Glass/hydroponics.rsi/sparks_open.png | Bin 0 -> 175 bytes .../Airlocks/Glass/hydroponics.rsi/welded.png | Bin 0 -> 296 bytes .../Standard/hydroponics.rsi/assembly.png | Bin 0 -> 944 bytes .../Standard/hydroponics.rsi/bolted_unlit.png | Bin 0 -> 144 bytes .../Standard/hydroponics.rsi/closed.png | Bin 0 -> 1047 bytes .../Standard/hydroponics.rsi/closed_unlit.png | Bin 0 -> 144 bytes .../Standard/hydroponics.rsi/closing.png | Bin 0 -> 2037 bytes .../hydroponics.rsi/closing_unlit.png | Bin 0 -> 432 bytes .../Standard/hydroponics.rsi/deny_unlit.png | Bin 0 -> 321 bytes .../hydroponics.rsi/emergency_unlit.png | Bin 0 -> 588 bytes .../Standard/hydroponics.rsi/meta.json | 195 ++++++++++++++++++ .../Standard/hydroponics.rsi/open.png | Bin 0 -> 365 bytes .../Standard/hydroponics.rsi/opening.png | Bin 0 -> 2004 bytes .../hydroponics.rsi/opening_unlit.png | Bin 0 -> 284 bytes .../hydroponics.rsi/panel_closing.png | Bin 0 -> 445 bytes .../Standard/hydroponics.rsi/panel_open.png | Bin 0 -> 315 bytes .../hydroponics.rsi/panel_opening.png | Bin 0 -> 470 bytes .../Standard/hydroponics.rsi/sparks.png | Bin 0 -> 697 bytes .../hydroponics.rsi/sparks_broken.png | Bin 0 -> 183 bytes .../hydroponics.rsi/sparks_damaged.png | Bin 0 -> 184 bytes .../Standard/hydroponics.rsi/sparks_open.png | Bin 0 -> 175 bytes .../Standard/hydroponics.rsi/welded.png | Bin 0 -> 296 bytes 44 files changed, 434 insertions(+), 2 deletions(-) create mode 100644 Resources/Textures/Structures/Doors/Airlocks/Glass/hydroponics.rsi/assembly.png create mode 100644 Resources/Textures/Structures/Doors/Airlocks/Glass/hydroponics.rsi/bolted_unlit.png create mode 100644 Resources/Textures/Structures/Doors/Airlocks/Glass/hydroponics.rsi/closed.png create mode 100644 Resources/Textures/Structures/Doors/Airlocks/Glass/hydroponics.rsi/closed_unlit.png create mode 100644 Resources/Textures/Structures/Doors/Airlocks/Glass/hydroponics.rsi/closing.png create mode 100644 Resources/Textures/Structures/Doors/Airlocks/Glass/hydroponics.rsi/closing_unlit.png create mode 100644 Resources/Textures/Structures/Doors/Airlocks/Glass/hydroponics.rsi/deny_unlit.png create mode 100644 Resources/Textures/Structures/Doors/Airlocks/Glass/hydroponics.rsi/emergency_unlit.png create mode 100644 Resources/Textures/Structures/Doors/Airlocks/Glass/hydroponics.rsi/meta.json create mode 100644 Resources/Textures/Structures/Doors/Airlocks/Glass/hydroponics.rsi/open.png create mode 100644 Resources/Textures/Structures/Doors/Airlocks/Glass/hydroponics.rsi/opening.png create mode 100644 Resources/Textures/Structures/Doors/Airlocks/Glass/hydroponics.rsi/opening_unlit.png create mode 100644 Resources/Textures/Structures/Doors/Airlocks/Glass/hydroponics.rsi/panel_closing.png create mode 100644 Resources/Textures/Structures/Doors/Airlocks/Glass/hydroponics.rsi/panel_open.png create mode 100644 Resources/Textures/Structures/Doors/Airlocks/Glass/hydroponics.rsi/panel_opening.png create mode 100644 Resources/Textures/Structures/Doors/Airlocks/Glass/hydroponics.rsi/sparks.png create mode 100644 Resources/Textures/Structures/Doors/Airlocks/Glass/hydroponics.rsi/sparks_broken.png create mode 100644 Resources/Textures/Structures/Doors/Airlocks/Glass/hydroponics.rsi/sparks_damaged.png create mode 100644 Resources/Textures/Structures/Doors/Airlocks/Glass/hydroponics.rsi/sparks_open.png create mode 100644 Resources/Textures/Structures/Doors/Airlocks/Glass/hydroponics.rsi/welded.png create mode 100644 Resources/Textures/Structures/Doors/Airlocks/Standard/hydroponics.rsi/assembly.png create mode 100644 Resources/Textures/Structures/Doors/Airlocks/Standard/hydroponics.rsi/bolted_unlit.png create mode 100644 Resources/Textures/Structures/Doors/Airlocks/Standard/hydroponics.rsi/closed.png create mode 100644 Resources/Textures/Structures/Doors/Airlocks/Standard/hydroponics.rsi/closed_unlit.png create mode 100644 Resources/Textures/Structures/Doors/Airlocks/Standard/hydroponics.rsi/closing.png create mode 100644 Resources/Textures/Structures/Doors/Airlocks/Standard/hydroponics.rsi/closing_unlit.png create mode 100644 Resources/Textures/Structures/Doors/Airlocks/Standard/hydroponics.rsi/deny_unlit.png create mode 100644 Resources/Textures/Structures/Doors/Airlocks/Standard/hydroponics.rsi/emergency_unlit.png create mode 100644 Resources/Textures/Structures/Doors/Airlocks/Standard/hydroponics.rsi/meta.json create mode 100644 Resources/Textures/Structures/Doors/Airlocks/Standard/hydroponics.rsi/open.png create mode 100644 Resources/Textures/Structures/Doors/Airlocks/Standard/hydroponics.rsi/opening.png create mode 100644 Resources/Textures/Structures/Doors/Airlocks/Standard/hydroponics.rsi/opening_unlit.png create mode 100644 Resources/Textures/Structures/Doors/Airlocks/Standard/hydroponics.rsi/panel_closing.png create mode 100644 Resources/Textures/Structures/Doors/Airlocks/Standard/hydroponics.rsi/panel_open.png create mode 100644 Resources/Textures/Structures/Doors/Airlocks/Standard/hydroponics.rsi/panel_opening.png create mode 100644 Resources/Textures/Structures/Doors/Airlocks/Standard/hydroponics.rsi/sparks.png create mode 100644 Resources/Textures/Structures/Doors/Airlocks/Standard/hydroponics.rsi/sparks_broken.png create mode 100644 Resources/Textures/Structures/Doors/Airlocks/Standard/hydroponics.rsi/sparks_damaged.png create mode 100644 Resources/Textures/Structures/Doors/Airlocks/Standard/hydroponics.rsi/sparks_open.png create mode 100644 Resources/Textures/Structures/Doors/Airlocks/Standard/hydroponics.rsi/welded.png diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/access.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/access.yml index c7951993f1..71feb1d4e6 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/access.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/access.yml @@ -65,7 +65,7 @@ board: [ DoorElectronicsBar ] - type: entity - parent: AirlockServiceLocked + parent: AirlockHydroponics id: AirlockHydroponicsLocked suffix: Hydroponics, Locked components: @@ -531,7 +531,7 @@ board: [ DoorElectronicsJanitor ] - type: entity - parent: AirlockServiceGlassLocked + parent: AirlockHydroponicsGlass id: AirlockHydroGlassLocked suffix: Hydroponics, Locked components: diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/airlocks.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/airlocks.yml index 3de6555be1..cf6d5a89df 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/airlocks.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/airlocks.yml @@ -40,6 +40,16 @@ - type: Wires layoutId: AirlockCargo +- type: entity + parent: Airlock + id: AirlockHydroponics + suffix: Hydroponics + components: + - type: Sprite + sprite: Structures/Doors/Airlocks/Standard/hydroponics.rsi + - type: Wires + layoutId: AirlockService + - type: entity parent: Airlock id: AirlockMedical @@ -197,6 +207,16 @@ - type: Wires layoutId: AirlockCargo +- type: entity + parent: AirlockGlass + id: AirlockHydroponicsGlass + suffix: Hydroponics + components: + - type: Sprite + sprite: Structures/Doors/Airlocks/Glass/hydroponics.rsi + - type: Wires + layoutId: AirlockService + - type: entity parent: AirlockGlass id: AirlockMedicalGlass diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/assembly.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/assembly.yml index c464c70a15..98508b21bc 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/assembly.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/assembly.yml @@ -138,6 +138,25 @@ sprite: Structures/Doors/Airlocks/Standard/freezer.rsi state: "assembly" +#Hydroponics +- type: entity + parent: AirlockAssembly + id: AirlockAssemblyHydroponics + suffix: Hydroponics + components: + - type: Sprite + sprite: Structures/Doors/Airlocks/Standard/hydroponics.rsi + state: "assembly" + +- type: entity + parent: AirlockAssembly + id: AirlockAssemblyHydroponicsGlass + suffix: Hydroponics, Glass + components: + - type: Sprite + sprite: Structures/Doors/Airlocks/Glass/hydroponics.rsi + state: "assembly" + #Maintenance - type: entity parent: AirlockAssembly diff --git a/Resources/Prototypes/Entities/Structures/Doors/airlock_groups.yml b/Resources/Prototypes/Entities/Structures/Doors/airlock_groups.yml index e8f000514a..9beedb5e49 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/airlock_groups.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/airlock_groups.yml @@ -9,6 +9,7 @@ command: Structures/Doors/Airlocks/Standard/command.rsi engineering: Structures/Doors/Airlocks/Standard/engineering.rsi freezer: Structures/Doors/Airlocks/Standard/freezer.rsi + hydroponics: Structures/Doors/Airlocks/Standard/hydroponics.rsi maintenance: Structures/Doors/Airlocks/Standard/maint.rsi medical: Structures/Doors/Airlocks/Standard/medical.rsi science: Structures/Doors/Airlocks/Standard/science.rsi @@ -27,6 +28,7 @@ science: Structures/Doors/Airlocks/Glass/science.rsi engineering: Structures/Doors/Airlocks/Glass/engineering.rsi glass: Structures/Doors/Airlocks/Glass/glass.rsi + hydroponics: Structures/Doors/Airlocks/Glass/hydroponics.rsi maintenance: Structures/Doors/Airlocks/Glass/maint.rsi medical: Structures/Doors/Airlocks/Glass/medical.rsi security: Structures/Doors/Airlocks/Glass/security.rsi @@ -74,6 +76,7 @@ engineering: Engineering freezer: Civilian glass: Civilian + hydroponics: Civilian maintenance: Civilian medical: Medical science: Science diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/hydroponics.rsi/assembly.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/hydroponics.rsi/assembly.png new file mode 100644 index 0000000000000000000000000000000000000000..f84c6150fdf61f3ac37fa1a488911d569b306d5f GIT binary patch literal 1268 zcmVPx(u1Q2eR9JCV5fMHAyw8a~HX`OgCy%ZHltNOu<1nQHK;ZkU_`B z7~TFD$Y}pqDMKk6Zft`gvVS%hgF(A8DQ?}cY>d$%z0IXsSDDo5SyL~XL>FW3s%C#A zFJ5wYrqO_8u1OSjsCXo-KC^ETi9LMGFm zXgaobcvFF;JJ!z2ZBhsL-2=Tx7EWF8y9as!WL&pD*^o_Y@WG9q4r$sbhu=NWTOWMo zeabyF7ywtr!9>M7*q%One34WiIAGb62oa-Tq zfgB6&)`OgLL2Up4kcdSqZLB?*h(#+k8L*nBhhb>T02K!Sde210f|(KU@<(^1mYWoP zHm4sRv$6INfUK`StfZDpb@pFAcNKuP9?)5lyBbmsI78@B z+2}3Bdg3`8L?! z%l9|_Ew)3XB_)Oi#&1iSwpxA#YK^AxaWq>j81ehDrl{5dDh>ejZiJee8r^ERar1;> zA3_MKtE=%(b2F}Wb%Bu7j5kS2U6we7q}1sW$pld-F<8>7EnLgU-7YY4e24z~vNGmXdNsDI<-%=5@6pTpJG zjbgF0`yK#dDe`QTx)wZ59Hy<^7feVu>XDu7>(N&!0BR0mDe^qxbSrA8L(|2Qm>&1>^ z$JdRB3ay3|_mbws{7=8wl68&B?{lx72U0s@ru|AoGViurg+dP|`MAvhAl?kLPx)7fD1xR9J}% z>|%OhV$8U3F@|Nq;G!lp-q121= z9nN1{P@m-FoPOW?KF|BU{eGEUyLROOptZFX;cyrLkW3~40J&Ta{}&jBf!%Hg0Ps8y zQ4|3HW~F#tPYeLC(rZUYM+Y2sJ8EicWs*DbI1D+mwk zlMUPrZa6GX`FA1{Lu5LV7iA~m#`cmT#W*_m`4FfY1wIGNbv-czr__!YhJ!l7!(HAy zK~?DtOL73{Z1F+riNZwKdUUqMgW~HJ~`@xnU~+1iB49{&(BH=3khiZHIrSMi#dv_6agV5zP6gl(uWYDDivYt z4Fiw>NLJQ%Go6}qSXtXmok1$P*%&0vqk~}u03e;3tGBYYXgW2gTO2mCUK9zabO2Nw z0O(t0NJZrec)7hr)wIDIC1a)^iA;SQ>lXulRlOR>V1D8&C-gQ-f(#oT}RY7PLJIV*np^$$Gr$moDJ zi1Xj=c=NG`_u$%%v`UCf9D&p{qziy@?ceqR{C>aOE(iif=3jx5OEm_Z777KbPQbc0vm+SL3Hm`Hyy> z!U7eSdHh;_L^g8^Sk7!Xt&2~Q^0LO|43M0;t{VfDm6f3WN@%$bjF01Bc{xVf+o9z$ z>%0}>06^b`P-q|m03ie(j|X9o2df;1?L@z?sm4Go)2b3zwi`ie8UpvkHy{&7bbYZ* zD+ECR$8q2|4lK(;5Ck0;)A_Y82LL1QeT<4nyU`Lk@|u<`ls`(B0n)YHXA(?cWTPwp3iX3?F;{Be`D=fSw2F zz|)c{&v&IjZIzi9+Sp7+TdTB^oibsKqa>SF)_{srR8-p|S{pOnT<8W7au1z3x$m>L zC5BlnL$2of&Di4Dt@DNgUT&{yW6`3Pd$79kUWeHPQx*W;x$=CEQVUR2ATk}n;Vv%# zp!doPCoYHMcLRfgwdridN+E%Bhc4;{pc1!p=Japh|G4@~bWx(>%9AkwFi(C_p940w z+07iODGFUow!*=9z22PmR#fa#Q7ix{6;<ievJPEX+L5Biskn_2mBw!qy`)9YF+o zL9K`u%JyO$RGjB|m_$(o&-1w5=adDsGlRBK@j{1EWqYxMD-{<-5scCGJdsEgbp9`J fIPyEY@_POc>dd6yc8=kv00000NkvXXu0mjfbR}{0 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/hydroponics.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/hydroponics.rsi/closed_unlit.png new file mode 100644 index 0000000000000000000000000000000000000000..c78d01c42d084dd5be78e8a33a599a90cc86107f GIT binary patch literal 144 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJa8DPP>^Ss#&mpghvZkX~#s0-h3N2b6`K?}O)meqDd+l#VI$hWM`6MlQ q&#%(rqf#%I&Hk(pG?9U!&gT+u#1#>y1s3nVf%u-TelF{r5}E)5_cy%& literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/hydroponics.rsi/closing.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/hydroponics.rsi/closing.png new file mode 100644 index 0000000000000000000000000000000000000000..567e59aaef1771499eadcb4fd7366eede18e144b GIT binary patch literal 2462 zcmV;P31Rk$P)Px;SV=@dRCt{2n}19j=N*SXHV0?mNNgvVFnUlYaYLp6g*Zx-Nez`!DO;2<(Po=8 zRcp1Win9GN2~A~MD_SLrn6hZA)JEAfX`7-=lTu|PQMzu+w5^J|WpQD~DN6)u3YP@1 z6JVJEpMkJHj@O*eclP~y&q(Q4LV~;Z-sia=_Ivl<2N%!t%K#tf?Xoae>c<6KI{|o>)*wF&vuHc9ZU&rHeUlf4s6JU0bGE)P` z5?OyA{(M{3-?UtmTmWdVIeP*C{AB?uE^17|YOgta!VLf~{ow!(_q9245(GhT34-8K z6Qk*(#a*9Duv*(#bt$y30nD*(0EpiH$V~rK%4wH}(^I0>I@&H{BSV#IVh}E7&CSI9 z#bUE8n^-d^KunGoh3nzGca+N^aSKG+orV`LxMEf+Ia9Rf08tdd>}U)iIymPj zct>MEa~(|=HSYhW=RYkkD}}FSGj_1|ZFf;)R(Us~yiEF?xp6a&ii!%$AR~3-W?XX} zO&2w8>k}pQ^J!pu@)O*=owD6UjoBD{i21bid*&->+qP|v&4w-w9>}|%mWvu!Tv!^T z>5^|>S(cSffVlMng3rC@=xiuEqJD=#%OxK-o^GPzQivIeM8Gs3eG!24lHlV$GZ=F< zH#djY6}GZyx+uAeziUU}P!|TSzKh-8eT9mPl6mbXKSSV97s`dsuE+i^h|~+Gju(aX z*$G%F@|Ma;7F$|U|Ja`ZwzQE@Xoz+@L+od|Vy=qO&hRVz7 z+0eU7mKmj%{FFpG#eS%jxdKG1ZL_bc2LAV4VoZ7A7cr(ep;dE_-D zZ5JgI09>EN)9JbBVY=$;>z4swdAYEk9vLG$>T(i;$fDXN=Y-IO-)T0 z9v(LAVul$Cg%FELFM$}2<805$8_D5s>Xz;Z7LNNYdzj&V`o_A-}iyYe6U!0>jtwS@R(BTe1Oe z6g)N<254127EOD<)Q+sYo=p5xt<5Dhu6g#Wn|^$X z?66f2qg())gMD$RKkMKdbur51>v&uo>IVQYljEb6<&{-anXNP)&7!wI$~k*xYHVaE zhqo{N?KdaKN2_UiD7kxPzjfxHRX;xlNLMwvYVCBzOF^a^kYdsv&O2W0th~b>`Az~YmmH>>fBa7?A2;_rv-jzooFqHaiCedB>6!~F zX?{Ovd1KIn4?g@icCUXM;cz&!{GGq-!J#kopHc3(Q4gcsNF;)5|NRaEwT)TrjJk+h zFBoRZ`*Np}Gg+sQW>%hL;v44rc3IcS=CD7jojDg{OnG0b z4`MX3^71~}(vtdh{=g)8G}lTf+u@OqtJcmAmqN@}-uh`~y;}`PBP%b@#IN%QCV|y? z7Bbk;@X+EaPXcLYhl^e&urda?@hC_(&`mK}L`Ye*J(S$?DxUzTPc7T!qQ#UK^L*#? z0nz1}Ey41}PwvEL2kxC$?W`rZQ!_zqq^g74tLi`JXWVcv0l?p{zk?zE!s*v{{rZPA zJ(S!ZUH@7)usXR$`n1zUiz(lRIez`?ukQA}^;$CeVYzSDvx{1tS)C0fHL=X3?)~X+ zp5><9>3`h$X3xQn7F_O&!m5W+E+C~8MsEEpE3s_G#VAvr#CAQ|^JLC#rLqxVJ(y)F zmZHPMD3|n2zJkan!KjNFro0%EQzvD2R$eU=uVm$0N0SQx6TN{fOPOfp%C24y8yeh@@koQwKjHp z=-~oDEEYp36v9Mrz_N>8COP=ASZwwG1N4;L@pJ(2`=uw*si~;~E%SSr<*LQgjkuU$ c%H!$(2NANZSX=tPZ~y=R07*qoM6N<$f)@(Ht^fc4 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/hydroponics.rsi/closing_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/hydroponics.rsi/closing_unlit.png new file mode 100644 index 0000000000000000000000000000000000000000..2a71f76d5d0c792fe84b136920ab32a386dfc7a5 GIT binary patch literal 432 zcmeAS@N?(olHy`uVBq!ia0vp^2|(UR&i(je0cL#ec*0}-@j8|{(iQzwzWT#=l!&5f jT;0h840aHhFykh_!rG~;5AeP$1@S#y{an^LB{Ts5_a?jl literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/hydroponics.rsi/deny_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/hydroponics.rsi/deny_unlit.png new file mode 100644 index 0000000000000000000000000000000000000000..7c56263f83958a17893b3db0b04ce3078c15cea0 GIT binary patch literal 321 zcmeAS@N?(olHy`uVBq!ia0vp^2|(x;TbZ%z1lzVbEa*5x0l` zFLCLtQfk)goBm*9Wqa5)W5IyH?gg7O+Vq@#{gzqI_j{ICbSF<}<0|vo?Y_6yOll7; z+AsO(r`@v>Kf7}$KR*umYV~i&zP&s*_xJv-=38t1deYzEyLbMqy6^o$Z`IbavsGXD zr!(F8`6z;|L6RYjVFqIYc7~Z}LvrZvRZ(vk567Q>-*~3QX2MKG<^wzo#tdf|3@{iQ zO7s8d*3Gv+{xi?r|HRuDl15mS!8LAhWr_IppL3FmClFnFq60fUCY M)78&qol`;+0G5h<`v3p{ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/hydroponics.rsi/emergency_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/hydroponics.rsi/emergency_unlit.png new file mode 100644 index 0000000000000000000000000000000000000000..817f2fb3f95c53ee8720a7c5be418b6208a6a7e6 GIT binary patch literal 588 zcmV-S0<-;zP)EX>4Tx04R}tkv&MmKpe$iQ?*4Z4t5Z6$WV2$AS$ApR-p(LLaorMgUO{|(4-+r zad8w}3l4rPRvlcNb#-tR1i=pwM<*vm7b)?7X`w}o2gm(*ckglc4iIW3rdb_hfTr7K zG9DAtnN>0H3ISaRVg@5Jvy3@OO2Bh`-NVP%yC~1{KKJM7QL`2Ud?N8IGfbO!gLrDw zHaPDShgm^ZiO-2gO}ZfQBiEG%zj4mHEbz>*nM%$Rhl#~}8!K(h3Z_OpNgPo%o$`fr zgH_I3oV8MgHSft^7|QA^%Uq{9h&UFp1PLM(R8T|-HlnoZq*zGOe$2x^;QA$UDdZ}G zkz)a6Xpmh$_#gc4*2+zcHN#J&iAq7)K38aGjOH1{N)-j{YiSY zrA3Z_-fiIGx}_<5z~v6m|76If>`H!`LM{iqpV2pEfWBLxd#%x1b04Py{D4^000SaNLh0L z01FcU01FcV0GgZ_00007bV*G`2j&6>2?sl(`5Ny4002lyL_t(&-tEhw4S+xZ1i>Rg zVKDSSXPx$CrLy>R9J=Wm$6F2P!xv0CIRI_#&nT86bk83lvI2Kp)MWV3%V8G#1{x1h3-NZ z^(90aDs&JW&Q|w;L)D=qHKMpA_XgT;x@7r3a?j!CHni5C03za26fCq4M_5l3a2c?s3S`-Jsw<|Cao{@zEc*%HzQs<_!0Z7J^ z{9KPAw29a4G?^u-(a>(Exe=HzmMEo+3d|SF{G4Aw7>35$aFz6n0`KixTBmnL+i>q? zy?Nf@Xb6Bl&^%A8j^B``DbZ+Xe+za3yEe4mhV__%trlq5ex82;NtIgqiS>0000000 LNkvXXu0mjf=V+ts literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/hydroponics.rsi/opening.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/hydroponics.rsi/opening.png new file mode 100644 index 0000000000000000000000000000000000000000..084547837bfd45621af48034bfc5f2e11ed39579 GIT binary patch literal 2451 zcmV;E32gR>P)Px;O-V#SRCt{2n{R9r=N-qtzFcxn;*8i3hm1L?TiifJk|r2|nAD~cRap^XOH*yq zgw|dE|z=;D+ zM)S`G!wmw|Mj~58-=dBLHCV=yVRol8e^|(9++6Kp=qBH|{VqY3~3t zE>^i#J;afb5rhwg(co%ZDYC@}PnkD&Kaq+fdM}z4agD==jk<*k)#%vOhKrR0z^{P@ zlyGC3aj}zY#6#TN6GwO=f6(Rru zv(yZecAzusVwG#fLjZt_!vlF6;*hKNRQ19Gso}ZjN;fP`OEl11f7p+X{x(e@0C=$= zJ>S|~QtMchzPkCxr{quk;_v{-eKSnu#)w9vj%YOMV0E#|Rfg3=1hTI*d4*n1edokf zY`mttvMP~#l%Nd@kA14zqve?x9j=tu*)#v`Gykai`B6`qH~SGZ7vs)kb(xBdSK7(d z^U%aek~FzuCY*wWmr>f*r2^+EwS zH8wGIU5d=ji{=YJgaCltk|gJ1xxJ#rzq4R*ro8O6# zKlvvPesSQ8a)X@zS8xn&qLg?EqeuARlN!2Wh(=nuIkvMM7%cnIQ^gUvQoHfpT!R8L0+-&&;nYvd7+H5 zR{goH*?-!B@-pPr`uBBqCM`QmxbWaw@eps^${wA!`5$31wK8B?XhJG2sb5S1GgEg| zpNkb06(En7M_FsnjT?Bmv=rCc+o7suf=P=R7am+I9-?ZbOb7tTEiJSIF#t%CgocI& zj5IXhiQkWn5_PVNiP_lLn9({Qrib=J>i}5Dg$LJ)N8T|Yo@&Yyk}uava_a^7U;RC# z(N5L6c&Z7ZPzZj%AAY|dE|&|TP)JqFER!}H%Iad3s|>4$*nH$L0N~nBeg^NsV@O6j zReOQ=;4utd{Sdpq_qM92Z;KB%`xnrre4Tc0s>Yp!L`QoV48KYi)++F(3);dK2A>vc1M^AMABF-WdDMDIm$;7|)L z_lMDY{p;Pk-S59M7yhK&z3Y`Hv|_Z`P?E`vxOD$de|2V>cBlS+_glw-{LTn+-we~} zY^a_~Z@)FJGOQks*M3u%0am77jkJ`I&>FK?YM5cNG-m159ttI>>x^)%dWe&K-dvj= zfZRKQ)~r-0%6F4qjq!KVXgFD7iD}h^H<#5z3s3L)r?H z7Nah_xvU-zt@iXpLjAeOBOXt7wpXh?orP(&Jzef%m21_*VPtNDrJxlV9!#??b})^2 zh~3@YxjR;R;%Q;&mFLA|arr^!gsn_H4@bwPw)|N|6Fu>?810qk$u#3)7t@G`(Bj{j z*Yh~&8ZU+id|Q0EUYlYu*J8wT=l=}Ao}PGGh~4m3MtbEJ zIWt*Z>|`48Q2jnY8LLuyz4CT2SzPR9>UoF&5WjR9FYR?>=tIgb})^)6oXmFL-qTBVx*X?wI0>) z1BwxOuYA#JHU#&01 zd9UcdZDbnp_#cTSu@nC~ R=nVh>002ovPDHLkV1f&Cxzqpv literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/hydroponics.rsi/opening_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/hydroponics.rsi/opening_unlit.png new file mode 100644 index 0000000000000000000000000000000000000000..84933bd5ed9cd40a972aee792b227f9aec95f233 GIT binary patch literal 284 zcmeAS@N?(olHy`uVBq!ia0vp^2|(X)s_s z#KIwr!I-V$V11^#dUpKLjjy-9DY|#Kuw+Jjzzl{&rWQ^CH3uAwt;hGhNWR~>|B3$l qhyP2a-~C|qG6v`^C}^l(vC57yE3)EC^YOwKkf5ilpUXO@geCx+nr^EA literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/hydroponics.rsi/panel_closing.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/hydroponics.rsi/panel_closing.png new file mode 100644 index 0000000000000000000000000000000000000000..db7be0bc4a0ec0b2bc29e8718fb6b71796846f16 GIT binary patch literal 445 zcmeAS@N?(olHy`uVBq!ia0vp^2|(qk=b{5eiK-()1~xQ&@cMV`(mao8yQ?TZq;#^Y}m${ zacWZ!Yev-i>$j948lYsxftl|YY`yljZkp{(pFL*+-lj#WWzI6YweB*{ESZG)8eLCP zH-4D=_wruJUKQWqugks*3w-~bxAmsS_S>R@6K&4#1!`fty>^f8^xkc+O+xqazTJA; z{=7~2>uGDRIhyR%SJ)ONH}BrkKUz=f@~-S!d-avVtb5`KJrkcF_ZOUaf4N)v?bouY zpX0AZna`Cr-@$dKByUdGcPkF5{Og%j`&-%%FXZlavSVWw{8-KzzB@7SM0TXvt!o+A zif+H$q2jsc@9*!WwR0M*e5Y<-(ETyu&`qBj{lx9nl5Os{*Qk05m8bu?%XoF&`KQ?? l*%zfe7FQS8+W~`WRsIyAi(3!btSA5lf~TvW%Q~loCIEIM%9sEE literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/hydroponics.rsi/panel_open.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/hydroponics.rsi/panel_open.png new file mode 100644 index 0000000000000000000000000000000000000000..24eb2aedc2248aeb772b38f63ff992254e7aaec0 GIT binary patch literal 315 zcmV-B0mS}^P)G_@Zv*NK(#C83< z0hCg#mPY_q%Og#e`P2l!*GQEjpT`0MYBKbMv^%3TIE=g7KF`WXCR28pn>(x2n zemoXytpJ?bfcIZ;wOEjBHdt%rI!S!%PGhZ=2c^1AoGrxJR_5RoDx&OEP+E*gAHf&mPbH>ZE8FCH9e&*rpCoP%1 zIy_fR`1DT4EhW}ImG2+Fy>#^EcBOlIu{N4r8M|lHdv8DdMa^XX`Q)41s%D;5@l3t_ z>U!DiCu(!NfiicFek|lsbn*16WPNgF)9u86nlDcO+<9uZb*sRm>zlTKo#3wDtk_cV zGUiQg0fX*;t18(yxo?DbZh3Nv5#oCg`Gddm{r7*~nV;{o)~0;#=kiD}oLj`YgzrYV zCx61j+EYJuRBRcZ$AIaEWtl7E0M--(oM3v-T6o|50rvB z?(X|$_9K~q!b>Jme`5^XKVF&j%`2QtMsN-@c!MQ;uYX{&xPXV-MV4h*a7^*H)mTo% z^duKBlw8QrI7#Az6a!+!k42gRM*{jVXw(2^)BtAG0A@rO5W6r+TTo*dR0c>itn&u= ziYhf*#29dhKzXbye)sb`x`T#9jF|@skRQx^J~1)&r}u;k?=m8#VH_qLszE1c7I|*U z-vi17+kNaSpCz%9yQ#rS&sN2x0`#dRVZ$Zo3 z(YozxD(tDJ*Nd^#9ngM11*`#hZL|qqUX-aA#5S}G^!n=WLLU@GQ4~c{6dSK|xP5Tx z!-H@vnhtn%y49-Lc3NyR!WG{&^FjpmIbAy+o5nPrx)V}}E%fz`bB+BtcI@^)8^rTf zBx((Ky3EXU1aLM2IGxVm^KA+58-UdY;QHA(FXNaPN!aD?zV8}<6&DioA6qwm%&S`B zG(?rf)v;@BC^IYu=$f%ZGhhqXw5SF!qXsa;V!%*uXSl{qZh&O*G5ePMUQntINQ83i z$upoRb}H)fv5TKDu*ZP$-hvmY3!Atq6ENBh(WYFFM67|7l05p#?E1nmayZKasmvEs z4%uF#@2=U$hCc&#<3^>qaoRUjD5t(Q@!@5>eLn%YPa&y@Wk6F&Jf;Amr=S&p`TF~H zKQmyzZBbK@-3j_NfaCqFrZteLVgLD`ViBgsl+FQ!832*%0DhkaTq4i015y-4Q4~c{ f6h%=KHvsSpwHV1KmpgiI00000NkvXXu0mjf++aJ5 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/hydroponics.rsi/sparks_broken.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/hydroponics.rsi/sparks_broken.png new file mode 100644 index 0000000000000000000000000000000000000000..fb5d774588ae44eab5608571cb6aafad7375e158 GIT binary patch literal 183 zcmeAS@N?(olHy`uVBq!ia0vp^2|(DFD66%%n7hj|c25u0=Hbzuz>&Md dbBcZ?)Aw7<0^jOhxdW|Y@O1TaS?83{1ORW&Jrn={ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/hydroponics.rsi/sparks_damaged.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/hydroponics.rsi/sparks_damaged.png new file mode 100644 index 0000000000000000000000000000000000000000..f16a028dee5bbe41a7f4e35f686043e8a112ce4e GIT binary patch literal 184 zcmeAS@N?(olHy`uVBq!ia0vp^2_VeK3?y%aJ*@^(YymzYu0Z<#e`9lQK{p_au_VYZ zn8D%MjWi%9!PCVtL_+fI!HvAl4m=D8Hh=XH6ZQR;XyVo{y01gP^_0k+pXD$8l*-N4 z&iUk!V5<=?maE{?*yyS)-udN6;H*Pi5*L(-Fs)pAdDY$x8SUGCM{GTG-~v& dN}IerjGt7Q1>7HnEC$-e;OXk;vd$@?2>`@EK-2&L literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/hydroponics.rsi/sparks_open.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/hydroponics.rsi/sparks_open.png new file mode 100644 index 0000000000000000000000000000000000000000..630eabb976ecf11fa59ba29f03502b02bde399aa GIT binary patch literal 175 zcmeAS@N?(olHy`uVBq!ia0vp^2|(GM)~O;5D{Ad0LZe;7N97KJC6BX-upNVgWUu;=WLfz+qP_d4j_bJ3vh=hfa5r9 z0qVN81qdO4*#ozUc?-;6LK?t17pG~m0|2;<_}}aJ8%Xzkw*de?p>!O_N2;HSWO<%5 ub^zoJEX!gGaL3n-QrC61fn;4*wm#k_G(h}nBOLz#0000Px&YDq*vR9J=0mrrOEXBftRvmJNbbxYk<(@GfQ)IgSET$>J9iZm(Ypa!x<(vz2- zdJqp@#9m4d9((CQdg!G>FFjakT0(P3D`*jdW8-du7_<#xkl?QF))KPLs7w#rZ=9W( z-I?9kKMySIeBb*%&-2Zn?|nb1P$)P6^?Dru$8m^)X_}IMOjXtB#J?d)64`7P0Qt3# zD*!w>mt}l>oLn}`&Rx6Q;0M(zwR)YoxjAl4-9r6JZA<*-7tOr8XCFs$30-OOhmlC< z=H-W|@9h9!;bgV#9S{b(f$S3WtK^b>?nKS5VBRyEqM21xc63c1hg%i_Gt;F&;zY5~ z4BXbUb|iPg8*o6+xj(>lJ^98+D`}e-ZsBA#FeW(s+%wZ9)P9wOS3C|r{P75r(<1>B zrfEv1X-Z)x{P3DcbR!N>TDcKBHjatJ3t`&?VjHm5*Zx}rN@n*zYoOB#t@Sl`zM#Fe zX;H71yAdgw-B{~uEi0|r6?abH!qHhESP#Tk;ol7fhgaOo*YXJbxB23kPeNA^wiSno zhjI8dr1Z$Qj+_c6K5bNa_nm{>UU}R~aQ8UN%gdp);H3kz0iL|Jl`Ge7a_E)w=(_HX z8-~IBqf^Lz$wk=yL2xsytFNgz@CHKWW&{uisu;Vsy(E=Eufp*gbB=LqkKM)$m#Q zNZTAmQ5YB);LhkMKb<&%q9_2!6?+)@kB5PTr}i-U5F%^v5_xSa8yjPe_j45ghtkI# zYw%J_PQ@O^FwUcC8UUG02E#C@*r$;8e!ABQtA=HxM&p-@96J3`U{38<`M&sTtk!J) z^Djvqo(iqFWuw;l5lnq{uG4fZL~(R9;O*mjMHI*XqaP?6wb%(Sq8fTN6BETk%Rm$^ z9Gwk)0aaCX;+_qJ)EHRE(J{ZOQ}FN)lhKwxkXzp0|*oC4iCLR)cq)K z*&ApQF6eI};=miPx&(Md!>R9JRkc5Ff@ck>bFjpdyrAQ`1|^Ak$LAs3u!7rP$rr5g+2YyZ@R$ zwSFOR@9+G6-|z37ob&tL6PlcyYy+gzX)2Wp0L^9-fOfmhK_L_h5sSqD&@>IxGy#yD z;-m950RFxhV`gTCcr3=T>dN~#gWt4HntSLm_XpV|N^^)TOj|0B|npKy1l&I`|-)U>7BqkV#kU8Bhld0G1((3HYiqoC=n%`( z)9iS-BwzG^*lQyK$g)f_nWU0Tva70$$g9Ca#iF53}** z8DA2$RvN>&gsQ3lM59p*!=To>;NlA9KF_uRmf!u5q382~-Eh@tu=Cv&PQ8B4H>Qj$ z6z58=dN2r=eG2mLTnw1w1N0gn#P{5LAK1@!0?zNZAoLpFuW$GuTkC!h7Ij)Qh*hJ} zckm$H(8=v;Mq&l3x2nv}Wd=&(^66{74cJTE`DG0M9z)SCMG}jJvM&j5ixmhG-)l9! z;sBvcCe!xbin?7YobcX^oPEC^j?K63BWapOWdTO#JAZ{(i7I|UuZR~;dp8atu4x)! z(=^dEjo%g$wt)9!2%8Y!>*P4?-AH@Pf_S`B8J*Yje*l_o))~~* RD?002ovPDHLkV1fqc4Zi>Y literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/hydroponics.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/hydroponics.rsi/closed_unlit.png new file mode 100644 index 0000000000000000000000000000000000000000..c78d01c42d084dd5be78e8a33a599a90cc86107f GIT binary patch literal 144 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJa8DPP>^Ss#&mpghvZkX~#s0-h3N2b6`K?}O)meqDd+l#VI$hWM`6MlQ q&#%(rqf#%I&Hk(pG?9U!&gT+u#1#>y1s3nVf%u-TelF{r5}E)5_cy%& literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/hydroponics.rsi/closing.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/hydroponics.rsi/closing.png new file mode 100644 index 0000000000000000000000000000000000000000..9963ddf614cd1d544acb70d42f11bd2aeb658679 GIT binary patch literal 2037 zcmVPx+uSrBfRCt{2n{j9xRUF5^skdhBve~9vTq(Dj+0Zi9cIzS=Dq3NKZN*l`>VE_M zXUNzef`|nbg#A$(Egy%_FjLV&*de(%X{DWR8`FafUfI4cu<5_s${sZaNTxcVJi9?I@Hfq zQHD_M{&Wif;P$&qc&)!5srh+ay?PasM<=Da(A@p|_aj(ekIh@Qyq{&c z6mkKeBN_w%1gk?*T+En+)e#LE6Y%=?2hls!<;f)Iy6)3;-Df5y)5VS}!-a)e1pwny zzlrphQmf6SA}+$KxhiG?(hp|Jt&l4(T`Fb*{DH=DE9A;cmny)x7cOU|AI#*Qb*s%q z0f2LdE(7ppJ&4><(C-lGXPhh-GcH}JOwx51D<)w9)W0CFmLklA3QLwtDei@LK9J&K z#-v%kr+aQ>{kMNaoO^?EEg+o>i!%aEzaV_=XT-d)RL<%R?N2WdR+VU zckF%gOyyjJ%T>X;2862Po^wOhaYUohwFxL^rPFCBJKI7Sk1co#-q{wiJSNk{iu=cP zp#G`t*y+FLx{DceW8G%dR2$zb6E~Bnt*vzo;;D(7Ny}q0T`aj7VE&&!i>?7~xR^29 z!vA40V|<_c7u4F?>e*`Oa_nHqmDjAb2`F<_#A+yAtIee%RzvA3 z*J`K?7Z&EKUk#0EDFFFP#BREnF$pWCr79#BREA1Fn1Mggh-3W+kjf;DOpr%R{f>^F zzD@+ILzOWBM9j+~yu##zOc%PZen*E6z5I7Uh>E-Xyn zwr$(80Fcev`?1LIoT$&|Lw$Wc0APN89!@+&xl2pN3TS(KI}(Wmw~Gif5{V!lH#UKk zKp^0HR-Pw^zjeU4BY1eK-m!-W_pc8(RNtR-Vqp)723TS{`%5!>;$%fh5NNW*^Vu zV%q~o3_d+DW88*zM1#36zyiB!8#qi`P0FLEonOS+(6L!;sX7=vr%6rzz za-m;MR6Qz5H=^sG9`%CltRiICAhm18;a;OD|}9Ip#6v*_~yg+flV@^+bcGo~9JqFk17 zRxTpUyw3-0dj4A8{j}4pJWD1%8ja?D|H%*gpwtwf1g{4#SJO0%{Cg6i#WO8;{e+7#<}HE znz_=;^Y;PibQ;ss(-=EEf^S~^s%+eJI$aS=r7*wlMpoV~6Au8}&bI&n9@YWRn2ZD;3e&+L~p#5HH6L!s>%~e!m~h&CN(OH{($_3{3JEl=k4^Hu(MgV6(m! z7h+bXlDa>a_lrlFcIvXUQt6h9XbZ2$!a{ep)a@ua)>?ZcTPS8^;?E!)4g&xJfdG=3 zb|?i7A|AY4P1BIfoJ6Q#oQTWRmBU4oP>MFI_CYY)3|JT7))kAM7G?t9Y-kdc)a z>FI_CYY)3|JT5$ASN(oKxtF<_CqQOao+OmL^dL;KPD3Y_Wx1Fov8z~t=MG(Fx&W)H znq|%C#IzK8`a1LEL_K)9fRR!luK-qS^FAa@5_Tb^t z4@6;XoX16!NlGC(b^4Fp%*vZ(;tN@&j>+T#z}>-6E;0zfkqax6)b#tyP)JU_R6{3a zmWj8LcGJU-ODYnHATbDR9hk}eou~^d6EGh9NF-9cCFyono@LvS-sW@5gLS(z9*-ju ziQw*F$gvA6lRWtGczosa0W9TqJRJanLF3(GD#d>H;WVC3bIs!EJT4+kI-dSNQKp5F T&m6Cm00000NkvXXu0mjfJd5xL literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/hydroponics.rsi/closing_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/hydroponics.rsi/closing_unlit.png new file mode 100644 index 0000000000000000000000000000000000000000..2a71f76d5d0c792fe84b136920ab32a386dfc7a5 GIT binary patch literal 432 zcmeAS@N?(olHy`uVBq!ia0vp^2|(UR&i(je0cL#ec*0}-@j8|{(iQzwzWT#=l!&5f jT;0h840aHhFykh_!rG~;5AeP$1@S#y{an^LB{Ts5_a?jl literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/hydroponics.rsi/deny_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/hydroponics.rsi/deny_unlit.png new file mode 100644 index 0000000000000000000000000000000000000000..7c56263f83958a17893b3db0b04ce3078c15cea0 GIT binary patch literal 321 zcmeAS@N?(olHy`uVBq!ia0vp^2|(x;TbZ%z1lzVbEa*5x0l` zFLCLtQfk)goBm*9Wqa5)W5IyH?gg7O+Vq@#{gzqI_j{ICbSF<}<0|vo?Y_6yOll7; z+AsO(r`@v>Kf7}$KR*umYV~i&zP&s*_xJv-=38t1deYzEyLbMqy6^o$Z`IbavsGXD zr!(F8`6z;|L6RYjVFqIYc7~Z}LvrZvRZ(vk567Q>-*~3QX2MKG<^wzo#tdf|3@{iQ zO7s8d*3Gv+{xi?r|HRuDl15mS!8LAhWr_IppL3FmClFnFq60fUCY M)78&qol`;+0G5h<`v3p{ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/hydroponics.rsi/emergency_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/hydroponics.rsi/emergency_unlit.png new file mode 100644 index 0000000000000000000000000000000000000000..817f2fb3f95c53ee8720a7c5be418b6208a6a7e6 GIT binary patch literal 588 zcmV-S0<-;zP)EX>4Tx04R}tkv&MmKpe$iQ?*4Z4t5Z6$WV2$AS$ApR-p(LLaorMgUO{|(4-+r zad8w}3l4rPRvlcNb#-tR1i=pwM<*vm7b)?7X`w}o2gm(*ckglc4iIW3rdb_hfTr7K zG9DAtnN>0H3ISaRVg@5Jvy3@OO2Bh`-NVP%yC~1{KKJM7QL`2Ud?N8IGfbO!gLrDw zHaPDShgm^ZiO-2gO}ZfQBiEG%zj4mHEbz>*nM%$Rhl#~}8!K(h3Z_OpNgPo%o$`fr zgH_I3oV8MgHSft^7|QA^%Uq{9h&UFp1PLM(R8T|-HlnoZq*zGOe$2x^;QA$UDdZ}G zkz)a6Xpmh$_#gc4*2+zcHN#J&iAq7)K38aGjOH1{N)-j{YiSY zrA3Z_-fiIGx}_<5z~v6m|76If>`H!`LM{iqpV2pEfWBLxd#%x1b04Py{D4^000SaNLh0L z01FcU01FcV0GgZ_00007bV*G`2j&6>2?sl(`5Ny4002lyL_t(&-tEhw4S+xZ1i>Rg zVKDSSXPx$CrLy>R9J=Wm$6F2P!xv0CIRI_#&nT86bk83lvI2Kp)MWV3%V8G#1{x1h3-NZ z^(90aDs&JW&Q|w;L)D=qHKMpA_XgT;x@7r3a?j!CHni5C03za26fCq4M_5l3a2c?s3S`-Jsw<|Cao{@zEc*%HzQs<_!0Z7J^ z{9KPAw29a4G?^u-(a>(Exe=HzmMEo+3d|SF{G4Aw7>35$aFz6n0`KixTBmnL+i>q? zy?Nf@Xb6Bl&^%A8j^B``DbZ+Xe+za3yEe4mhV__%trlq5ex82;NtIgqiS>0000000 LNkvXXu0mjf=V+ts literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/hydroponics.rsi/opening.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/hydroponics.rsi/opening.png new file mode 100644 index 0000000000000000000000000000000000000000..81aa75f7a5a943437c16b1b3f1d22ee509650667 GIT binary patch literal 2004 zcmV;_2P^oAP)Px+j!8s8RCt{2n_p;CR~*N`iPxsBakHsrmXc-J8d{{aS~DEm*g8?@=dnoM1fehx$1Yry&vUa!$$_DNa6ti||v?x(a7o;xL)NQ4j%#uB1=Qj6W z?)jT!Yri1$-gEBn^Yxr0_ug~A*VEqKUI2iut}difDFDFy{5$}lP$)o_JRT34nwkIr z(P$LOWD)>SUtiD6OsCTx^S)3hL~XXzizrvrhXyPU{^p?!0O0RqP1v<-7XnR9*tltv ze!$(iIb`SOaq;3sObtvS^jQeoKPk4~7<}k@45^H*}izrvrhn7mEkmye! z?C)7F(i%dbE~sy3^BJUXr;A4XGYFyCwQ#u_eb4q_blo`cIS|GgX-pn3D!DX1w9P{q zBz`k?IyaKA9K5f;yJ&139jI�DW6}kQ&?1G&>qQlp)`!>UZ$aOd9!saKv4H*$ zfIf4iFVV!|IZIK}*IeV=NCKf&<8LVs)9FOV>qV3+;=>C7qf_ISfuPZw-|j)*NRKVh zEc1VSbZT7R=3$x#Bb`or(&@B^)r%mU=A-mzYW)>9~z6?*pFP>SxbLXYvw0l8cbGcz-ocy$b4z5WGqxtvPef5MB|ht}CqyaQgpVIvyqfM+^_ zmV<6y2AZCD8lAqohW&}jMReQrC$)&4Jl$6OqZeqXGuFC!nVspRP7W_-HV;?Chj!&! z@$B3Y`4bQF0NFMu56u65%ksO}*w|>>pVT6H?#dOsyml?ddVBG}T#JM0Bpxr8V>q}X zJ~T^DMme2`0l??;Ash}P6%ON3B!Xt2PZS3LXm4*X*qsoUCilSZ1Srdk6IaBCVFEJw zE@=1fSq^%X??Q)7v0U3(bVTYgec@HhBxLekh{sPL5{Uo+{C+>;@i;R1BZgYM%*Dmt zLg{58`MbSwe}Tn|na#>Ii`9px@9Uld0E`_!iG~*kY*z^<<5@iT@eFnzJ!EMMwT3X- zKW@18WvMk8&vG+q9!<;W%LC#RRw^g+M7q_Od3Oon57!7WMZL)8 zvii`X(I`^Gz~-UiPZ8;yhP?^%!;4at?k`sZC=Px!8pU4=KM66NMC(O1m(_$mz<7_E8@he3FnBVLFNBv7<~bs}GM|JUyFbyF#EE=UU zj3eU7#5;-hdRQit$BQZ^jSp{kWQQTKJmH_Igb##TL;BrirI@uS?ev!y0I12tJIRv7 zt^l)E<&~9*camFHUImlIi)yBukFu!<+DyEYShDi6m^@xoF=>31od8vt_*Lezs``Gw zsyNcosor$+oHJGKU29wD0egID<-bu7sd6`UBFDjWdJ{;c< zAQCl2la-gvWbvY!>E^@p*bA2mqM3Ln(PZVP8&61OvU*X;r19YmY-lcK^eZfqm0#(q z>U}^p-xsJAX`LNGDVcaDxn0000X)s_s z#KIwr!I-V$V11^#dUpKLjjy-9DY|#Kuw+Jjzzl{&rWQ^CH3uAwt;hGhNWR~>|B3$l qhyP2a-~C|qG6v`^C}^l(vC57yE3)EC^YOwKkf5ilpUXO@geCx+nr^EA literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/hydroponics.rsi/panel_closing.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/hydroponics.rsi/panel_closing.png new file mode 100644 index 0000000000000000000000000000000000000000..db7be0bc4a0ec0b2bc29e8718fb6b71796846f16 GIT binary patch literal 445 zcmeAS@N?(olHy`uVBq!ia0vp^2|(qk=b{5eiK-()1~xQ&@cMV`(mao8yQ?TZq;#^Y}m${ zacWZ!Yev-i>$j948lYsxftl|YY`yljZkp{(pFL*+-lj#WWzI6YweB*{ESZG)8eLCP zH-4D=_wruJUKQWqugks*3w-~bxAmsS_S>R@6K&4#1!`fty>^f8^xkc+O+xqazTJA; z{=7~2>uGDRIhyR%SJ)ONH}BrkKUz=f@~-S!d-avVtb5`KJrkcF_ZOUaf4N)v?bouY zpX0AZna`Cr-@$dKByUdGcPkF5{Og%j`&-%%FXZlavSVWw{8-KzzB@7SM0TXvt!o+A zif+H$q2jsc@9*!WwR0M*e5Y<-(ETyu&`qBj{lx9nl5Os{*Qk05m8bu?%XoF&`KQ?? l*%zfe7FQS8+W~`WRsIyAi(3!btSA5lf~TvW%Q~loCIEIM%9sEE literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/hydroponics.rsi/panel_open.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/hydroponics.rsi/panel_open.png new file mode 100644 index 0000000000000000000000000000000000000000..24eb2aedc2248aeb772b38f63ff992254e7aaec0 GIT binary patch literal 315 zcmV-B0mS}^P)G_@Zv*NK(#C83< z0hCg#mPY_q%Og#e`P2l!*GQEjpT`0MYBKbMv^%3TIE=g7KF`WXCR28pn>(x2n zemoXytpJ?bfcIZ;wOEjBHdt%rI!S!%PGhZ=2c^1AoGrxJR_5RoDx&OEP+E*gAHf&mPbH>ZE8FCH9e&*rpCoP%1 zIy_fR`1DT4EhW}ImG2+Fy>#^EcBOlIu{N4r8M|lHdv8DdMa^XX`Q)41s%D;5@l3t_ z>U!DiCu(!NfiicFek|lsbn*16WPNgF)9u86nlDcO+<9uZb*sRm>zlTKo#3wDtk_cV zGUiQg0fX*;t18(yxo?DbZh3Nv5#oCg`Gddm{r7*~nV;{o)~0;#=kiD}oLj`YgzrYV zCx61j+EYJuRBRcZ$AIaEWtl7E0M--(oM3v-T6o|50rvB z?(X|$_9K~q!b>Jme`5^XKVF&j%`2QtMsN-@c!MQ;uYX{&xPXV-MV4h*a7^*H)mTo% z^duKBlw8QrI7#Az6a!+!k42gRM*{jVXw(2^)BtAG0A@rO5W6r+TTo*dR0c>itn&u= ziYhf*#29dhKzXbye)sb`x`T#9jF|@skRQx^J~1)&r}u;k?=m8#VH_qLszE1c7I|*U z-vi17+kNaSpCz%9yQ#rS&sN2x0`#dRVZ$Zo3 z(YozxD(tDJ*Nd^#9ngM11*`#hZL|qqUX-aA#5S}G^!n=WLLU@GQ4~c{6dSK|xP5Tx z!-H@vnhtn%y49-Lc3NyR!WG{&^FjpmIbAy+o5nPrx)V}}E%fz`bB+BtcI@^)8^rTf zBx((Ky3EXU1aLM2IGxVm^KA+58-UdY;QHA(FXNaPN!aD?zV8}<6&DioA6qwm%&S`B zG(?rf)v;@BC^IYu=$f%ZGhhqXw5SF!qXsa;V!%*uXSl{qZh&O*G5ePMUQntINQ83i z$upoRb}H)fv5TKDu*ZP$-hvmY3!Atq6ENBh(WYFFM67|7l05p#?E1nmayZKasmvEs z4%uF#@2=U$hCc&#<3^>qaoRUjD5t(Q@!@5>eLn%YPa&y@Wk6F&Jf;Amr=S&p`TF~H zKQmyzZBbK@-3j_NfaCqFrZteLVgLD`ViBgsl+FQ!832*%0DhkaTq4i015y-4Q4~c{ f6h%=KHvsSpwHV1KmpgiI00000NkvXXu0mjf++aJ5 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/hydroponics.rsi/sparks_broken.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/hydroponics.rsi/sparks_broken.png new file mode 100644 index 0000000000000000000000000000000000000000..fb5d774588ae44eab5608571cb6aafad7375e158 GIT binary patch literal 183 zcmeAS@N?(olHy`uVBq!ia0vp^2|(DFD66%%n7hj|c25u0=Hbzuz>&Md dbBcZ?)Aw7<0^jOhxdW|Y@O1TaS?83{1ORW&Jrn={ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/hydroponics.rsi/sparks_damaged.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/hydroponics.rsi/sparks_damaged.png new file mode 100644 index 0000000000000000000000000000000000000000..f16a028dee5bbe41a7f4e35f686043e8a112ce4e GIT binary patch literal 184 zcmeAS@N?(olHy`uVBq!ia0vp^2_VeK3?y%aJ*@^(YymzYu0Z<#e`9lQK{p_au_VYZ zn8D%MjWi%9!PCVtL_+fI!HvAl4m=D8Hh=XH6ZQR;XyVo{y01gP^_0k+pXD$8l*-N4 z&iUk!V5<=?maE{?*yyS)-udN6;H*Pi5*L(-Fs)pAdDY$x8SUGCM{GTG-~v& dN}IerjGt7Q1>7HnEC$-e;OXk;vd$@?2>`@EK-2&L literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/hydroponics.rsi/sparks_open.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/hydroponics.rsi/sparks_open.png new file mode 100644 index 0000000000000000000000000000000000000000..630eabb976ecf11fa59ba29f03502b02bde399aa GIT binary patch literal 175 zcmeAS@N?(olHy`uVBq!ia0vp^2|(GM)~O;5D{Ad0LZe;7N97KJC6BX-upNVgWUu;=WLfz+qP_d4j_bJ3vh=hfa5r9 z0qVN81qdO4*#ozUc?-;6LK?t17pG~m0|2;<_}}aJ8%Xzkw*de?p>!O_N2;HSWO<%5 ub^zoJEX!gGaL3n-QrC61fn;4*wm#k_G(h}nBOLz#0000 Date: Wed, 2 Oct 2024 05:34:42 +0000 Subject: [PATCH 25/94] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index a89e8ed4ce..d2510cbac2 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: Errant - changes: - - message: Players are now notified when trying to insert an incompatible magazine - into a gun. - type: Add - id: 6972 - time: '2024-07-23T06:36:06.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29046 - author: TheKittehJesus changes: - message: The Syndicate Assault Borg can now wield their double esword @@ -3938,3 +3930,10 @@ id: 7471 time: '2024-10-02T05:27:01.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32560 +- author: BackeTako + changes: + - message: New hydroponics doors + type: Add + id: 7472 + time: '2024-10-02T05:33:35.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32575 From 542817807dbcf2b482623b776811a2c9eee0d0cb Mon Sep 17 00:00:00 2001 From: TakoDragon <69509841+BackeTako@users.noreply.github.com> Date: Wed, 2 Oct 2024 07:35:48 +0200 Subject: [PATCH 26/94] Red circuit floor (#32557) * red circuit added * index colour begone --- Resources/Locale/en-US/tiles/tiles.ftl | 1 + .../Entities/Objects/Misc/tiles.yml | 24 ++++++++++++++++++ .../Entities/Structures/Machines/lathe.yml | 1 + Resources/Prototypes/Recipes/Lathes/misc.yml | 7 +++++ .../Prototypes/Stacks/floor_tile_stacks.yml | 6 +++++ Resources/Prototypes/Tiles/floors.yml | 12 +++++++++ .../Textures/Objects/Tiles/tile.rsi/meta.json | 11 ++++++++ .../Tiles/tile.rsi/rcircuit-inhand-left.png | Bin 0 -> 384 bytes .../Tiles/tile.rsi/rcircuit-inhand-right.png | Bin 0 -> 401 bytes .../Objects/Tiles/tile.rsi/rcircuit.png | Bin 0 -> 429 bytes Resources/Textures/Tiles/attributions.yml | 2 +- Resources/Textures/Tiles/blue_circuit.png | Bin 360 -> 769 bytes Resources/Textures/Tiles/green_circuit.png | Bin 360 -> 846 bytes Resources/Textures/Tiles/red_circuit.png | Bin 0 -> 774 bytes 14 files changed, 63 insertions(+), 1 deletion(-) create mode 100644 Resources/Textures/Objects/Tiles/tile.rsi/rcircuit-inhand-left.png create mode 100644 Resources/Textures/Objects/Tiles/tile.rsi/rcircuit-inhand-right.png create mode 100644 Resources/Textures/Objects/Tiles/tile.rsi/rcircuit.png create mode 100644 Resources/Textures/Tiles/red_circuit.png diff --git a/Resources/Locale/en-US/tiles/tiles.ftl b/Resources/Locale/en-US/tiles/tiles.ftl index 35cea19f78..b520235614 100644 --- a/Resources/Locale/en-US/tiles/tiles.ftl +++ b/Resources/Locale/en-US/tiles/tiles.ftl @@ -90,6 +90,7 @@ tiles-reinforced-glass-floor = reinforced glass floor tiles-metal-foam = metal foam floor tiles-green-circuit-floor = green circuit floor tiles-blue-circuit-floor = blue circuit floor +tiles-red-circuit-floor = red circuit floor tiles-snow = snow tiles-snow-plating = snowed plating tiles-snow-dug = dug snow diff --git a/Resources/Prototypes/Entities/Objects/Misc/tiles.yml b/Resources/Prototypes/Entities/Objects/Misc/tiles.yml index 1e5f2573fd..9032268958 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/tiles.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/tiles.yml @@ -1286,6 +1286,22 @@ - type: Stack stackType: FloorTileBCircuit +- type: entity + name: red circuit floor + parent: FloorTileItemBase + id: FloorTileItemRCircuit + components: + - type: Sprite + state: rcircuit + - type: Item + heldPrefix: rcircuit + - type: FloorTile + outputs: + - Plating + - FloorRedCircuit + - type: Stack + stackType: FloorTileRCircuit + # Circuits stacks - type: entity @@ -1304,6 +1320,14 @@ - type: Stack count: 4 +- type: entity + parent: FloorTileItemRCircuit + id: FloorTileItemRCircuit4 + suffix: 4 + components: + - type: Stack + count: 4 + # Terrain - type: entity name: grass tile diff --git a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml index 666550cd8a..846441cb39 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml @@ -442,6 +442,7 @@ - UniformPrinterMachineCircuitboard - FloorGreenCircuit - FloorBlueCircuit + - FloorRedCircuit - MicrowaveMachineCircuitboard - ReagentGrinderMachineCircuitboard - ElectricGrillMachineCircuitboard diff --git a/Resources/Prototypes/Recipes/Lathes/misc.yml b/Resources/Prototypes/Recipes/Lathes/misc.yml index 0f043df9f8..a0e74fc34e 100644 --- a/Resources/Prototypes/Recipes/Lathes/misc.yml +++ b/Resources/Prototypes/Recipes/Lathes/misc.yml @@ -199,6 +199,13 @@ materials: Steel: 100 +- type: latheRecipe + id: FloorRedCircuit + result: FloorTileItemRCircuit4 + completetime: 2 + materials: + Steel: 100 + - type: latheRecipe id: HandheldStationMap result: HandheldStationMapEmpty diff --git a/Resources/Prototypes/Stacks/floor_tile_stacks.yml b/Resources/Prototypes/Stacks/floor_tile_stacks.yml index de03fcba19..65fd672e1a 100644 --- a/Resources/Prototypes/Stacks/floor_tile_stacks.yml +++ b/Resources/Prototypes/Stacks/floor_tile_stacks.yml @@ -538,6 +538,12 @@ spawn: FloorTileItemBCircuit maxCount: 30 +- type: stack + id: FloorTileRCircuit + name: red-circuit floor + spawn: FloorTileItemRCircuit + maxCount: 30 + - type: stack id: FloorTileGrass name: grass floor tile diff --git a/Resources/Prototypes/Tiles/floors.yml b/Resources/Prototypes/Tiles/floors.yml index 2d552cc33e..c98ee6d582 100644 --- a/Resources/Prototypes/Tiles/floors.yml +++ b/Resources/Prototypes/Tiles/floors.yml @@ -1422,6 +1422,18 @@ itemDrop: FloorTileItemBCircuit heatCapacity: 10000 +- type: tile + id: FloorRedCircuit + name: tiles-red-circuit-floor + sprite: /Textures/Tiles/red_circuit.png + baseTurf: Plating + isSubfloor: false + deconstructTools: [ Prying ] + footstepSounds: + collection: FootstepHull + itemDrop: FloorTileItemRCircuit + heatCapacity: 10000 + # Terrain - type: tile id: FloorAsphalt diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/meta.json b/Resources/Textures/Objects/Tiles/tile.rsi/meta.json index 7db50200ed..7562d0f9b1 100644 --- a/Resources/Textures/Objects/Tiles/tile.rsi/meta.json +++ b/Resources/Textures/Objects/Tiles/tile.rsi/meta.json @@ -159,6 +159,9 @@ { "name": "bcircuit" }, + { + "name": "rcircuit" + }, { "name": "carpet-black" }, @@ -472,6 +475,14 @@ "name": "gold-inhand-left", "directions": 4 }, + { + "name": "rcircuit-inhand-right", + "directions": 4 + }, + { + "name": "rcircuit-inhand-left", + "directions": 4 + }, { "name": "reinforced-inhand-right", "directions": 4 diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/rcircuit-inhand-left.png b/Resources/Textures/Objects/Tiles/tile.rsi/rcircuit-inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..06a279199c033322d0941b5ead62a4d0ac598670 GIT binary patch literal 384 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D%ztvp>ELn`LH zy=9np$U&s#q5G8C3pB1rxIAuBn$E!Ga@2A~0M{gA6(_GQlfW9*=^Pg)7VC&kbWPlF z{q&7<|EEs-Ya_LG%UNS)pt%eT2mW7LU7av%Sz4Oe%)Y-bZ=U|O^-I0ezVdUif8WK< zJb3-ooX;mUHr^}~H%Z@iH`2&Ur}$ia-R@bpxM%nruiHN(x_;-TvjqYs+V<-8O0Pto zvV57YeOv$8w=aJ$cUZbE64@Zh_wSH-qTj^d63+Gf?A3KO2EYGg9hswaF^^I8r|tzc zkp+AU+!$XmWRc9c_KWGjlT}Eiq4O*Y)~=eD3M$=d#Wzp$Py>W20RF literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/rcircuit-inhand-right.png b/Resources/Textures/Objects/Tiles/tile.rsi/rcircuit-inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..44703f72f7df667297f0d6785f773c677b4baba8 GIT binary patch literal 401 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D%zy**tVLn`LH zy=9wq*g=5xf#(O`p2yieg^Lfl>Luz!jyp%h-aXs=;p^|0A1!y~uQ0p))%3r6sQc&pQQ|j4 zx2CN2@mqE9mbr=g)d_2jZibe=j@#U@>_qA=`xAvbe_VVqA$QyB54Ppfn;TyKQ}CU5 z`tR-PbjIHgPUeag#OSRP_wH2xekAIT&HSf{cEXjFZ*^kiZFVm9KfXz4_ZgO@t1g;; z7L#BWYv5}*#&m)4LIi^q!>pf5SJ+?M@8Vx<#7%h1cZfO)}2h7tx76lGG}4(txe zj4v26K#Ig3|`Px$XGugsR9J=WRy$6^KoEVPR8FYHmyRAKfnBp0H3(>buyuTyD<_xw-iAokkdNW z6`pQy6g#cQx;ncDoE^H(v)NTgx&=0bTt#mWl-+Q#{UOhM$NLGmzR;HeI0TE}?SW!f zpzH=^Op>MIlO#)Fll?;A%z#OV(xycUH8b~zS7DR=m@7LW1n3$Xuhy{_QkbH`wA?;{Uo9TODCMQ)s2fIUk{_`H`11J?s|M%HHyOsv5YcSV z#&9-h2cG-=JU`!Lf#=Q!ZI%x_SN)UWly++(GRgih-(--+UJ|&RpM24iwixqal$Nl7 zh~m6pER0(5iht&t3|evs?CSUib8%j`-{sk%8x` ztvP1K@3bH)k5N0ud6DGDo)}8E*!Gc#Spz|~-EzaMN<+ga4Wrb~#!Ha@m2A{zpfoAq)Jx}4eCH`QF(RP zH`?ubJRP7mtu$E?S2E`UVn9`a)G=Tzsu@Ut$SWJoUn~F|#v&(eHR*k|q~y)*6J0$l+kwJ2UKnw(xGQJxb9uU>eJt=s>qWyr({{Jf(t?f&4i8xR-j9Stl zA~Wlzv&fB)%ExZ3qUv7u@};63Jvwv^py5!t+9*}SaLR;))_UjOgbW5hP++iqIC2JsW$c-Z2hZ-0k=WT&0ME8`c>Wo# r?wP|&05_G*kLriseRId>Kl1nia=KE49-V9C00000NkvXXu0mjfDD<45 diff --git a/Resources/Textures/Tiles/green_circuit.png b/Resources/Textures/Tiles/green_circuit.png index 1628c20ae775e19e5302c426977026e22dd425d0..0638d7bde5c123877451a89155723f532bd9f837 100644 GIT binary patch delta 835 zcmV-J1HAm`0?r1I7=H)?0002|8116~0004VQb$4nuFf3k0009BNkl1atYFbuo) z=`K=67M_LK*>C>W`S|GrMhaE|E>Lxm&P=l|R`w3NGeX@BsycfKOdb>I0*FWPsP z4#<?6r}xikV51~GC2~)HFYa(m2M&XCPf9Zu+q10{&b1$Np%evt- zg;A5UV*rRc;Iy`6rUAuis#u8JLOi9vWz#)NLUe4>EBm=zs_ImY19s|2XGe!U(azPQ z+14ftjNTx@8WwORb1vw3C}yc-IKYSjV=)*c~ZqjSauS1NnsUM7;a%A#2v5QGD@SF77ZomA- zAMZKRRwOP3W0>ma{HXvmb(<%iong2fgBOUcq4}WzJRXn08bF>5^-UK|h@_IYiV@K8 zl00`YL}!+kwJ2UKnw(xGQJxb9uU>eJt=s>qWyr({{Jf(t?f&4i8xR-j9Stl zA~Wlzv&fB)%ExZ3qUv7u@};63Jvwv^py5!t+9*}SaLR;))_UjOgbW5hP++iqIC2JsW$c-Z2hZ-0k=WT&0ME8`c>Wo# r?wP|&05_G*kLriseRId>Kl1nia=KE49-V9C00000NkvXXu0mjf!b_RY diff --git a/Resources/Textures/Tiles/red_circuit.png b/Resources/Textures/Tiles/red_circuit.png new file mode 100644 index 0000000000000000000000000000000000000000..44e33bdee31b020f23aa1faaf34c5a65ba79accc GIT binary patch literal 774 zcmV+h1Nr=kP)Px%z)3_wR7i={R=tkeKoI^wu0X<=&gf*(08JvLf{>RmmY>6+@N-Zgo&%kDi9o1M z$~^$GxTC`uDc4?#!Q)}p5E3axMk{N^JF`3gvz1=IiyWMmgDa38Qm5stSDVkH0g+OQ zNrkUh8;h`7t!_6PkBjBC3xd$!zwQZNuQoyG^VZ{H8H9dzJkbe+zwCCjYtcQEI3k)6 z0JG_w$k}x6bv(Xc5=R~|o6ecv>v+jF@j4#kz{A_yPXOrkyIX6GMouG#u!^(kJlQ4} zI?)BhR0_mBi6a?Rw)Jtbq>JeUc{HDCIW0#rX%FPaWyg~wrCUt<=z2=%YI;anBk7hK zW|bNmgnkhEW;PZ<{!=iumPavC1&|$2bRmaGxyb8ycC#VLNgR>ZG9FZ?D##W97AA)> zu9PL8O5K%1$g$_-&h@jLmct!FhJh_D@+Yt4AoNvim6N4H)%1|c_^5AoJkjDl0bu{S z=R{HtVS`w$$}l(l9^h_zKY!)@e)hkDe{MlFJ*2f-y;iHcZFjxe48IKJ*KNDBt0alp zZMzDgMN-6B1zLf(w9A|GU>y46(7!ew zig`dVi6fQ%+NOLS$g(nJ6=_i&0KjE$fYEKtN-n8KqpcMdn7sk2vE&wTC6lH!qN()E zKwh*8sf%g`a^Pgglk5$pZMDP#QYU{CT>Lb}r1#a9;=OB9>@5j@# zdRWMpPxkbzB<0BDaZ)k|d;KouvP@w!!TFst91VC&v8n1Q>L5Fwg3vcJ4A*0D1K1jx z9~OX@-41wwNELc$LL`-ZRh$*de-;TQo>g2l|NlJr1%`q<>F8&d?f?J)07*qoM6N<$ Ef&mt6G5`Po literal 0 HcmV?d00001 From c4c786f08d71bdac6c1fcb8841c4f4901e7304d3 Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 2 Oct 2024 05:36:54 +0000 Subject: [PATCH 27/94] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index d2510cbac2..c8caa34c37 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: TheKittehJesus - changes: - - message: The Syndicate Assault Borg can now wield their double esword - type: Fix - id: 6973 - time: '2024-07-23T08:13:18.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30229 - author: Scribbles0 changes: - message: Handless mobs can no longer wipe devices like positronic brains or pAIs. @@ -3937,3 +3930,10 @@ id: 7472 time: '2024-10-02T05:33:35.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32575 +- author: BackeTako + changes: + - message: Red circuit tile + type: Add + id: 7473 + time: '2024-10-02T05:35:48.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32557 From dd12ac1f8a3482a4b36d72780511cb0c00838072 Mon Sep 17 00:00:00 2001 From: ArchRBX <5040911+ArchRBX@users.noreply.github.com> Date: Wed, 2 Oct 2024 07:17:57 +0100 Subject: [PATCH 28/94] MedTek Cartridge (#32450) * initial commit * adds cartridge to cmo's locker * tidies up yml, adds default scanner sound, makes it so the silent property silences the scanner sound too * fixes ert medic pda not having it preinstalled * adds attribution * removes redundant dependencies * fix agent pda --------- Co-authored-by: archrbx --- .../Cartridges/MedTekCartridgeComponent.cs | 6 +++ .../Cartridges/MedTekCartridgeSystem.cs | 31 ++++++++++++++ .../Components/HealthAnalyzerComponent.cs | 2 +- .../Medical/HealthAnalyzerSystem.cs | 5 +-- .../en-US/cartridge-loader/cartridges.ftl | 2 + .../Catalog/Fills/Lockers/heads.yml | 1 + .../Entities/Objects/Devices/cartridges.yml | 19 +++++++++ .../Entities/Objects/Devices/pda.yml | 40 ++++++++++-------- .../Devices/cartridge.rsi/cart-med.png | Bin 0 -> 289 bytes .../Objects/Devices/cartridge.rsi/meta.json | 5 ++- 10 files changed, 89 insertions(+), 22 deletions(-) create mode 100644 Content.Server/CartridgeLoader/Cartridges/MedTekCartridgeComponent.cs create mode 100644 Content.Server/CartridgeLoader/Cartridges/MedTekCartridgeSystem.cs create mode 100644 Resources/Textures/Objects/Devices/cartridge.rsi/cart-med.png diff --git a/Content.Server/CartridgeLoader/Cartridges/MedTekCartridgeComponent.cs b/Content.Server/CartridgeLoader/Cartridges/MedTekCartridgeComponent.cs new file mode 100644 index 0000000000..1a49b4d1f7 --- /dev/null +++ b/Content.Server/CartridgeLoader/Cartridges/MedTekCartridgeComponent.cs @@ -0,0 +1,6 @@ +namespace Content.Server.CartridgeLoader.Cartridges; + +[RegisterComponent] +public sealed partial class MedTekCartridgeComponent : Component +{ +} diff --git a/Content.Server/CartridgeLoader/Cartridges/MedTekCartridgeSystem.cs b/Content.Server/CartridgeLoader/Cartridges/MedTekCartridgeSystem.cs new file mode 100644 index 0000000000..4d1b71dad0 --- /dev/null +++ b/Content.Server/CartridgeLoader/Cartridges/MedTekCartridgeSystem.cs @@ -0,0 +1,31 @@ +using Content.Server.Medical.Components; +using Content.Shared.CartridgeLoader; + +namespace Content.Server.CartridgeLoader.Cartridges; + +public sealed class MedTekCartridgeSystem : EntitySystem +{ + [Dependency] private readonly CartridgeLoaderSystem _cartridgeLoaderSystem = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnCartridgeAdded); + SubscribeLocalEvent(OnCartridgeRemoved); + } + + private void OnCartridgeAdded(Entity ent, ref CartridgeAddedEvent args) + { + var healthAnalyzer = EnsureComp(args.Loader); + } + + private void OnCartridgeRemoved(Entity ent, ref CartridgeRemovedEvent args) + { + // only remove when the program itself is removed + if (!_cartridgeLoaderSystem.HasProgram(args.Loader)) + { + RemComp(args.Loader); + } + } +} diff --git a/Content.Server/Medical/Components/HealthAnalyzerComponent.cs b/Content.Server/Medical/Components/HealthAnalyzerComponent.cs index 85956b6029..34b7af0212 100644 --- a/Content.Server/Medical/Components/HealthAnalyzerComponent.cs +++ b/Content.Server/Medical/Components/HealthAnalyzerComponent.cs @@ -54,7 +54,7 @@ public sealed partial class HealthAnalyzerComponent : Component /// Sound played on scanning end /// [DataField] - public SoundSpecifier? ScanningEndSound; + public SoundSpecifier ScanningEndSound = new SoundPathSpecifier("/Audio/Items/Medical/healthscanner.ogg"); /// /// Whether to show up the popup diff --git a/Content.Server/Medical/HealthAnalyzerSystem.cs b/Content.Server/Medical/HealthAnalyzerSystem.cs index 82f8075902..60a492a755 100644 --- a/Content.Server/Medical/HealthAnalyzerSystem.cs +++ b/Content.Server/Medical/HealthAnalyzerSystem.cs @@ -13,11 +13,9 @@ using Content.Shared.MedicalScanner; using Content.Shared.Mobs.Components; using Content.Shared.Popups; -using Content.Shared.PowerCell; using Robust.Server.GameObjects; using Robust.Shared.Audio.Systems; using Robust.Shared.Containers; -using Robust.Shared.Player; using Robust.Shared.Timing; namespace Content.Server.Medical; @@ -104,7 +102,8 @@ private void OnDoAfter(Entity uid, ref HealthAnalyzerDo if (args.Handled || args.Cancelled || args.Target == null || !_cell.HasDrawCharge(uid, user: args.User)) return; - _audio.PlayPvs(uid.Comp.ScanningEndSound, uid); + if (!uid.Comp.Silent) + _audio.PlayPvs(uid.Comp.ScanningEndSound, uid); OpenUserInterface(args.User, uid); BeginAnalyzingEntity(uid, args.Target.Value); diff --git a/Resources/Locale/en-US/cartridge-loader/cartridges.ftl b/Resources/Locale/en-US/cartridge-loader/cartridges.ftl index 804da0992f..ceeac1be3c 100644 --- a/Resources/Locale/en-US/cartridge-loader/cartridges.ftl +++ b/Resources/Locale/en-US/cartridge-loader/cartridges.ftl @@ -22,6 +22,8 @@ log-probe-label-number = # astro-nav-program-name = AstroNav +med-tek-program-name = MedTek + # Wanted list cartridge wanted-list-program-name = Wanted list wanted-list-label-no-records = It's all right, cowboy diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml index 2ca2b0f740..82660f8f13 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml @@ -219,6 +219,7 @@ - id: MedicalTechFabCircuitboard - id: MedkitFilled - id: RubberStampCMO + - id: MedTekCartridge # Hardsuit table, used for suit storage as well - type: entityTable diff --git a/Resources/Prototypes/Entities/Objects/Devices/cartridges.yml b/Resources/Prototypes/Entities/Objects/Devices/cartridges.yml index aee26b0776..0ab0b687dc 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/cartridges.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/cartridges.yml @@ -117,6 +117,25 @@ - type: StealTarget stealGroup: WantedListCartridge +- type: entity + parent: BaseItem + id: MedTekCartridge + name: MedTek cartridge + description: A program that provides medical diagnostic tools. + components: + - type: Sprite + sprite: Objects/Devices/cartridge.rsi + state: cart-med + - type: Icon + sprite: Objects/Devices/cartridge.rsi + state: cart-med + - type: Cartridge + programName: med-tek-program-name + icon: + sprite: Objects/Specific/Medical/healthanalyzer.rsi + state: icon + - type: MedTekCartridge + - type: entity parent: BaseItem id: AstroNavCartridge diff --git a/Resources/Prototypes/Entities/Objects/Devices/pda.yml b/Resources/Prototypes/Entities/Objects/Devices/pda.yml index c6952fdd6a..dfc1c6fa5b 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/pda.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/pda.yml @@ -131,12 +131,13 @@ id: BaseMedicalPDA abstract: true components: - - type: ItemToggle - onUse: false - - type: HealthAnalyzer - scanDelay: 1 - scanningEndSound: - path: "/Audio/Items/Medical/healthscanner.ogg" + - type: CartridgeLoader + uiKey: enum.PdaUiKey.Key + preinstalled: + - CrewManifestCartridge + - NotekeeperCartridge + - NewsReaderCartridge + - MedTekCartridge - type: entity parent: BasePDA @@ -169,7 +170,7 @@ parent: BaseMedicalPDA id: MedicalInternPDA name: medical intern PDA - description: Why isn't it white? Has a built-in health analyzer. + description: Why isn't it white? components: - type: Pda id: MedicalInternIDCard @@ -569,7 +570,7 @@ parent: BaseMedicalPDA id: CMOPDA name: chief medical officer PDA - description: Extraordinarily shiny and sterile. Has a built-in health analyzer. + description: Extraordinarily shiny and sterile. components: - type: Pda id: CMOIDCard @@ -585,7 +586,7 @@ parent: BaseMedicalPDA id: MedicalPDA name: medical PDA - description: Shiny and sterile. Has a built-in health analyzer. + description: Shiny and sterile. components: - type: Pda id: MedicalIDCard @@ -612,7 +613,7 @@ parent: BaseMedicalPDA id: ParamedicPDA name: paramedic PDA - description: Shiny and sterile. Has a built-in rapid health analyzer. + description: Shiny and sterile. components: - type: Pda id: ParamedicIDCard @@ -905,14 +906,18 @@ id: ERTMedicPDA name: ERT Medic PDA suffix: Medic - description: Red for firepower, it's shiny and sterile. Has a built-in rapid health analyzer. + description: Red for firepower, it's shiny and sterile. components: - type: Pda id: ERTMedicIDCard - - type: HealthAnalyzer - scanDelay: 1 - scanningEndSound: - path: "/Audio/Items/Medical/healthscanner.ogg" + - type: CartridgeLoader + uiKey: enum.PdaUiKey.Key + preinstalled: + - CrewManifestCartridge + - NotekeeperCartridge + - NewsReaderCartridge + - MedTekCartridge + - WantedListCartridge - type: entity parent: ERTLeaderPDA @@ -1019,7 +1024,7 @@ parent: BaseMedicalPDA id: BrigmedicPDA name: brigmedic PDA - description: I wonder whose pulse is on the screen? I hope he doesnt stop... PDA has a built-in health analyzer. + description: I wonder whose pulse is on the screen? I hope it doesn't stop... components: - type: Pda id: BrigmedicIDCard @@ -1089,7 +1094,7 @@ parent: BaseMedicalPDA id: SeniorPhysicianPDA name: senior physician PDA - description: Smells faintly like iron and chemicals. Has a built-in health analyzer. + description: Smells faintly like iron and chemicals. components: - type: Pda id: SeniorPhysicianIDCard @@ -1145,6 +1150,7 @@ uiKey: enum.PdaUiKey.Key preinstalled: - NotekeeperCartridge + - MedTekCartridge cartridgeSlot: priority: -1 name: Cartridge diff --git a/Resources/Textures/Objects/Devices/cartridge.rsi/cart-med.png b/Resources/Textures/Objects/Devices/cartridge.rsi/cart-med.png new file mode 100644 index 0000000000000000000000000000000000000000..69be9eb42e11831d11bae3da472d4f4e3265f36b GIT binary patch literal 289 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyjKx9jP7LeL$-D$|SkfJR9T^xl z_H+M9WCilI0(?STIXOAi)zzh>q#PU^;^N{g=59|-O*Pti+jjLalY>u{m6Z()3#3%B_W z2ne`dJZPc!^nd;K$rGl97-!CZ%ic0oAY`gpMlFNMRdaTSV|+8K_n)7-CYis5p`xse z)q=^xv+aa;L&t44OG0&Aw39pF%dyP$(^-2}fC28Hc>*SPy Q)-y18y85}Sb4q9e08CtGF8}}l literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Devices/cartridge.rsi/meta.json b/Resources/Textures/Objects/Devices/cartridge.rsi/meta.json index e7415fe1c2..b79f46d08d 100644 --- a/Resources/Textures/Objects/Devices/cartridge.rsi/meta.json +++ b/Resources/Textures/Objects/Devices/cartridge.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from vgstation at https://github.com/vgstation-coders/vgstation13/commit/1cdfb0230cc96d0ba751fa002d04f8aa2f25ad7d and tgstation at tgstation at https://github.com/tgstation/tgstation/commit/0c15d9dbcf0f2beb230eba5d9d889ef2d1945bb8, cart-log made by Skarletto (github), cart-sec made by dieselmohawk (discord), cart-nav made by ArchRBX (github)", + "copyright": "Taken from vgstation at https://github.com/vgstation-coders/vgstation13/commit/1cdfb0230cc96d0ba751fa002d04f8aa2f25ad7d and tgstation at tgstation at https://github.com/tgstation/tgstation/commit/0c15d9dbcf0f2beb230eba5d9d889ef2d1945bb8, cart-log made by Skarletto (github), cart-sec made by dieselmohawk (discord), cart-nav, cart-med made by ArchRBX (github)", "size": { "x": 32, "y": 32 @@ -55,6 +55,9 @@ { "name": "cart-m" }, + { + "name": "cart-med" + }, { "name": "cart-mi" }, From 5a229e7a2bbe0121decf02f83aacaac6589565ed Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 2 Oct 2024 06:19:03 +0000 Subject: [PATCH 29/94] Automatic changelog update --- Resources/Changelog/Changelog.yml | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index c8caa34c37..dbe9731f76 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Scribbles0 - changes: - - message: Handless mobs can no longer wipe devices like positronic brains or pAIs. - type: Fix - id: 6974 - time: '2024-07-23T17:47:08.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30149 - author: Quantus changes: - message: Reagent grinders can no longer auto-grind when unpowered. @@ -3937,3 +3930,14 @@ id: 7473 time: '2024-10-02T05:35:48.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32557 +- author: ArchRBX + changes: + - message: The MedTek PDA cartridge has now been added, providing health analyzer + functionality to PDA's + type: Add + - message: The MedTek cartridge has been added to the CMO locker, and comes preinstalled + on medical PDA's, replacing the built-in analyzer functionality on these PDA's + type: Add + id: 7474 + time: '2024-10-02T06:17:57.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32450 From ea3b14faac15591cdc69feb26991bb4c2ae9eed5 Mon Sep 17 00:00:00 2001 From: Toly65 <88860967+Toly65@users.noreply.github.com> Date: Wed, 2 Oct 2024 10:37:49 +0100 Subject: [PATCH 30/94] Bandaid fix to entityeffects on plant trays (#32576) prevented the bioluminescent and slippery effects from being applied to the plant (and thus the plant tray) --- Resources/Prototypes/Hydroponics/randomMutations.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Resources/Prototypes/Hydroponics/randomMutations.yml b/Resources/Prototypes/Hydroponics/randomMutations.yml index 8f409a5eaf..88df438ce9 100644 --- a/Resources/Prototypes/Hydroponics/randomMutations.yml +++ b/Resources/Prototypes/Hydroponics/randomMutations.yml @@ -3,6 +3,7 @@ mutations: - name: Bioluminescent baseOdds: 0.036 + appliesToPlant: false effect: !type:Glow - name: Sentient baseOdds: 0.0072 @@ -11,6 +12,7 @@ effect: !type:MakeSentient # existing effect. - name: Slippery baseOdds: 0.036 + appliesToPlant: false effect: !type:Slipify - name: ChangeSpecies baseOdds: 0.036 @@ -176,4 +178,4 @@ - name: ChangeHarvest baseOdds: 0.036 persists: false - effect: !type:PlantMutateHarvest \ No newline at end of file + effect: !type:PlantMutateHarvest From 7b39d146d38106c7035f7392d20861c3179bf556 Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 2 Oct 2024 09:38:55 +0000 Subject: [PATCH 31/94] Automatic changelog update --- Resources/Changelog/Changelog.yml | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index dbe9731f76..ea076e32ea 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Quantus - changes: - - message: Reagent grinders can no longer auto-grind when unpowered. - type: Fix - id: 6975 - time: '2024-07-23T21:02:07.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30267 - author: BombasterDS changes: - message: Fixed items disappearing after shelfs and mannequin disassembling @@ -3941,3 +3934,13 @@ id: 7474 time: '2024-10-02T06:17:57.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32450 +- author: Toly65 + changes: + - message: fixed slippery and bioluminescent effects persisting on planters after + the plant has been harvested + type: Fix + - message: removed the slippery and bioluminescent visuals from planters temporararily + type: Remove + id: 7475 + time: '2024-10-02T09:37:49.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32576 From edc83b2fab1fcd81cde9278b5715226565b5dbb2 Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Wed, 2 Oct 2024 12:53:19 +0200 Subject: [PATCH 32/94] cleanup and fix dinky star (#32594) * cleanup dinky star * fix * oh --- .../Entities/Clothing/Neck/misc.yml | 16 +++++++++++++++ .../Entities/Objects/Misc/dinkystar.yml | 19 ------------------ .../{star-equipped.png => equipped-NECK.png} | Bin .../Neck/Misc/dinkystar.rsi/meta.json | 2 +- 4 files changed, 17 insertions(+), 20 deletions(-) delete mode 100644 Resources/Prototypes/Entities/Objects/Misc/dinkystar.yml rename Resources/Textures/Clothing/Neck/Misc/dinkystar.rsi/{star-equipped.png => equipped-NECK.png} (100%) diff --git a/Resources/Prototypes/Entities/Clothing/Neck/misc.yml b/Resources/Prototypes/Entities/Clothing/Neck/misc.yml index 8dfc709bc4..af2af7a420 100644 --- a/Resources/Prototypes/Entities/Clothing/Neck/misc.yml +++ b/Resources/Prototypes/Entities/Clothing/Neck/misc.yml @@ -78,3 +78,19 @@ event: !type:StethoscopeActionEvent checkCanInteract: false priority: -1 + +- type: entity + parent: ClothingNeckBase + id: Dinkystar + name: star sticker + description: A dinky lil star for only the hardest working security officers! It's not even sticky anymore. + components: + - type: Sprite + sprite: Clothing/Neck/Misc/dinkystar.rsi + state: icon + - type: Item + size: Tiny + - type: Tag + tags: + - Trash + - WhitelistChameleon diff --git a/Resources/Prototypes/Entities/Objects/Misc/dinkystar.yml b/Resources/Prototypes/Entities/Objects/Misc/dinkystar.yml deleted file mode 100644 index 7703cf2eea..0000000000 --- a/Resources/Prototypes/Entities/Objects/Misc/dinkystar.yml +++ /dev/null @@ -1,19 +0,0 @@ -- type: entity - parent: ClothingNeckBase - id: Dinkystar - name: star sticker - description: A dinky lil star for only the hardest working security officers! It's not even sticky anymore. - components: - - type: Sprite - sprite: Clothing/Neck/Misc/dinkystar.rsi - state: icon - - type: Clothing - sprite: Clothing/Neck/Misc/dinkystar.rsi - clothingVisuals: - neck: - - state: star-equipped - - type: Item - size: Tiny - - type: Tag - tags: - - Trash diff --git a/Resources/Textures/Clothing/Neck/Misc/dinkystar.rsi/star-equipped.png b/Resources/Textures/Clothing/Neck/Misc/dinkystar.rsi/equipped-NECK.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Misc/dinkystar.rsi/star-equipped.png rename to Resources/Textures/Clothing/Neck/Misc/dinkystar.rsi/equipped-NECK.png diff --git a/Resources/Textures/Clothing/Neck/Misc/dinkystar.rsi/meta.json b/Resources/Textures/Clothing/Neck/Misc/dinkystar.rsi/meta.json index ae8a2141db..0ed35562ca 100644 --- a/Resources/Textures/Clothing/Neck/Misc/dinkystar.rsi/meta.json +++ b/Resources/Textures/Clothing/Neck/Misc/dinkystar.rsi/meta.json @@ -11,7 +11,7 @@ "name": "icon" }, { - "name": "star-equipped", + "name": "equipped-NECK", "directions": 4 } ] From 612732fb84ac5721c90338834690a148c8e2b925 Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 2 Oct 2024 10:54:25 +0000 Subject: [PATCH 33/94] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index ea076e32ea..c2043e95b6 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: BombasterDS - changes: - - message: Fixed items disappearing after shelfs and mannequin disassembling - type: Fix - id: 6976 - time: '2024-07-24T08:57:03.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30313 - author: Cojoke-dot changes: - message: Fix infinite QSI linking range @@ -3944,3 +3937,10 @@ id: 7475 time: '2024-10-02T09:37:49.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32576 +- author: lzk228 + changes: + - message: Star sticker can be used in chameleon menu. + type: Fix + id: 7476 + time: '2024-10-02T10:53:19.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32594 From c55e311c7e599111efd4231937e7d8e49734fc09 Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Wed, 2 Oct 2024 13:23:32 +0200 Subject: [PATCH 34/94] Cleanup pins.yml (#32593) * Cleanup pins.yml * oh my * forgor --- .../Entities/Clothing/Neck/pins.yml | 112 +++++------------- .../Neck/Misc/autismpin.rsi/meta.json | 18 --- .../Neck/Misc/goldautismpin.rsi/meta.json | 18 --- ...aro-equipped.png => aro-equipped-NECK.png} | Bin ...ex-equipped.png => asex-equipped-NECK.png} | Bin .../autism-equipped-NECK.png} | Bin .../{autismpin.rsi => pins.rsi}/autism.png | Bin .../{bi-equipped.png => bi-equipped-NECK.png} | Bin ...gay-equipped.png => gay-equipped-NECK.png} | Bin .../goldautism-equipped-NECK.png} | Bin .../goldautism.png | Bin ...r-equipped.png => inter-equipped-NECK.png} | Bin ...les-equipped.png => les-equipped-NECK.png} | Bin ...bt-equipped.png => lgbt-equipped-NECK.png} | Bin .../Clothing/Neck/Misc/pins.rsi/meta.json | 36 ++++-- ...non-equipped.png => non-equipped-NECK.png} | Bin ...pan-equipped.png => pan-equipped-NECK.png} | Bin ...s-equipped.png => trans-equipped-NECK.png} | Bin 18 files changed, 53 insertions(+), 131 deletions(-) delete mode 100644 Resources/Textures/Clothing/Neck/Misc/autismpin.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Neck/Misc/goldautismpin.rsi/meta.json rename Resources/Textures/Clothing/Neck/Misc/pins.rsi/{aro-equipped.png => aro-equipped-NECK.png} (100%) rename Resources/Textures/Clothing/Neck/Misc/pins.rsi/{asex-equipped.png => asex-equipped-NECK.png} (100%) rename Resources/Textures/Clothing/Neck/Misc/{autismpin.rsi/autism-equipped.png => pins.rsi/autism-equipped-NECK.png} (100%) rename Resources/Textures/Clothing/Neck/Misc/{autismpin.rsi => pins.rsi}/autism.png (100%) rename Resources/Textures/Clothing/Neck/Misc/pins.rsi/{bi-equipped.png => bi-equipped-NECK.png} (100%) rename Resources/Textures/Clothing/Neck/Misc/pins.rsi/{gay-equipped.png => gay-equipped-NECK.png} (100%) rename Resources/Textures/Clothing/Neck/Misc/{goldautismpin.rsi/goldautism-equipped.png => pins.rsi/goldautism-equipped-NECK.png} (100%) rename Resources/Textures/Clothing/Neck/Misc/{goldautismpin.rsi => pins.rsi}/goldautism.png (100%) rename Resources/Textures/Clothing/Neck/Misc/pins.rsi/{inter-equipped.png => inter-equipped-NECK.png} (100%) rename Resources/Textures/Clothing/Neck/Misc/pins.rsi/{les-equipped.png => les-equipped-NECK.png} (100%) rename Resources/Textures/Clothing/Neck/Misc/pins.rsi/{lgbt-equipped.png => lgbt-equipped-NECK.png} (100%) rename Resources/Textures/Clothing/Neck/Misc/pins.rsi/{non-equipped.png => non-equipped-NECK.png} (100%) rename Resources/Textures/Clothing/Neck/Misc/pins.rsi/{pan-equipped.png => pan-equipped-NECK.png} (100%) rename Resources/Textures/Clothing/Neck/Misc/pins.rsi/{trans-equipped.png => trans-equipped-NECK.png} (100%) diff --git a/Resources/Prototypes/Entities/Clothing/Neck/pins.yml b/Resources/Prototypes/Entities/Clothing/Neck/pins.yml index 9f0ff79b20..a7dcf03f28 100644 --- a/Resources/Prototypes/Entities/Clothing/Neck/pins.yml +++ b/Resources/Prototypes/Entities/Clothing/Neck/pins.yml @@ -7,6 +7,10 @@ components: - type: Item size: Tiny + - type: Sprite + sprite: Clothing/Neck/Misc/pins.rsi + - type: Clothing + sprite: Clothing/Neck/Misc/pins.rsi - type: entity parent: ClothingNeckPinBase @@ -15,14 +19,9 @@ description: Be gay do crime. components: - type: Sprite - sprite: Clothing/Neck/Misc/pins.rsi - layers: - - state: lgbt + state: lgbt - type: Clothing - sprite: Clothing/Neck/Misc/pins.rsi - clothingVisuals: - neck: - - state: lgbt-equipped + equippedPrefix: lgbt - type: entity parent: ClothingNeckPinBase @@ -31,14 +30,9 @@ description: Be aro do crime. components: - type: Sprite - sprite: Clothing/Neck/Misc/pins.rsi - layers: - - state: aro + state: aro - type: Clothing - sprite: Clothing/Neck/Misc/pins.rsi - clothingVisuals: - neck: - - state: aro-equipped + equippedPrefix: aro - type: entity parent: ClothingNeckPinBase @@ -47,14 +41,9 @@ description: Be ace do crime. components: - type: Sprite - sprite: Clothing/Neck/Misc/pins.rsi - layers: - - state: asex + state: asex - type: Clothing - sprite: Clothing/Neck/Misc/pins.rsi - clothingVisuals: - neck: - - state: asex-equipped + equippedPrefix: asex - type: entity parent: ClothingNeckPinBase @@ -63,14 +52,9 @@ description: Be bi do crime. components: - type: Sprite - sprite: Clothing/Neck/Misc/pins.rsi - layers: - - state: bi + state: bi - type: Clothing - sprite: Clothing/Neck/Misc/pins.rsi - clothingVisuals: - neck: - - state: bi-equipped + equippedPrefix: bi - type: entity parent: ClothingNeckPinBase @@ -79,14 +63,9 @@ description: Be gay~ do crime. components: - type: Sprite - sprite: Clothing/Neck/Misc/pins.rsi - layers: - - state: gay + state: gay - type: Clothing - sprite: Clothing/Neck/Misc/pins.rsi - clothingVisuals: - neck: - - state: gay-equipped + equippedPrefix: gay - type: entity parent: ClothingNeckPinBase @@ -95,14 +74,9 @@ description: Be intersex do crime. components: - type: Sprite - sprite: Clothing/Neck/Misc/pins.rsi - layers: - - state: inter + state: inter - type: Clothing - sprite: Clothing/Neck/Misc/pins.rsi - clothingVisuals: - neck: - - state: inter-equipped + equippedPrefix: inter - type: entity parent: ClothingNeckPinBase @@ -111,14 +85,9 @@ description: Be lesbian do crime. components: - type: Sprite - sprite: Clothing/Neck/Misc/pins.rsi - layers: - - state: les + state: les - type: Clothing - sprite: Clothing/Neck/Misc/pins.rsi - clothingVisuals: - neck: - - state: les-equipped + equippedPrefix: les - type: entity parent: ClothingNeckPinBase @@ -127,14 +96,9 @@ description: "01100010 01100101 00100000 01100101 01101110 01100010 01111001 00100000 01100100 01101111 00100000 01100011 01110010 01101001 01101101 01100101" components: - type: Sprite - sprite: Clothing/Neck/Misc/pins.rsi - layers: - - state: non + state: non - type: Clothing - sprite: Clothing/Neck/Misc/pins.rsi - clothingVisuals: - neck: - - state: non-equipped + equippedPrefix: non - type: entity parent: ClothingNeckPinBase @@ -143,14 +107,9 @@ description: Be pan do crime. components: - type: Sprite - sprite: Clothing/Neck/Misc/pins.rsi - layers: - - state: pan + state: pan - type: Clothing - sprite: Clothing/Neck/Misc/pins.rsi - clothingVisuals: - neck: - - state: pan-equipped + equippedPrefix: pan - type: entity parent: ClothingNeckPinBase @@ -159,14 +118,9 @@ description: Be trans do crime. components: - type: Sprite - sprite: Clothing/Neck/Misc/pins.rsi - layers: - - state: trans + state: trans - type: Clothing - sprite: Clothing/Neck/Misc/pins.rsi - clothingVisuals: - neck: - - state: trans-equipped + equippedPrefix: trans - type: entity parent: ClothingNeckPinBase @@ -175,14 +129,9 @@ description: Be autism do crime. components: - type: Sprite - sprite: Clothing/Neck/Misc/autismpin.rsi - layers: - - state: autism + state: autism - type: Clothing - sprite: Clothing/Neck/Misc/autismpin.rsi - clothingVisuals: - neck: - - state: autism-equipped + equippedPrefix: autism - type: entity parent: ClothingNeckPinBase @@ -191,11 +140,6 @@ description: Be autism do warcrime. components: - type: Sprite - sprite: Clothing/Neck/Misc/goldautismpin.rsi - layers: - - state: goldautism + state: goldautism - type: Clothing - sprite: Clothing/Neck/Misc/goldautismpin.rsi - clothingVisuals: - neck: - - state: goldautism-equipped + equippedPrefix: goldautism diff --git a/Resources/Textures/Clothing/Neck/Misc/autismpin.rsi/meta.json b/Resources/Textures/Clothing/Neck/Misc/autismpin.rsi/meta.json deleted file mode 100644 index e82672f071..0000000000 --- a/Resources/Textures/Clothing/Neck/Misc/autismpin.rsi/meta.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-NC-4.0", - "copyright": "Terraspark's work", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "autism" - }, - { - "name": "autism-equipped", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Clothing/Neck/Misc/goldautismpin.rsi/meta.json b/Resources/Textures/Clothing/Neck/Misc/goldautismpin.rsi/meta.json deleted file mode 100644 index 6848744ab8..0000000000 --- a/Resources/Textures/Clothing/Neck/Misc/goldautismpin.rsi/meta.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-NC-4.0", - "copyright": "Terraspark's work", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "goldautism" - }, - { - "name": "goldautism-equipped", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Clothing/Neck/Misc/pins.rsi/aro-equipped.png b/Resources/Textures/Clothing/Neck/Misc/pins.rsi/aro-equipped-NECK.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Misc/pins.rsi/aro-equipped.png rename to Resources/Textures/Clothing/Neck/Misc/pins.rsi/aro-equipped-NECK.png diff --git a/Resources/Textures/Clothing/Neck/Misc/pins.rsi/asex-equipped.png b/Resources/Textures/Clothing/Neck/Misc/pins.rsi/asex-equipped-NECK.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Misc/pins.rsi/asex-equipped.png rename to Resources/Textures/Clothing/Neck/Misc/pins.rsi/asex-equipped-NECK.png diff --git a/Resources/Textures/Clothing/Neck/Misc/autismpin.rsi/autism-equipped.png b/Resources/Textures/Clothing/Neck/Misc/pins.rsi/autism-equipped-NECK.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Misc/autismpin.rsi/autism-equipped.png rename to Resources/Textures/Clothing/Neck/Misc/pins.rsi/autism-equipped-NECK.png diff --git a/Resources/Textures/Clothing/Neck/Misc/autismpin.rsi/autism.png b/Resources/Textures/Clothing/Neck/Misc/pins.rsi/autism.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Misc/autismpin.rsi/autism.png rename to Resources/Textures/Clothing/Neck/Misc/pins.rsi/autism.png diff --git a/Resources/Textures/Clothing/Neck/Misc/pins.rsi/bi-equipped.png b/Resources/Textures/Clothing/Neck/Misc/pins.rsi/bi-equipped-NECK.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Misc/pins.rsi/bi-equipped.png rename to Resources/Textures/Clothing/Neck/Misc/pins.rsi/bi-equipped-NECK.png diff --git a/Resources/Textures/Clothing/Neck/Misc/pins.rsi/gay-equipped.png b/Resources/Textures/Clothing/Neck/Misc/pins.rsi/gay-equipped-NECK.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Misc/pins.rsi/gay-equipped.png rename to Resources/Textures/Clothing/Neck/Misc/pins.rsi/gay-equipped-NECK.png diff --git a/Resources/Textures/Clothing/Neck/Misc/goldautismpin.rsi/goldautism-equipped.png b/Resources/Textures/Clothing/Neck/Misc/pins.rsi/goldautism-equipped-NECK.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Misc/goldautismpin.rsi/goldautism-equipped.png rename to Resources/Textures/Clothing/Neck/Misc/pins.rsi/goldautism-equipped-NECK.png diff --git a/Resources/Textures/Clothing/Neck/Misc/goldautismpin.rsi/goldautism.png b/Resources/Textures/Clothing/Neck/Misc/pins.rsi/goldautism.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Misc/goldautismpin.rsi/goldautism.png rename to Resources/Textures/Clothing/Neck/Misc/pins.rsi/goldautism.png diff --git a/Resources/Textures/Clothing/Neck/Misc/pins.rsi/inter-equipped.png b/Resources/Textures/Clothing/Neck/Misc/pins.rsi/inter-equipped-NECK.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Misc/pins.rsi/inter-equipped.png rename to Resources/Textures/Clothing/Neck/Misc/pins.rsi/inter-equipped-NECK.png diff --git a/Resources/Textures/Clothing/Neck/Misc/pins.rsi/les-equipped.png b/Resources/Textures/Clothing/Neck/Misc/pins.rsi/les-equipped-NECK.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Misc/pins.rsi/les-equipped.png rename to Resources/Textures/Clothing/Neck/Misc/pins.rsi/les-equipped-NECK.png diff --git a/Resources/Textures/Clothing/Neck/Misc/pins.rsi/lgbt-equipped.png b/Resources/Textures/Clothing/Neck/Misc/pins.rsi/lgbt-equipped-NECK.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Misc/pins.rsi/lgbt-equipped.png rename to Resources/Textures/Clothing/Neck/Misc/pins.rsi/lgbt-equipped-NECK.png diff --git a/Resources/Textures/Clothing/Neck/Misc/pins.rsi/meta.json b/Resources/Textures/Clothing/Neck/Misc/pins.rsi/meta.json index aab069b547..0619f962df 100644 --- a/Resources/Textures/Clothing/Neck/Misc/pins.rsi/meta.json +++ b/Resources/Textures/Clothing/Neck/Misc/pins.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "PixelTK leaves his mark on upstream, BackeTako made the gay", + "copyright": "PixelTK leaves his mark on upstream, BackeTako made the gay, autism pins by Terraspark", "size": { "x": 32, "y": 32 @@ -11,70 +11,84 @@ "name": "aro" }, { - "name": "aro-equipped", + "name": "aro-equipped-NECK", "directions": 4 }, { "name": "asex" }, { - "name": "asex-equipped", + "name": "asex-equipped-NECK", + "directions": 4 + }, + { + "name": "autism" + }, + { + "name": "autism-equipped-NECK", "directions": 4 }, { "name": "bi" }, { - "name": "bi-equipped", + "name": "bi-equipped-NECK", "directions": 4 }, { "name": "gay" }, { - "name": "gay-equipped", + "name": "gay-equipped-NECK", + "directions": 4 + }, + { + "name": "goldautism" + }, + { + "name": "goldautism-equipped-NECK", "directions": 4 }, { "name": "inter" }, { - "name": "inter-equipped", + "name": "inter-equipped-NECK", "directions": 4 }, { "name": "les" }, { - "name": "les-equipped", + "name": "les-equipped-NECK", "directions": 4 }, { "name": "lgbt" }, { - "name": "lgbt-equipped", + "name": "lgbt-equipped-NECK", "directions": 4 }, { "name": "non" }, { - "name": "non-equipped", + "name": "non-equipped-NECK", "directions": 4 }, { "name": "pan" }, { - "name": "pan-equipped", + "name": "pan-equipped-NECK", "directions": 4 }, { "name": "trans" }, { - "name": "trans-equipped", + "name": "trans-equipped-NECK", "directions": 4 } ] diff --git a/Resources/Textures/Clothing/Neck/Misc/pins.rsi/non-equipped.png b/Resources/Textures/Clothing/Neck/Misc/pins.rsi/non-equipped-NECK.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Misc/pins.rsi/non-equipped.png rename to Resources/Textures/Clothing/Neck/Misc/pins.rsi/non-equipped-NECK.png diff --git a/Resources/Textures/Clothing/Neck/Misc/pins.rsi/pan-equipped.png b/Resources/Textures/Clothing/Neck/Misc/pins.rsi/pan-equipped-NECK.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Misc/pins.rsi/pan-equipped.png rename to Resources/Textures/Clothing/Neck/Misc/pins.rsi/pan-equipped-NECK.png diff --git a/Resources/Textures/Clothing/Neck/Misc/pins.rsi/trans-equipped.png b/Resources/Textures/Clothing/Neck/Misc/pins.rsi/trans-equipped-NECK.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Misc/pins.rsi/trans-equipped.png rename to Resources/Textures/Clothing/Neck/Misc/pins.rsi/trans-equipped-NECK.png From 8b14e2534d2c5a25838efb06c1e8f6c751f9c6b6 Mon Sep 17 00:00:00 2001 From: deltanedas <39013340+deltanedas@users.noreply.github.com> Date: Wed, 2 Oct 2024 11:44:11 +0000 Subject: [PATCH 35/94] fix instigator not existing (#32597) Co-authored-by: deltanedas <@deltanedas:kde.org> --- Resources/Prototypes/GameRules/unknown_shuttles.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/Resources/Prototypes/GameRules/unknown_shuttles.yml b/Resources/Prototypes/GameRules/unknown_shuttles.yml index 7e40e3a1f2..afbd552af3 100644 --- a/Resources/Prototypes/GameRules/unknown_shuttles.yml +++ b/Resources/Prototypes/GameRules/unknown_shuttles.yml @@ -20,6 +20,7 @@ - id: UnknownShuttleMeatZone - id: UnknownShuttleMicroshuttle - id: UnknownShuttleSpacebus + - id: UnknownShuttleInstigator - type: entityTable id: UnknownShuttlesFreelanceTable From 9b4df5b452b6755bbc8902ef2e84a3e5a8460df7 Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 2 Oct 2024 11:45:17 +0000 Subject: [PATCH 36/94] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index c2043e95b6..b037eba772 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Cojoke-dot - changes: - - message: Fix infinite QSI linking range - type: Fix - id: 6977 - time: '2024-07-24T20:57:45.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30332 - author: deltanedas changes: - message: Borgs can no longer unlock the robotics console or other borgs. @@ -3944,3 +3937,10 @@ id: 7476 time: '2024-10-02T10:53:19.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32594 +- author: deltanedas + changes: + - message: Fixed the Instigator shuttle event never happening. + type: Fix + id: 7477 + time: '2024-10-02T11:44:12.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32597 From 8961dd35a581270f22e4431a6d665002e0d9d30d Mon Sep 17 00:00:00 2001 From: FluffMe Date: Wed, 2 Oct 2024 14:00:31 +0200 Subject: [PATCH 37/94] Fix accidental erase of paper contents by spamming save action (#32598) Fix spammable paper save issue --- Content.Client/Paper/UI/PaperWindow.xaml.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Content.Client/Paper/UI/PaperWindow.xaml.cs b/Content.Client/Paper/UI/PaperWindow.xaml.cs index 02c4ed64c3..3522aabc66 100644 --- a/Content.Client/Paper/UI/PaperWindow.xaml.cs +++ b/Content.Client/Paper/UI/PaperWindow.xaml.cs @@ -319,6 +319,8 @@ protected override DragMode GetDragModeFor(Vector2 relativeMousePos) private void RunOnSaved() { + // Prevent further saving while text processing still in + SaveButton.Disabled = true; OnSaved?.Invoke(Rope.Collapse(Input.TextRope)); } From 58c8a07d2cba0510deee5655ec0cfc2fd1c66a30 Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 2 Oct 2024 12:01:37 +0000 Subject: [PATCH 38/94] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index b037eba772..e54ffe7c72 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: deltanedas - changes: - - message: Borgs can no longer unlock the robotics console or other borgs. - type: Tweak - id: 6978 - time: '2024-07-25T03:54:52.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27888 - author: themias changes: - message: Fixed the ripley control panel not loading @@ -3944,3 +3937,10 @@ id: 7477 time: '2024-10-02T11:44:12.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32597 +- author: FluffMe + changes: + - message: Fixed accidental erase of paper contents by spamming save action. + type: Fix + id: 7478 + time: '2024-10-02T12:00:31.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32598 From 4ad4fd42b1164d73ffc9d6d47aef8a1e2cb3b796 Mon Sep 17 00:00:00 2001 From: Flareguy <78941145+Flareguy@users.noreply.github.com> Date: Wed, 2 Oct 2024 07:14:44 -0500 Subject: [PATCH 39/94] Steel tile variantization fix (#32596) steel tile variantization fix --- Resources/Textures/Tiles/steel.png | Bin 952 -> 1354 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/Resources/Textures/Tiles/steel.png b/Resources/Textures/Tiles/steel.png index b7792ef138e88ca6793940d036c5b691d57314e7..e41e7a1804ec882a34898b4c3fe62675bf9a9f03 100644 GIT binary patch delta 920 zcmV;J184lW2g(Yt!2y4RgM*2NhJ=KKczAexe0+a@e~XEUf`Wp8fPjaEg@uHKr@B^i z00009a7bBm000ia000ia0czHX2><{CH%UZ6R9Hv7mW@v2FbsrS4wn5XEcgB|doyEa zV^0>HPC{oPXyVV)Y3ej=J@%JhuWzRkdnPjWmpv01f6u>XO7VZJ{*1U>64>_F3xYHJ zA#lB3Z;XSn?We{gA46pi)SnuE+TWXA)K8uUKDvRo&pR^=RMG&|D5{G6)Oh5jzHL!L z1C>X<=^@{E8K5F3rMjQCBMfuy4B&PX$~bN`Pj%swV@5Xa4+=lIJsO zU_dWLC2jzhSi*nG)4*j67XvpLsCqO|`7n^co`^qG*EdO@K=BWRiGqSAR9alEU#cr=mvj{4+B$g8eqgW%=J-M$^f@Z znASF24HO=Eb#=sZ162?C#)p9%W)E;h8)3$OGd@w^x1TSzq;#Z@lv1CBqIY0hv<# ze17lol7GL8AJ20IYWRem=TGuI{+-VziUs1tc!M#qoaYN4J&}4(c++!U+f+?4CWNyn z3+y~!_}CRO;@ElDb3Q&Kw2fH;*lQzr{^NH%5bJ-?#S5=p9Wy9ddDmNbJI`wY_dWhZ zlCm;je14i4U{~Jt7T(Tt732zqfqtGZ{QR<}pz*G^@OGZ7AWKwW=lR0V2Z|+i-u0Zv zf@y*;O%rzhLs0J%bvn-%e(DVaop(Lwhaf`*XxHGU0VzTS{axG1t!X zh1YyMvjm-YJ?9~aAujo$3Ip>zm4SYqFMPP+3}fY8&v~vGhmzC8<5o9BN?#p)Oc{RgiT2P!%+^E|5`LMhkF6&S~a1UE-;Hs4e8mfAugk@9|C z#~kwezr3Au1onAu_`tiSD2Is+%d)IYG-wX3oZFI1B(7)*q?A%{a|qZdSf*U5Y*^P& zk-n+}FUN-9PGw#MJfZ_LFAeu|8h0Ugtpqn81kMqKR9<>IaB!?rah^*O770v`4$OQL z7;O_Q&p~kWSf!Ca1veiAE|SL(!F}q$!8t@UcsXj7E<7Q2f}2AC#2cEkLL8Plt`K$L z*2(n)Hy?xRGM_TfukYu1EpPeo|AAV60pd Date: Wed, 2 Oct 2024 15:52:14 +0200 Subject: [PATCH 40/94] Disable bioluminescence plant mutations because it breaks the engine (#32561) No fun allowed Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> --- Resources/Prototypes/Hydroponics/randomMutations.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/Resources/Prototypes/Hydroponics/randomMutations.yml b/Resources/Prototypes/Hydroponics/randomMutations.yml index 88df438ce9..77ae2288f3 100644 --- a/Resources/Prototypes/Hydroponics/randomMutations.yml +++ b/Resources/Prototypes/Hydroponics/randomMutations.yml @@ -1,10 +1,11 @@ - type: RandomPlantMutationList id: RandomPlantMutations - mutations: - - name: Bioluminescent - baseOdds: 0.036 - appliesToPlant: false - effect: !type:Glow + mutations: + # disabled until 50 morbillion point lights don't cause the renderer to die + #- name: Bioluminescent + # baseOdds: 0.036 + # appliesToPlant: false + # effect: !type:Glow - name: Sentient baseOdds: 0.0072 appliesToProduce: false From 440742f8f7cebebcf85fdcc17083c28f331a0923 Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 2 Oct 2024 13:53:20 +0000 Subject: [PATCH 41/94] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index e54ffe7c72..1e5ad4afbc 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: themias - changes: - - message: Fixed the ripley control panel not loading - type: Fix - id: 6979 - time: '2024-07-25T05:23:53.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30325 - author: Timur2011 changes: - message: Space adders are now butcherable. @@ -3944,3 +3937,11 @@ id: 7478 time: '2024-10-02T12:00:31.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32598 +- author: PJB3005 + changes: + - message: Removed bioluminescence plant mutations due to it breaking the rendering + engine. + type: Remove + id: 7479 + time: '2024-10-02T13:52:14.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32561 From 2d644095e342cfb5727765210bafce7c339252c0 Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Thu, 3 Oct 2024 02:11:56 +0200 Subject: [PATCH 42/94] Fix borg hands showing up in stripping menu (#32606) * Fix borg hands showing up in stripping menu Borgs can't drop their items anyways, and the amount of hands borgs have causes the UI to just bug out. * Add more checks --- Content.Client/Inventory/StrippableBoundUserInterface.cs | 2 +- Content.Shared/Hands/Components/HandsComponent.cs | 6 ++++++ Content.Shared/Strip/SharedStrippableSystem.cs | 9 +++++++++ .../Entities/Mobs/Cyborgs/base_borg_chassis.yml | 1 + 4 files changed, 17 insertions(+), 1 deletion(-) diff --git a/Content.Client/Inventory/StrippableBoundUserInterface.cs b/Content.Client/Inventory/StrippableBoundUserInterface.cs index 97172f8de8..2ce07758c9 100644 --- a/Content.Client/Inventory/StrippableBoundUserInterface.cs +++ b/Content.Client/Inventory/StrippableBoundUserInterface.cs @@ -98,7 +98,7 @@ public void UpdateMenu() } } - if (EntMan.TryGetComponent(Owner, out var handsComp)) + if (EntMan.TryGetComponent(Owner, out var handsComp) && handsComp.CanBeStripped) { // good ol hands shit code. there is a GuiHands comparer that does the same thing... but these are hands // and not gui hands... which are different... diff --git a/Content.Shared/Hands/Components/HandsComponent.cs b/Content.Shared/Hands/Components/HandsComponent.cs index f218455c0b..b3cb51ae35 100644 --- a/Content.Shared/Hands/Components/HandsComponent.cs +++ b/Content.Shared/Hands/Components/HandsComponent.cs @@ -80,6 +80,12 @@ public sealed partial class HandsComponent : Component [DataField] public DisplacementData? HandDisplacement; + + /// + /// If false, hands cannot be stripped, and they do not show up in the stripping menu. + /// + [DataField] + public bool CanBeStripped = true; } [Serializable, NetSerializable] diff --git a/Content.Shared/Strip/SharedStrippableSystem.cs b/Content.Shared/Strip/SharedStrippableSystem.cs index a68bf755d4..e1c3d8ef0d 100644 --- a/Content.Shared/Strip/SharedStrippableSystem.cs +++ b/Content.Shared/Strip/SharedStrippableSystem.cs @@ -118,6 +118,9 @@ private void StripHand( !Resolve(target, ref targetStrippable)) return; + if (!target.Comp.CanBeStripped) + return; + if (!_handsSystem.TryGetHand(target.Owner, handId, out var handSlot)) return; @@ -349,6 +352,9 @@ private bool CanStripInsertHand( !Resolve(target, ref target.Comp)) return false; + if (!target.Comp.CanBeStripped) + return false; + if (user.Comp.ActiveHand == null) return false; @@ -449,6 +455,9 @@ private bool CanStripRemoveHand( if (!Resolve(target, ref target.Comp)) return false; + if (!target.Comp.CanBeStripped) + return false; + if (!_handsSystem.TryGetHand(target, handName, out var handSlot, target.Comp)) { _popupSystem.PopupCursor(Loc.GetString("strippable-component-item-slot-free-message", ("owner", Identity.Name(target, EntityManager, user)))); diff --git a/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml b/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml index 54bd58af78..c65db8fe19 100644 --- a/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml +++ b/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml @@ -85,6 +85,7 @@ - type: Hands showInHands: false disableExplosionRecursion: true + canBeStripped: false - type: ComplexInteraction - type: IntrinsicRadioReceiver - type: IntrinsicRadioTransmitter From 052d7c4d2e77c1857d742427163ce34428286236 Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 3 Oct 2024 00:13:04 +0000 Subject: [PATCH 43/94] Automatic changelog update --- Resources/Changelog/Changelog.yml | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 1e5ad4afbc..6e273a5042 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,15 +1,4 @@ Entries: -- author: Timur2011 - changes: - - message: Space adders are now butcherable. - type: Add - - message: Snakes now drop snake meat when butchered. - type: Fix - - message: Snakes now appear lying when in critical state. - type: Tweak - id: 6980 - time: '2024-07-25T10:52:18.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29629 - author: Plykiya changes: - message: You can now build atmos gas pipes through things like walls. @@ -3945,3 +3934,10 @@ id: 7479 time: '2024-10-02T13:52:14.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32561 +- author: PJB3005 + changes: + - message: Fixed borg "hands" showing up in their stripping menu. + type: Fix + id: 7480 + time: '2024-10-03T00:11:56.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32606 From c68e5a667ccd2266f4c9f6580a71b1a6361f404b Mon Sep 17 00:00:00 2001 From: ArtisticRoomba <145879011+ArtisticRoomba@users.noreply.github.com> Date: Thu, 3 Oct 2024 03:01:58 -0700 Subject: [PATCH 44/94] Various item contraband fixes (#32614) * fixes current contraband issues: xray cannon, hos's trench coats, stinger grenades * yet another contraband addition --- .../Prototypes/Entities/Clothing/OuterClothing/coats.yml | 6 +++--- .../Entities/Clothing/OuterClothing/wintercoats.yml | 4 ++-- .../Entities/Objects/Weapons/Guns/Battery/battery_guns.yml | 2 +- .../Entities/Objects/Weapons/Throwable/clusterbang.yml | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/coats.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/coats.yml index 973af52221..21c91faadc 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/coats.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/coats.yml @@ -90,7 +90,7 @@ damageCoefficient: 0.9 - type: entity - parent: [ClothingOuterArmorHoS, ClothingOuterStorageBase] + parent: [ClothingOuterArmorHoS, ClothingOuterStorageBase, BaseSecurityCommandContraband] id: ClothingOuterCoatHoSTrench name: head of security's armored trenchcoat description: A greatcoat enhanced with a special alloy for some extra protection and style for those with a commanding presence. @@ -376,7 +376,7 @@ sprite: Clothing/OuterClothing/Coats/windbreaker_paramedic.rsi - type: entity - parent: ClothingOuterStorageBase + parent: [ClothingOuterStorageBase, BaseSyndicateContraband] id: ClothingOuterCoatSyndieCap name: syndicate's coat description: The syndicate's coat is made of durable fabric, with gilded patterns. @@ -387,7 +387,7 @@ sprite: Clothing/OuterClothing/Coats/syndicate/coatsyndiecap.rsi - type: entity - parent: ClothingOuterCoatHoSTrench + parent: [BaseSyndicateContraband, ClothingOuterCoatHoSTrench] # BaseSyndicateContraband as first parent so contraband system takes that as priority, yeah I know id: ClothingOuterCoatSyndieCapArmored name: syndicate's armored coat description: The syndicate's armored coat is made of durable fabric, with gilded patterns. diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/wintercoats.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/wintercoats.yml index e7f5a59472..4bf1ec87fd 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/wintercoats.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/wintercoats.yml @@ -359,7 +359,7 @@ ########################################################## - type: entity - parent: [ClothingOuterArmorHoS, ClothingOuterWinterCoatToggleable, BaseCommandContraband] + parent: [ClothingOuterArmorHoS, ClothingOuterWinterCoatToggleable, BaseSecurityCommandContraband] id: ClothingOuterWinterHoS name: head of security's armored winter coat description: A sturdy, utilitarian winter coat designed to protect a head of security from any brig-bound threats and hypothermic events. @@ -373,7 +373,7 @@ ########################################################## - type: entity - parent: [ClothingOuterWinterCoatToggleable, BaseCommandContraband] + parent: [ClothingOuterWinterCoatToggleable, BaseSecurityCommandContraband] id: ClothingOuterWinterHoSUnarmored name: head of security's winter coat description: A sturdy coat, a warm coat, but not an armored coat. diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml index 2241c4092a..92c952671f 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml @@ -380,7 +380,7 @@ - type: entity name: x-ray cannon - parent: [BaseWeaponBattery, BaseGunWieldable] + parent: [BaseWeaponBattery, BaseGunWieldable, BaseSecurityContraband] id: WeaponXrayCannon description: An experimental weapon that uses concentrated x-ray energy against its target. components: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/clusterbang.yml b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/clusterbang.yml index b4f540ae53..b041349d26 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/clusterbang.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/clusterbang.yml @@ -116,7 +116,7 @@ cluster-payload: !type:Container - type: entity - parent: [GrenadeBase, BaseSyndicateContraband] + parent: [GrenadeBase, BaseSecurityContraband] id: GrenadeStinger name: stinger grenade description: Nothing to see here, please disperse. From 3e85d28e9d930ad509b22323666d210c70e24c8f Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 3 Oct 2024 10:03:05 +0000 Subject: [PATCH 45/94] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 6e273a5042..d3f37b4012 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Plykiya - changes: - - message: You can now build atmos gas pipes through things like walls. - type: Tweak - id: 6981 - time: '2024-07-25T23:26:06.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/28707 - author: Ilya246 changes: - message: Nuclear operative reinforcements now come with full nuclear operative @@ -3941,3 +3934,11 @@ id: 7480 time: '2024-10-03T00:11:56.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32606 +- author: ArtisticRoomba + changes: + - message: X-ray cannons and stinger grenades are now security restricted. HoS's + armored trench coat and its variants are security and command restricted. + type: Fix + id: 7481 + time: '2024-10-03T10:01:58.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32614 From bc76cd876f61839c519bf35bd09bb6a2f23b5c44 Mon Sep 17 00:00:00 2001 From: Vasilis Date: Thu, 3 Oct 2024 12:32:10 +0200 Subject: [PATCH 46/94] Remove sentience from clean and medi bot (#32383) There is no point in these silicon being sentient, they have basically zero role play potential and are not meant to be controlled by players. The janibot can be played somewhat but at that point we have janitor borgs which are way better at this. You can only clean floors and even then it does a terrible job at doing that and only that. A player playing as a janibot will get bored quickly. No amount of RP will save you. A player taking over a mediborg just makes it useless as you cant inject anymore. And again, medical borg. There's no point in adding the feature. It's too much work then its worth when we have borgs. They don't have ghost role info for a reason. They are not meant to be played. --- Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml b/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml index 7d988c6fe9..612e49baec 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml @@ -258,8 +258,6 @@ - type: Construction graph: CleanBot node: bot - - type: SentienceTarget - flavorKind: station-event-random-sentience-flavor-mechanical - type: Absorbent pickupAmount: 10 - type: UseDelay @@ -331,8 +329,6 @@ - type: Construction graph: MediBot node: bot - - type: SentienceTarget - flavorKind: station-event-random-sentience-flavor-mechanical - type: Anchorable - type: InteractionPopup interactSuccessString: petting-success-medibot From 568fb235fa3b4f7771b50216022a3dad2a7435bc Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 3 Oct 2024 10:33:16 +0000 Subject: [PATCH 47/94] Automatic changelog update --- Resources/Changelog/Changelog.yml | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index d3f37b4012..7fb7753bdb 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,14 +1,4 @@ Entries: -- author: Ilya246 - changes: - - message: Nuclear operative reinforcements now come with full nuclear operative - gear (and a toy carp) at no additional cost. - type: Tweak - - message: Nuclear operative reinforcements now get nuclear operative names. - type: Tweak - id: 6982 - time: '2024-07-25T23:37:54.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30173 - author: Cojoke-dot changes: - message: Engineering goggles and other similar-looking eyewear now help block @@ -3942,3 +3932,11 @@ id: 7481 time: '2024-10-03T10:01:58.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32614 +- author: Myra + changes: + - message: Medibots and Janibots can no longer become sentient via the sentience + event. + type: Remove + id: 7482 + time: '2024-10-03T10:32:11.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32383 From a8982b88affc0d6c9b61fb9a59f46fab5614d5c2 Mon Sep 17 00:00:00 2001 From: eoineoineoin Date: Thu, 3 Oct 2024 15:01:01 +0100 Subject: [PATCH 48/94] Allow users to drag-reorder action bar (#32552) * Avoid rebuilding all buttons on action state change Allows for drag events to continue when actions change * Remove excess action buttons --------- Co-authored-by: Eoin Mcloughlin --- .../Systems/Actions/ActionUIController.cs | 4 --- .../Actions/Controls/ActionButtonContainer.cs | 34 +++++++++---------- 2 files changed, 16 insertions(+), 22 deletions(-) diff --git a/Content.Client/UserInterface/Systems/Actions/ActionUIController.cs b/Content.Client/UserInterface/Systems/Actions/ActionUIController.cs index 1dffeb8d2d..a6c1cfc94f 100644 --- a/Content.Client/UserInterface/Systems/Actions/ActionUIController.cs +++ b/Content.Client/UserInterface/Systems/Actions/ActionUIController.cs @@ -398,10 +398,6 @@ private void OnActionsUpdated() { QueueWindowUpdate(); - // TODO ACTIONS allow buttons to persist across state applications - // Then we don't have to interrupt drags any time the buttons get rebuilt. - _menuDragHelper.EndDrag(); - if (_actionsSystem != null) _container?.SetActionData(_actionsSystem, _actions.ToArray()); } diff --git a/Content.Client/UserInterface/Systems/Actions/Controls/ActionButtonContainer.cs b/Content.Client/UserInterface/Systems/Actions/Controls/ActionButtonContainer.cs index 38c08dc472..67b96d0330 100644 --- a/Content.Client/UserInterface/Systems/Actions/Controls/ActionButtonContainer.cs +++ b/Content.Client/UserInterface/Systems/Actions/Controls/ActionButtonContainer.cs @@ -28,14 +28,26 @@ public ActionButton this[int index] get => (ActionButton) GetChild(index); } - private void BuildActionButtons(int count) + public void SetActionData(ActionsSystem system, params EntityUid?[] actionTypes) { + var uniqueCount = Math.Min(system.GetClientActions().Count(), actionTypes.Length + 1); var keys = ContentKeyFunctions.GetHotbarBoundKeys(); - Children.Clear(); - for (var index = 0; index < count; index++) + for (var i = 0; i < uniqueCount; i++) + { + if (i >= ChildCount) + { + AddChild(MakeButton(i)); + } + + if (!actionTypes.TryGetValue(i, out var action)) + action = null; + ((ActionButton) GetChild(i)).UpdateData(action, system); + } + + for (var i = ChildCount - 1; i >= uniqueCount; i--) { - Children.Add(MakeButton(index)); + RemoveChild(GetChild(i)); } ActionButton MakeButton(int index) @@ -55,20 +67,6 @@ ActionButton MakeButton(int index) } } - public void SetActionData(ActionsSystem system, params EntityUid?[] actionTypes) - { - var uniqueCount = Math.Min(system.GetClientActions().Count(), actionTypes.Length + 1); - if (ChildCount != uniqueCount) - BuildActionButtons(uniqueCount); - - for (var i = 0; i < uniqueCount; i++) - { - if (!actionTypes.TryGetValue(i, out var action)) - action = null; - ((ActionButton) GetChild(i)).UpdateData(action, system); - } - } - public void ClearActionData() { foreach (var button in Children) From 1c41d3381f7127a73b6ef51a535838aeb0217858 Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 3 Oct 2024 14:02:07 +0000 Subject: [PATCH 49/94] Automatic changelog update --- Resources/Changelog/Changelog.yml | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 7fb7753bdb..1c6155ae0a 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,14 +1,4 @@ Entries: -- author: Cojoke-dot - changes: - - message: Engineering goggles and other similar-looking eyewear now help block - identity. - type: Tweak - - message: Radiation suit's hood now blocks identity. - type: Fix - id: 6983 - time: '2024-07-26T05:26:05.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30305 - author: Moomoobeef changes: - message: Some radio channel colors have been tweaked in order to be more easily @@ -3940,3 +3930,10 @@ id: 7482 time: '2024-10-03T10:32:11.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32383 +- author: eoineoineoin + changes: + - message: Action bar can be reconfigured again + type: Fix + id: 7483 + time: '2024-10-03T14:01:01.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32552 From c0d67429ab8e7996dc6b7426cae226d42fde4bf8 Mon Sep 17 00:00:00 2001 From: Southbridge <7013162+southbridge-fur@users.noreply.github.com> Date: Thu, 3 Oct 2024 20:12:59 -0500 Subject: [PATCH 50/94] Box Station - Connected Recycler, rerouted power for Singlo Substation, added law boards to AI upload room (#32608) * Fixed #32443 and #30375 * Fixed duplicate ID issue, and added lawboards to resolve #32581 * Removed Overlord board and added Crewsimov * Removed invalid UserInterface component --- Resources/Maps/box.yml | 230 ++++++++++++++++++++++++++++++++++------- 1 file changed, 191 insertions(+), 39 deletions(-) diff --git a/Resources/Maps/box.yml b/Resources/Maps/box.yml index 098a523940..3adc976783 100644 --- a/Resources/Maps/box.yml +++ b/Resources/Maps/box.yml @@ -11579,7 +11579,7 @@ entities: pos: 24.5,16.5 parent: 8364 - type: Door - secondsUntilStateChange: -15146.963 + secondsUntilStateChange: -16708.217 state: Opening - type: DeviceLinkSource lastSignals: @@ -14682,6 +14682,13 @@ entities: rot: 1.5707963267948966 rad pos: 8.5,-46.5 parent: 8364 +- proto: ArtistCircuitBoard + entities: + - uid: 27915 + components: + - type: Transform + pos: -4.5121183,-14.413322 + parent: 8364 - proto: Ash entities: - uid: 13307 @@ -14689,6 +14696,13 @@ entities: - type: Transform pos: -36.5,20.5 parent: 8364 +- proto: AsimovCircuitBoard + entities: + - uid: 27912 + components: + - type: Transform + pos: 3.2198467,-12.066172 + parent: 8364 - proto: AsteroidRock entities: - uid: 2042 @@ -39720,12 +39734,12 @@ entities: - uid: 3869 components: - type: Transform - pos: 13.5,-74.5 + pos: 15.5,-77.5 parent: 8364 - uid: 4050 components: - type: Transform - pos: 8.5,-74.5 + pos: 10.5,-80.5 parent: 8364 - uid: 4519 components: @@ -39735,7 +39749,7 @@ entities: - uid: 4553 components: - type: Transform - pos: 15.5,-74.5 + pos: 11.5,-80.5 parent: 8364 - uid: 4585 components: @@ -39785,7 +39799,7 @@ entities: - uid: 4973 components: - type: Transform - pos: 7.5,-74.5 + pos: 9.5,-80.5 parent: 8364 - uid: 4988 components: @@ -41467,11 +41481,6 @@ entities: - type: Transform pos: 23.5,23.5 parent: 8364 - - uid: 8185 - components: - - type: Transform - pos: 5.5,-74.5 - parent: 8364 - uid: 8434 components: - type: Transform @@ -42860,7 +42869,7 @@ entities: - uid: 10762 components: - type: Transform - pos: 6.5,-74.5 + pos: 8.5,-80.5 parent: 8364 - uid: 10783 components: @@ -44167,6 +44176,16 @@ entities: - type: Transform pos: -6.5,-50.5 parent: 8364 + - uid: 15804 + components: + - type: Transform + pos: 10.5,-81.5 + parent: 8364 + - uid: 15810 + components: + - type: Transform + pos: -0.5,-79.5 + parent: 8364 - uid: 15815 components: - type: Transform @@ -44965,12 +44984,7 @@ entities: - uid: 17602 components: - type: Transform - pos: 14.5,-74.5 - parent: 8364 - - uid: 17697 - components: - - type: Transform - pos: 12.5,-74.5 + pos: 15.5,-76.5 parent: 8364 - uid: 17698 components: @@ -46147,15 +46161,10 @@ entities: - type: Transform pos: 25.5,-109.5 parent: 8364 - - uid: 23221 - components: - - type: Transform - pos: 11.5,-74.5 - parent: 8364 - uid: 23223 components: - type: Transform - pos: 10.5,-74.5 + pos: 12.5,-80.5 parent: 8364 - uid: 23238 components: @@ -46172,6 +46181,11 @@ entities: - type: Transform pos: 23.5,-109.5 parent: 8364 + - uid: 24687 + components: + - type: Transform + pos: 13.5,-80.5 + parent: 8364 - uid: 25012 components: - type: Transform @@ -46805,17 +46819,17 @@ entities: - uid: 26589 components: - type: Transform - pos: 9.5,-81.5 + pos: 14.5,-80.5 parent: 8364 - uid: 26591 components: - type: Transform - pos: 9.5,-80.5 + pos: 15.5,-80.5 parent: 8364 - uid: 26608 components: - type: Transform - pos: 9.5,-79.5 + pos: 15.5,-79.5 parent: 8364 - uid: 26627 components: @@ -47000,7 +47014,7 @@ entities: - uid: 27230 components: - type: Transform - pos: 7.5,-81.5 + pos: 15.5,-78.5 parent: 8364 - uid: 27461 components: @@ -47192,6 +47206,31 @@ entities: - type: Transform pos: 9.5,-68.5 parent: 8364 + - uid: 27905 + components: + - type: Transform + pos: 9.5,-71.5 + parent: 8364 + - uid: 27906 + components: + - type: Transform + pos: 9.5,-72.5 + parent: 8364 + - uid: 27907 + components: + - type: Transform + pos: 9.5,-70.5 + parent: 8364 + - uid: 27908 + components: + - type: Transform + pos: 9.5,-69.5 + parent: 8364 + - uid: 27909 + components: + - type: Transform + pos: 9.5,-73.5 + parent: 8364 - proto: CableHVStack entities: - uid: 1683 @@ -64174,6 +64213,11 @@ entities: - type: Transform pos: 1.5,28.5 parent: 8364 + - uid: 27919 + components: + - type: Transform + pos: 2.7203026,-11.488351 + parent: 8364 - proto: ChairOfficeLight entities: - uid: 5220 @@ -69939,6 +69983,13 @@ entities: rot: 3.141592653589793 rad pos: 22.5,-3.5 parent: 8364 +- proto: CommandmentCircuitBoard + entities: + - uid: 27910 + components: + - type: Transform + pos: -4.600172,-11.893632 + parent: 8364 - proto: CommsComputerCircuitboard entities: - uid: 16499 @@ -70504,65 +70555,87 @@ entities: rot: -1.5707963267948966 rad pos: -60.5,-15.5 parent: 8364 + - type: DeviceLinkSink + invokeCounter: 4 - uid: 6227 components: - type: Transform rot: -1.5707963267948966 rad pos: -59.5,-15.5 parent: 8364 + - type: DeviceLinkSink + invokeCounter: 4 - uid: 6228 components: - type: Transform pos: -57.5,-15.5 parent: 8364 + - type: DeviceLinkSink + invokeCounter: 4 - uid: 6229 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,-16.5 parent: 8364 + - type: DeviceLinkSink + invokeCounter: 4 - uid: 6230 components: - type: Transform rot: -1.5707963267948966 rad pos: -58.5,-16.5 parent: 8364 + - type: DeviceLinkSink + invokeCounter: 4 - uid: 6231 components: - type: Transform rot: -1.5707963267948966 rad pos: -59.5,-16.5 parent: 8364 + - type: DeviceLinkSink + invokeCounter: 4 - uid: 6232 components: - type: Transform rot: -1.5707963267948966 rad pos: -60.5,-16.5 parent: 8364 + - type: DeviceLinkSink + invokeCounter: 4 - uid: 6233 components: - type: Transform rot: 3.141592653589793 rad pos: -61.5,-16.5 parent: 8364 + - type: DeviceLinkSink + invokeCounter: 4 - uid: 6234 components: - type: Transform rot: 3.141592653589793 rad pos: -61.5,-17.5 parent: 8364 + - type: DeviceLinkSink + invokeCounter: 4 - uid: 6235 components: - type: Transform rot: 3.141592653589793 rad pos: -61.5,-18.5 parent: 8364 + - type: DeviceLinkSink + invokeCounter: 4 - uid: 6236 components: - type: Transform rot: 3.141592653589793 rad pos: -61.5,-19.5 parent: 8364 + - type: DeviceLinkSink + invokeCounter: 4 - uid: 7162 components: - type: Transform @@ -70647,6 +70720,8 @@ entities: rot: 3.141592653589793 rad pos: -61.5,-20.5 parent: 8364 + - type: DeviceLinkSink + invokeCounter: 4 - uid: 17202 components: - type: Transform @@ -70724,6 +70799,13 @@ entities: - type: Transform pos: 90.5,-27.5 parent: 8364 +- proto: CorporateCircuitBoard + entities: + - uid: 27914 + components: + - type: Transform + pos: -4.441743,-12.321369 + parent: 8364 - proto: CowToolboxFilled entities: - uid: 13853 @@ -81392,6 +81474,13 @@ entities: - type: Transform pos: -33.51487,5.3832693 parent: 8364 +- proto: DrinkHotCoffee + entities: + - uid: 27918 + components: + - type: Transform + pos: 3.3560345,-11.363264 + parent: 8364 - proto: DrinkMugBlack entities: - uid: 18382 @@ -81446,6 +81535,13 @@ entities: - type: Transform pos: 74.3515,-18.443996 parent: 8364 +- proto: DungeonMasterCircuitBoard + entities: + - uid: 27917 + components: + - type: Transform + pos: 3.5477152,-12.389968 + parent: 8364 - proto: EmergencyLight entities: - uid: 21308 @@ -84322,7 +84418,7 @@ entities: pos: -34.5,-14.5 parent: 8364 - type: Door - secondsUntilStateChange: -9335.5 + secondsUntilStateChange: -10896.755 state: Closing - uid: 15010 components: @@ -84814,6 +84910,9 @@ entities: - type: Transform pos: -4.5,-71.5 parent: 8364 + - type: Door + secondsUntilStateChange: -2644.4858 + state: Closing - proto: Fireplace entities: - uid: 11559 @@ -119851,6 +119950,12 @@ entities: - type: Transform pos: 15.5,-41.5 parent: 8364 + - uid: 21746 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-80.5 + parent: 8364 - uid: 21751 components: - type: Transform @@ -120086,6 +120191,12 @@ entities: - type: Transform pos: 17.5,-52.5 parent: 8364 + - uid: 23221 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-81.5 + parent: 8364 - uid: 23222 components: - type: Transform @@ -124581,6 +124692,13 @@ entities: - type: Transform pos: 32.5,-6.5 parent: 8364 +- proto: NTDefaultCircuitBoard + entities: + - uid: 27913 + components: + - type: Transform + pos: -4.5442195,-11.268198 + parent: 8364 - proto: NuclearBomb entities: - uid: 12086 @@ -124595,6 +124713,13 @@ entities: - type: Transform pos: 8.5,-27.5 parent: 8364 +- proto: NutimovCircuitBoard + entities: + - uid: 27916 + components: + - type: Transform + pos: 3.6621494,-11.814552 + parent: 8364 - proto: OperatingTable entities: - uid: 2385 @@ -124868,6 +124993,13 @@ entities: - type: Transform pos: 58.5,-11.5 parent: 8364 +- proto: PaladinCircuitBoard + entities: + - uid: 27911 + components: + - type: Transform + pos: -4.443845,-11.67473 + parent: 8364 - proto: Paper entities: - uid: 1779 @@ -137083,6 +137215,12 @@ entities: - type: Transform pos: -3.5,-20.5 parent: 8364 + - uid: 8185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-81.5 + parent: 8364 - uid: 8207 components: - type: Transform @@ -137907,6 +138045,12 @@ entities: - type: Transform pos: 25.5,-75.5 parent: 8364 + - uid: 17697 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-80.5 + parent: 8364 - uid: 17787 components: - type: Transform @@ -138440,6 +138584,13 @@ entities: - type: Transform pos: 0.2510581,39.68831 parent: 8364 +- proto: RobocopCircuitBoard + entities: + - uid: 22443 + components: + - type: Transform + pos: 3.4364183,-14.443886 + parent: 8364 - proto: RobustHarvestChemistryBottle entities: - uid: 13505 @@ -143986,6 +144137,13 @@ entities: - type: Transform pos: -20.5,-74.5 parent: 8364 +- proto: StationEfficiencyCircuitBoard + entities: + - uid: 27536 + components: + - type: Transform + pos: -4.631007,-12.460042 + parent: 8364 - proto: StationMap entities: - uid: 27690 @@ -151539,8 +151697,12 @@ entities: - Right: Reverse - Middle: Off 6120: + - Right: Reverse - Left: Forward + - Middle: Off + 16588: - Right: Reverse + - Left: Forward - Middle: Off - uid: 16780 components: @@ -161682,16 +161844,6 @@ entities: - type: Transform pos: 10.5,-79.5 parent: 8364 - - uid: 15804 - components: - - type: Transform - pos: 10.5,-81.5 - parent: 8364 - - uid: 15810 - components: - - type: Transform - pos: 10.5,-80.5 - parent: 8364 - uid: 15813 components: - type: Transform @@ -172478,7 +172630,7 @@ entities: rot: 1.5707963267948966 rad pos: 8.5,-18.5 parent: 8364 - - uid: 21746 + - uid: 31746 components: - type: Transform rot: 3.141592653589793 rad From 7edd1c6d5247b1d49fcdc40b89cfb2fe34286547 Mon Sep 17 00:00:00 2001 From: PJBot Date: Fri, 4 Oct 2024 01:14:09 +0000 Subject: [PATCH 51/94] Automatic changelog update --- Resources/Changelog/Changelog.yml | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 1c6155ae0a..57c8e4278a 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: Moomoobeef - changes: - - message: Some radio channel colors have been tweaked in order to be more easily - distinguishable. - type: Tweak - id: 6984 - time: '2024-07-26T06:47:20.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30133 - author: Errant changes: - message: Replay ghosts now actually spawn on the proper station, take two. @@ -3937,3 +3929,15 @@ id: 7483 time: '2024-10-03T14:01:01.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32552 +- author: Southbridge + changes: + - message: Box station's recycler has been properly connected. + type: Fix + - message: Box station's singlo substation has been rewired to the station-wide + HV network. + type: Tweak + - message: Box station now has AI law boards in the upload room. + type: Add + id: 7484 + time: '2024-10-04T01:12:59.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32608 From 570c166517ea7cf2bf90666b757ad64ec295817c Mon Sep 17 00:00:00 2001 From: Jezithyr Date: Thu, 3 Oct 2024 18:16:32 -0700 Subject: [PATCH 52/94] Disable Auto-Publish (#32627) disable auto publish --- .github/workflows/publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index d08ae13502..77cf56a512 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -5,8 +5,8 @@ concurrency: on: workflow_dispatch: - schedule: - - cron: '0 10 * * *' + # schedule: + # - cron: '0 10 * * *' jobs: build: From 295e63193c91124160458cfd14165d644382b23f Mon Sep 17 00:00:00 2001 From: Plykiya <58439124+Plykiya@users.noreply.github.com> Date: Thu, 3 Oct 2024 19:55:36 -0700 Subject: [PATCH 53/94] Two additional checks to prevent FTLing stations (#32558) Add two additional checks to prevent FTLing --- .../Systems/ShuttleConsoleSystem.FTL.cs | 3 +++ .../Systems/ShuttleSystem.FasterThanLight.cs | 20 ++++++++++++++----- Resources/Locale/en-US/shuttles/console.ftl | 1 + 3 files changed, 19 insertions(+), 5 deletions(-) diff --git a/Content.Server/Shuttles/Systems/ShuttleConsoleSystem.FTL.cs b/Content.Server/Shuttles/Systems/ShuttleConsoleSystem.FTL.cs index 02b1524292..eac2535e8b 100644 --- a/Content.Server/Shuttles/Systems/ShuttleConsoleSystem.FTL.cs +++ b/Content.Server/Shuttles/Systems/ShuttleConsoleSystem.FTL.cs @@ -124,6 +124,9 @@ private void ConsoleFTL(Entity ent, EntityCoordinates t if (!TryComp(shuttleUid, out ShuttleComponent? shuttleComp)) return; + if (shuttleComp.Enabled == false) + return; + // Check shuttle can even FTL if (!_shuttle.CanFTL(shuttleUid.Value, out var reason)) { diff --git a/Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs b/Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs index ce6a914847..d0aab9aad5 100644 --- a/Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs +++ b/Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs @@ -225,18 +225,28 @@ public void RemoveFTLDestination(EntityUid uid) /// public bool CanFTL(EntityUid shuttleUid, [NotNullWhen(false)] out string? reason) { + // Currently in FTL already if (HasComp(shuttleUid)) { reason = Loc.GetString("shuttle-console-in-ftl"); return false; } - if (FTLMassLimit > 0 && - TryComp(shuttleUid, out PhysicsComponent? shuttlePhysics) && - shuttlePhysics.Mass > FTLMassLimit) + if (TryComp(shuttleUid, out var shuttlePhysics)) { - reason = Loc.GetString("shuttle-console-mass"); - return false; + // Static physics type is set when station anchor is enabled + if (shuttlePhysics.BodyType == BodyType.Static) + { + reason = Loc.GetString("shuttle-console-static"); + return false; + } + + // Too large to FTL + if (FTLMassLimit > 0 && shuttlePhysics.Mass > FTLMassLimit) + { + reason = Loc.GetString("shuttle-console-mass"); + return false; + } } if (HasComp(shuttleUid)) diff --git a/Resources/Locale/en-US/shuttles/console.ftl b/Resources/Locale/en-US/shuttles/console.ftl index 80e61a2812..6143c99552 100644 --- a/Resources/Locale/en-US/shuttles/console.ftl +++ b/Resources/Locale/en-US/shuttles/console.ftl @@ -4,6 +4,7 @@ shuttle-pilot-end = Stopped piloting shuttle-console-in-ftl = Currently in FTL shuttle-console-mass = Too large to FTL shuttle-console-prevent = You are unable to pilot this ship +shuttle-console-static = Grid is static # NAV From 423d394af1bb1ce06c2b8e9a918c341e6d1071da Mon Sep 17 00:00:00 2001 From: PJBot Date: Fri, 4 Oct 2024 02:56:43 +0000 Subject: [PATCH 54/94] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 57c8e4278a..e36ea1472e 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Errant - changes: - - message: Replay ghosts now actually spawn on the proper station, take two. - type: Fix - id: 6985 - time: '2024-07-26T12:59:43.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30273 - author: themias changes: - message: Arcade machines are functional again @@ -3941,3 +3934,10 @@ id: 7484 time: '2024-10-04T01:12:59.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32608 +- author: Plykiya + changes: + - message: You can no longer FTL the station. + type: Fix + id: 7485 + time: '2024-10-04T02:55:36.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32558 From 9e054c1f9dbe7f04f11b4367a3bc7df3a5f18bce Mon Sep 17 00:00:00 2001 From: SoulFN <164462467+SoulFN@users.noreply.github.com> Date: Fri, 4 Oct 2024 13:39:50 +0800 Subject: [PATCH 55/94] Give dragon pull ability (#32568) --- Resources/Prototypes/Entities/Mobs/Player/dragon.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Resources/Prototypes/Entities/Mobs/Player/dragon.yml b/Resources/Prototypes/Entities/Mobs/Player/dragon.yml index 16e3038fcd..c750b568b4 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/dragon.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/dragon.yml @@ -150,7 +150,9 @@ tags: - CannotSuicide - DoorBumpOpener - + - type: Puller + needsHands: false + - type: entity parent: BaseMobDragon id: MobDragon From 8b65186bfae66ffe1571236b3dce991f6e2e3fd6 Mon Sep 17 00:00:00 2001 From: PJBot Date: Fri, 4 Oct 2024 05:40:57 +0000 Subject: [PATCH 56/94] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index e36ea1472e..23f1617587 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: themias - changes: - - message: Arcade machines are functional again - type: Fix - id: 6986 - time: '2024-07-26T17:30:50.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30376 - author: themias changes: - message: Zombies now get uncuffed upon transformation @@ -3941,3 +3934,10 @@ id: 7485 time: '2024-10-04T02:55:36.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32558 +- author: SoulFN + changes: + - message: Dragon can now pull things using tail. + type: Add + id: 7486 + time: '2024-10-04T05:39:50.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32568 From 88f060d51a0d36582c0705218d98d21a53789771 Mon Sep 17 00:00:00 2001 From: Saphire Lattice Date: Fri, 4 Oct 2024 14:43:45 +0600 Subject: [PATCH 57/94] Make the explosions throw the container/item they originated from (#32428) Extra fun if it's something that can trigger multiple times --- .../Explosion/EntitySystems/ExplosionSystem.Processing.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Content.Server/Explosion/EntitySystems/ExplosionSystem.Processing.cs b/Content.Server/Explosion/EntitySystems/ExplosionSystem.Processing.cs index 5f14858f1f..ca2b0dbf9d 100644 --- a/Content.Server/Explosion/EntitySystems/ExplosionSystem.Processing.cs +++ b/Content.Server/Explosion/EntitySystems/ExplosionSystem.Processing.cs @@ -488,9 +488,12 @@ private void ProcessEntity( && physics.BodyType == BodyType.Dynamic) { var pos = _transformSystem.GetWorldPosition(xform); + var dir = pos - epicenter.Position; + if (dir.IsLengthZero()) + dir = _robustRandom.NextVector2().Normalized(); _throwingSystem.TryThrow( uid, - pos - epicenter.Position, + dir, physics, xform, _projectileQuery, From fbb6f17addf6d32cf100874afe34ceb6f30e6b55 Mon Sep 17 00:00:00 2001 From: PJBot Date: Fri, 4 Oct 2024 08:44:51 +0000 Subject: [PATCH 58/94] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 23f1617587..0dea1bd82f 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: themias - changes: - - message: Zombies now get uncuffed upon transformation - type: Fix - id: 6987 - time: '2024-07-26T18:48:03.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30321 - author: metalgearsloth changes: - message: Fix grid labels getting spammed from VGRoid. @@ -3941,3 +3934,10 @@ id: 7486 time: '2024-10-04T05:39:50.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32568 +- author: SaphireLattice + changes: + - message: Explosives throw a container they are in + type: Tweak + id: 7487 + time: '2024-10-04T08:43:45.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32428 From 94c8018ff3342e949dd6a605fb96c942069857b9 Mon Sep 17 00:00:00 2001 From: Saphire Lattice Date: Fri, 4 Oct 2024 15:34:48 +0600 Subject: [PATCH 59/94] Change the syndicate charge to start a timer on signal (#32423) * Change the syndicate charge to start a timer on signal * Actually add the component in question * Add default link for TimerStart signal --- .../Components/TimerStartOnSignalComponent.cs | 15 +++++++++++++++ .../EntitySystems/TriggerSystem.Signal.cs | 15 +++++++++++++++ .../en-US/machine-linking/receiver_ports.ftl | 3 +++ Resources/Prototypes/DeviceLinking/sink_ports.yml | 5 +++++ .../Prototypes/DeviceLinking/source_ports.yml | 12 ++++++------ .../Entities/Objects/Weapons/Bombs/plastic.yml | 4 ++-- 6 files changed, 46 insertions(+), 8 deletions(-) create mode 100644 Content.Server/Explosion/Components/TimerStartOnSignalComponent.cs diff --git a/Content.Server/Explosion/Components/TimerStartOnSignalComponent.cs b/Content.Server/Explosion/Components/TimerStartOnSignalComponent.cs new file mode 100644 index 0000000000..9adc6dab87 --- /dev/null +++ b/Content.Server/Explosion/Components/TimerStartOnSignalComponent.cs @@ -0,0 +1,15 @@ +using Content.Shared.DeviceLinking; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; + +namespace Content.Server.Explosion.Components +{ + /// + /// Sends a trigger when signal is received. + /// + [RegisterComponent] + public sealed partial class TimerStartOnSignalComponent : Component + { + [DataField("port", customTypeSerializer: typeof(PrototypeIdSerializer))] + public string Port = "Timer"; + } +} diff --git a/Content.Server/Explosion/EntitySystems/TriggerSystem.Signal.cs b/Content.Server/Explosion/EntitySystems/TriggerSystem.Signal.cs index ffd47f0257..ce4d201f28 100644 --- a/Content.Server/Explosion/EntitySystems/TriggerSystem.Signal.cs +++ b/Content.Server/Explosion/EntitySystems/TriggerSystem.Signal.cs @@ -11,6 +11,9 @@ private void InitializeSignal() { SubscribeLocalEvent(OnSignalReceived); SubscribeLocalEvent(OnInit); + + SubscribeLocalEvent(OnTimerSignalReceived); + SubscribeLocalEvent(OnTimerSignalInit); } private void OnSignalReceived(EntityUid uid, TriggerOnSignalComponent component, ref SignalReceivedEvent args) @@ -24,5 +27,17 @@ private void OnInit(EntityUid uid, TriggerOnSignalComponent component, Component { _signalSystem.EnsureSinkPorts(uid, component.Port); } + + private void OnTimerSignalReceived(EntityUid uid, TimerStartOnSignalComponent component, ref SignalReceivedEvent args) + { + if (args.Port != component.Port) + return; + + StartTimer(uid, args.Trigger); + } + private void OnTimerSignalInit(EntityUid uid, TimerStartOnSignalComponent component, ComponentInit args) + { + _signalSystem.EnsureSinkPorts(uid, component.Port); + } } } diff --git a/Resources/Locale/en-US/machine-linking/receiver_ports.ftl b/Resources/Locale/en-US/machine-linking/receiver_ports.ftl index a0d2fd3ec4..d7a2636e11 100644 --- a/Resources/Locale/en-US/machine-linking/receiver_ports.ftl +++ b/Resources/Locale/en-US/machine-linking/receiver_ports.ftl @@ -28,6 +28,9 @@ signal-port-description-doorbolt = Bolts door when HIGH. signal-port-name-trigger = Trigger signal-port-description-trigger = Triggers some mechanism on the device. +signal-port-name-timer = Timer +signal-port-description-timer = Starts the timer countdown of the device. + signal-port-name-order-sender = Order sender signal-port-description-order-sender = Cargo console order sender diff --git a/Resources/Prototypes/DeviceLinking/sink_ports.yml b/Resources/Prototypes/DeviceLinking/sink_ports.yml index 339b814175..a5313fcc4e 100644 --- a/Resources/Prototypes/DeviceLinking/sink_ports.yml +++ b/Resources/Prototypes/DeviceLinking/sink_ports.yml @@ -48,6 +48,11 @@ name: signal-port-name-trigger description: signal-port-description-trigger +- type: sinkPort + id: Timer + name: signal-port-name-timer + description: signal-port-description-timer + - type: sinkPort id: OrderReceiver name: signal-port-name-order-receiver diff --git a/Resources/Prototypes/DeviceLinking/source_ports.yml b/Resources/Prototypes/DeviceLinking/source_ports.yml index 1988f29e45..5c32734726 100644 --- a/Resources/Prototypes/DeviceLinking/source_ports.yml +++ b/Resources/Prototypes/DeviceLinking/source_ports.yml @@ -2,13 +2,13 @@ id: Pressed name: signal-port-name-pressed description: signal-port-description-pressed - defaultLinks: [ Toggle, Trigger ] + defaultLinks: [ Toggle, Trigger, Timer ] - type: sourcePort id: On name: signal-port-name-on-transmitter description: signal-port-description-on-transmitter - defaultLinks: [ On, Open, Forward, Trigger ] + defaultLinks: [ On, Open, Forward, Trigger, Timer ] - type: sourcePort id: Off @@ -25,13 +25,13 @@ id: Left name: signal-port-name-left description: signal-port-description-left - defaultLinks: [ On, Open, Forward, Trigger ] + defaultLinks: [ On, Open, Forward, Trigger, Timer ] - type: sourcePort id: Right name: signal-port-name-right description: signal-port-description-right - defaultLinks: [ On, Open, Reverse, Trigger ] + defaultLinks: [ On, Open, Reverse, Trigger, Timer ] - type: sourcePort id: Middle @@ -76,7 +76,7 @@ id: Timer name: signal-port-name-timer-trigger description: signal-port-description-timer-trigger - defaultLinks: [ AutoClose, On, Open, Forward, Trigger ] + defaultLinks: [ AutoClose, On, Open, Forward, Trigger, Timer ] - type: sourcePort id: Start @@ -94,7 +94,7 @@ id: OutputHigh name: signal-port-name-logic-output-high description: signal-port-description-logic-output-high - defaultLinks: [ On, Open, Forward, Trigger ] + defaultLinks: [ On, Open, Forward, Trigger, Timer ] - type: sourcePort id: OutputLow diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Bombs/plastic.yml b/Resources/Prototypes/Entities/Objects/Weapons/Bombs/plastic.yml index 772dd15ab8..87b6bb2534 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Bombs/plastic.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Bombs/plastic.yml @@ -54,10 +54,10 @@ beepSound: /Audio/Machines/Nuke/general_beep.ogg startOnStick: true canToggleStartOnStick: true - - type: TriggerOnSignal + - type: TimerStartOnSignal - type: DeviceLinkSink ports: - - Trigger + - Timer - type: Explosive # Powerful explosion in a very small radius. Doesn't break underplating. explosionType: DemolitionCharge totalIntensity: 60 From ec4acdebbf11cf2895e9a8e0ceca19d9bede168c Mon Sep 17 00:00:00 2001 From: PJBot Date: Fri, 4 Oct 2024 09:35:55 +0000 Subject: [PATCH 60/94] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 0dea1bd82f..092e71e0ec 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: metalgearsloth - changes: - - message: Fix grid labels getting spammed from VGRoid. - type: Fix - id: 6988 - time: '2024-07-27T01:54:38.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29946 - author: GoldenCan changes: - message: Added a Security Clown Mask which is obtainable by hacking a SecDrobe. @@ -3941,3 +3934,11 @@ id: 7487 time: '2024-10-04T08:43:45.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32428 +- author: SaphireLattice + changes: + - message: Syndicate C4 now starts a countdown on signal, rather than exploding + instantly. + type: Tweak + id: 7488 + time: '2024-10-04T09:34:49.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32423 From 644d7ab682f65f77b4d9a53d2b2bbb445be82016 Mon Sep 17 00:00:00 2001 From: NotSoDamn <75203942+NotSoDana@users.noreply.github.com> Date: Fri, 4 Oct 2024 23:13:30 +0300 Subject: [PATCH 61/94] `BaseAdvancedPen` migration (#32638) * Update migration.yml * Update Resources/migration.yml Co-authored-by: lzk <124214523+lzk228@users.noreply.github.com> --------- Co-authored-by: lzk <124214523+lzk228@users.noreply.github.com> --- Resources/migration.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Resources/migration.yml b/Resources/migration.yml index 352c9a4454..3ed618dcfd 100644 --- a/Resources/migration.yml +++ b/Resources/migration.yml @@ -437,3 +437,6 @@ HatBase: null # 2024-09-19 BlueprintFlare: null + +# 2024-10-04 +BaseAdvancedPen: Pen From db64ad9c4d3be23137b4575882cbcc8f151c4dbd Mon Sep 17 00:00:00 2001 From: TakoDragon <69509841+BackeTako@users.noreply.github.com> Date: Sat, 5 Oct 2024 01:18:46 +0200 Subject: [PATCH 62/94] Marathon Removed double walls and a wrong cable (#32603) removed double walls and cable fucks --- Resources/Maps/marathon.yml | 65 ------------------------------------- 1 file changed, 65 deletions(-) diff --git a/Resources/Maps/marathon.yml b/Resources/Maps/marathon.yml index fa6faec647..f2109b05be 100644 --- a/Resources/Maps/marathon.yml +++ b/Resources/Maps/marathon.yml @@ -28118,11 +28118,6 @@ entities: - type: Transform pos: -56.5,-26.5 parent: 30 - - uid: 19145 - components: - - type: Transform - pos: -69.5,-40.5 - parent: 30 - uid: 19146 components: - type: Transform @@ -28138,11 +28133,6 @@ entities: - type: Transform pos: -68.5,-29.5 parent: 30 - - uid: 19150 - components: - - type: Transform - pos: -73.5,-41.5 - parent: 30 - uid: 19151 components: - type: Transform @@ -138472,56 +138462,6 @@ entities: - type: Transform pos: -70.5,-62.5 parent: 30 - - uid: 17774 - components: - - type: Transform - pos: -61.5,-66.5 - parent: 30 - - uid: 17777 - components: - - type: Transform - pos: -71.5,-64.5 - parent: 30 - - uid: 17778 - components: - - type: Transform - pos: -70.5,-64.5 - parent: 30 - - uid: 17779 - components: - - type: Transform - pos: -69.5,-64.5 - parent: 30 - - uid: 17780 - components: - - type: Transform - pos: -68.5,-64.5 - parent: 30 - - uid: 17781 - components: - - type: Transform - pos: -68.5,-65.5 - parent: 30 - - uid: 17782 - components: - - type: Transform - pos: -68.5,-66.5 - parent: 30 - - uid: 17783 - components: - - type: Transform - pos: -67.5,-66.5 - parent: 30 - - uid: 17784 - components: - - type: Transform - pos: -66.5,-66.5 - parent: 30 - - uid: 17786 - components: - - type: Transform - pos: -65.5,-66.5 - parent: 30 - uid: 17787 components: - type: Transform @@ -138602,11 +138542,6 @@ entities: - type: Transform pos: -54.5,-61.5 parent: 30 - - uid: 18082 - components: - - type: Transform - pos: -61.5,-67.5 - parent: 30 - uid: 18087 components: - type: Transform From 2287df13bdc6d754fcac70c29d6fd06890136d83 Mon Sep 17 00:00:00 2001 From: Spessmann <156740760+Spessmann@users.noreply.github.com> Date: Sat, 5 Oct 2024 11:08:39 -0700 Subject: [PATCH 63/94] Cog engineering DIY update (#32651) engineers forced to do work, sobbing --- Resources/Maps/cog.yml | 17495 +++++++++++++++------------------------ 1 file changed, 6593 insertions(+), 10902 deletions(-) diff --git a/Resources/Maps/cog.yml b/Resources/Maps/cog.yml index 7bc328d798..882aab9eb1 100644 --- a/Resources/Maps/cog.yml +++ b/Resources/Maps/cog.yml @@ -80,43 +80,43 @@ entities: chunks: 0,0: ind: 0,0 - tiles: EgAAAAAAEgAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAEgAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: EgAAAAAAEgAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAEgAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -1,0: ind: -1,0 - tiles: YAAAAAABYAAAAAADIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAEgAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAEgAAAAAAgQAAAAAAIAAAAAAAYAAAAAADYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAEgAAAAAAgQAAAAAAIAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: YAAAAAABYAAAAAABYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADEgAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACEgAAAAAAgQAAAAAAIAAAAAAAYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACEgAAAAAAgQAAAAAAIAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABEgAAAAAAEgAAAAAAEgAAAAAAYAAAAAABYAAAAAACgQAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAADYAAAAAABYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: YAAAAAAAYAAAAAACgQAAAAAAIwAAAAAAJAAAAAAAIwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAOQAAAAAAOQAAAAAAYAAAAAADYAAAAAADgQAAAAAAIwAAAAAAIwAAAAAAJAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAOQAAAAAAOQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAJAAAAAAAIwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAYAAAAAABYAAAAAADgQAAAAAAJAAAAAAAIwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAIwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAJAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAACYAAAAAABIAAAAAAAUQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAUQAAAAAAYAAAAAAAYAAAAAADIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAUQAAAAAAYAAAAAACYAAAAAACIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAA + tiles: YAAAAAABYAAAAAAAgQAAAAAAIwAAAAAAJAAAAAAAIwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAOQAAAAAAOQAAAAAAYAAAAAACYAAAAAACgQAAAAAAIwAAAAAAIwAAAAAAJAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAACOQAAAAAAOQAAAAAAYAAAAAACYAAAAAACgQAAAAAAJAAAAAAAIwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAIAAAAAABIAAAAAACYAAAAAADYAAAAAACgQAAAAAAJAAAAAAAIwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAACIAAAAAACIAAAAAACYAAAAAABYAAAAAADgQAAAAAAIwAAAAAEgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAADIAAAAAACIAAAAAADYAAAAAABYAAAAAAAgQAAAAAAJAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAADIAAAAAADIAAAAAAAIAAAAAABgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAADYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADIAAAAAABUQAAAAADYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAADYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAUQAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAADUQAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAACIAAAAAAC version: 6 0,-1: ind: 0,-1 - tiles: OQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAOQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: OQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAOQAAAAAAIAAAAAABIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAIAAAAAADgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAACIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAADIAAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAIAAAAAABIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAADgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -1,-2: ind: -1,-2 - tiles: YAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAADgQAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAABgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAACYAAAAAABBwAAAAAACwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAABgQAAAAAABwAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: YAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAABYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAADYAAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAABcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAABwAAAAAACwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADgQAAAAAABwAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 0,-2: ind: 0,-2 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAABYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAACYAAAAAABYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADCwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAD + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAABYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAABYAAAAAABYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAACgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADCwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAA version: 6 -2,-1: ind: -2,-1 - tiles: AAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAACgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAADYAAAAAADYAAAAAABgQAAAAAAYAAAAAACYAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAABYAAAAAADYAAAAAACgQAAAAAAYAAAAAADYAAAAAABAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAADgQAAAAAAYAAAAAACYAAAAAADAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAABYAAAAAAD + tiles: AAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAABgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABSgAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAADgQAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAYAAAAAADYAAAAAAAYAAAAAADgQAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAYAAAAAACYAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAACAAAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAADYAAAAAADgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAACYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAYAAAAAABYAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAACgQAAAAAAYAAAAAABYAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAABfQAAAAADIAAAAAABIAAAAAAAIAAAAAACIAAAAAACgQAAAAAAYAAAAAACYAAAAAAB version: 6 -2,-2: ind: -2,-2 - tiles: gQAAAAAAYAAAAAABYAAAAAABYAAAAAABgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAYAAAAAABYAAAAAABYAAAAAADgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAABYAAAAAACgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAAAYAAAAAADYAAAAAABYAAAAAACgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAADYAAAAAABgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACcwAAAAACcwAAAAACcwAAAAACcwAAAAADcwAAAAABgQAAAAAACwAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADcwAAAAABcwAAAAABcwAAAAACcwAAAAABcwAAAAABYAAAAAADYAAAAAACUQAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAcwAAAAABcwAAAAADcwAAAAABcwAAAAABcwAAAAACYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAcwAAAAAAcwAAAAACcwAAAAAAcwAAAAADcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAB + tiles: gQAAAAAAYAAAAAADYAAAAAACYAAAAAACgQAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAADgQAAAAAAcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAACgQAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAADgQAAAAAAcwAAAAADcwAAAAACcwAAAAABgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAYAAAAAACYAAAAAABYAAAAAABgQAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAADYAAAAAAAcwAAAAACcwAAAAABcwAAAAADgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAADgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAcwAAAAAAcwAAAAADcwAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAcwAAAAAAcwAAAAACcwAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAABgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAADYAAAAAACgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAcwAAAAADcwAAAAADcwAAAAABcwAAAAACcwAAAAAAgQAAAAAACwAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAcwAAAAAAcwAAAAABcwAAAAADcwAAAAAAcwAAAAAAYAAAAAADYAAAAAAAUQAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAADgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAABcwAAAAACcwAAAAADYAAAAAABYAAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAcwAAAAACcwAAAAADcwAAAAAAcwAAAAABcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAD version: 6 -2,0: ind: -2,0 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAABYAAAAAABYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAADIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAADgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAADgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAACgQAAAAAAYAAAAAACYAAAAAABIAAAAAADIAAAAAABIAAAAAAAIAAAAAADgQAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAADYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACOQAAAAAAOQAAAAAAOQAAAAAAIAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAADOQAAAAAAIAAAAAABOQAAAAAAFgAAAAABFgAAAAABYAAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAABOQAAAAAAOQAAAAAAOQAAAAAAIAAAAAADgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAABYAAAAAABYAAAAAADIAAAAAABIAAAAAADIAAAAAABIAAAAAACgQAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAYAAAAAACYAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAABgQAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAYAAAAAACYAAAAAADgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAB + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAABfQAAAAAAIAAAAAADIAAAAAAAIAAAAAADIAAAAAACIAAAAAABYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAIAAAAAAAIAAAAAABIAAAAAABIAAAAAABgQAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACIAAAAAACIAAAAAABIAAAAAAAIAAAAAACIAAAAAADIAAAAAACgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAYAAAAAACgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAADgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAADgQAAAAAAYAAAAAAAYAAAAAAAIAAAAAACIAAAAAADIAAAAAADIAAAAAADgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAABOQAAAAAAOQAAAAAAOQAAAAAAIAAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAABOQAAAAAAIAAAAAADOQAAAAAAFgAAAAABFgAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAACOQAAAAAAOQAAAAAAOQAAAAAAIAAAAAABgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAAAIAAAAAACIAAAAAAAIAAAAAABIAAAAAADgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAACYAAAAAAAgQAAAAAAYAAAAAABYAAAAAACgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACgQAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAABgQAAAAAAYAAAAAABYAAAAAACgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAA version: 6 -3,0: ind: -3,0 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAABYAAAAAACYAAAAAABYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAABYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -3,-1: ind: -3,-1 @@ -124,87 +124,87 @@ entities: version: 6 -3,-2: ind: -3,-2 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAcwAAAAADcwAAAAAAcwAAAAACcwAAAAACcwAAAAADgQAAAAAAcwAAAAACcwAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAADcwAAAAABcwAAAAADcwAAAAAAcwAAAAABcwAAAAAAYAAAAAACYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAAAcwAAAAABcwAAAAABcwAAAAACgQAAAAAAcwAAAAAAcwAAAAADgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAACYAAAAAABYAAAAAADYAAAAAACcwAAAAACcwAAAAABcwAAAAACcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAAAYAAAAAACcwAAAAAAcwAAAAACcwAAAAACcwAAAAACgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAAAcwAAAAABcwAAAAACcwAAAAADcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAABcwAAAAADcwAAAAAAcwAAAAACcwAAAAACgQAAAAAAIAAAAAAAIAAAAAACIAAAAAABIAAAAAADIAAAAAABIAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAADYAAAAAADYAAAAAABgQAAAAAAIAAAAAAAIAAAAAABIAAAAAAAIAAAAAAAIAAAAAABIAAAAAADgQAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAADYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAIAAAAAADIAAAAAADIAAAAAAAIAAAAAACIAAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAABIAAAAAADIAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAACIAAAAAACIAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIAAAAAADIAAAAAACIAAAAAABIAAAAAABIAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAcwAAAAADcwAAAAACcwAAAAABcwAAAAAAcwAAAAABgQAAAAAAcwAAAAAAcwAAAAACgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAcwAAAAACcwAAAAACcwAAAAADcwAAAAABcwAAAAAAcwAAAAADcwAAAAADcwAAAAABYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAACcwAAAAACcwAAAAADcwAAAAADgQAAAAAAcwAAAAACcwAAAAABgQAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAABYAAAAAABYAAAAAAAYAAAAAADYAAAAAABcwAAAAACcwAAAAAAcwAAAAACcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAcwAAAAACcwAAAAABcwAAAAAAcwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAcwAAAAACcwAAAAACcwAAAAAAcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAAAcwAAAAADcwAAAAABcwAAAAACcwAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAABIAAAAAABIAAAAAABIAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAADYAAAAAACYAAAAAABgQAAAAAAIAAAAAADIAAAAAADIAAAAAAAIAAAAAAAIAAAAAABIAAAAAACgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAACgQAAAAAAIAAAAAAAIAAAAAABIAAAAAAAIAAAAAACIAAAAAABIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAADIAAAAAADIAAAAAACgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAIAAAAAABIAAAAAABIAAAAAAAIAAAAAADIAAAAAADgQAAAAAAYAAAAAACYAAAAAACgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIAAAAAABIAAAAAACIAAAAAADIAAAAAABIAAAAAAAgQAAAAAAYAAAAAADYAAAAAACgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAA version: 6 -1,-3: ind: -1,-3 - tiles: cwAAAAAAcwAAAAABcwAAAAAAcwAAAAAAcwAAAAAAUQAAAAAAcwAAAAAAUQAAAAAAcwAAAAABcwAAAAACcwAAAAABgQAAAAAAcwAAAAACcwAAAAADcwAAAAACcwAAAAAAcwAAAAADcwAAAAACcwAAAAAAcwAAAAACcwAAAAADcwAAAAABcwAAAAABcwAAAAACcwAAAAABcwAAAAACgQAAAAAAgQAAAAAAcwAAAAABcwAAAAAAcwAAAAACcwAAAAAAcwAAAAAAcwAAAAACgQAAAAAAcwAAAAADcwAAAAADcwAAAAABcwAAAAAAcwAAAAABcwAAAAADcwAAAAACcwAAAAAAcwAAAAAAcwAAAAACcwAAAAABcwAAAAADcwAAAAABcwAAAAACcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAADcwAAAAABcwAAAAADcwAAAAACcwAAAAACcwAAAAACcwAAAAACcwAAAAADcwAAAAACcwAAAAAAcwAAAAAAcwAAAAADcwAAAAACcwAAAAACcwAAAAADcwAAAAACcwAAAAACcwAAAAACcwAAAAADcwAAAAAAcwAAAAADcwAAAAAAcwAAAAADcwAAAAABcwAAAAAAcwAAAAABcwAAAAACcwAAAAADcwAAAAADcwAAAAACcwAAAAADcwAAAAADcwAAAAACcwAAAAADcwAAAAABcwAAAAABcwAAAAACcwAAAAABcwAAAAACcwAAAAACcwAAAAADcwAAAAAAcwAAAAACcwAAAAACcwAAAAABcwAAAAADcwAAAAADcwAAAAACcwAAAAADcwAAAAACcwAAAAADcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAADgQAAAAAAcwAAAAACcwAAAAADcwAAAAACcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAACcwAAAAAAcwAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAADgQAAAAAAcwAAAAADcwAAAAABcwAAAAAAcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADcwAAAAACcwAAAAACcwAAAAAAcwAAAAAAcwAAAAABcwAAAAADcwAAAAAAgQAAAAAAcwAAAAACcwAAAAABcwAAAAACcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAABcwAAAAABcwAAAAADcwAAAAAAcwAAAAACcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAcwAAAAABcwAAAAAAcwAAAAADcwAAAAAAcwAAAAACcwAAAAACcwAAAAABcwAAAAACcwAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAACcwAAAAAAcwAAAAADcwAAAAADcwAAAAADcwAAAAADcwAAAAAAcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAAAcwAAAAABgQAAAAAAcwAAAAAAcwAAAAADcwAAAAADcwAAAAACcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAADcwAAAAADgQAAAAAAcwAAAAADcwAAAAAB + tiles: cwAAAAACcwAAAAAAcwAAAAADcwAAAAACcwAAAAABUQAAAAACcwAAAAAAUQAAAAACcwAAAAAAcwAAAAABcwAAAAACgQAAAAAAcwAAAAABcwAAAAAAcwAAAAABcwAAAAAAcwAAAAABcwAAAAADcwAAAAADcwAAAAADcwAAAAADcwAAAAACcwAAAAACcwAAAAABcwAAAAADcwAAAAADgQAAAAAAgQAAAAAAcwAAAAACcwAAAAAAcwAAAAAAcwAAAAADcwAAAAADcwAAAAABgQAAAAAAcwAAAAACcwAAAAADcwAAAAACcwAAAAABcwAAAAAAcwAAAAACcwAAAAAAcwAAAAAAcwAAAAADcwAAAAABcwAAAAACcwAAAAADcwAAAAACcwAAAAAAcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAAAcwAAAAACcwAAAAADcwAAAAACcwAAAAABcwAAAAABcwAAAAADcwAAAAAAcwAAAAADcwAAAAAAcwAAAAAAcwAAAAADcwAAAAADcwAAAAAAcwAAAAACcwAAAAAAcwAAAAAAcwAAAAABcwAAAAACcwAAAAABcwAAAAADcwAAAAADcwAAAAABcwAAAAAAcwAAAAADcwAAAAADcwAAAAAAcwAAAAACcwAAAAABcwAAAAACcwAAAAABcwAAAAABcwAAAAAAcwAAAAADcwAAAAADcwAAAAAAcwAAAAADcwAAAAADcwAAAAACcwAAAAACcwAAAAABcwAAAAADcwAAAAADcwAAAAADcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAABcwAAAAACcwAAAAAAcwAAAAAAcwAAAAABcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAAAgQAAAAAAcwAAAAAAcwAAAAACcwAAAAADcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAACcwAAAAAAcwAAAAAAgQAAAAAAcwAAAAACcwAAAAADcwAAAAADgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAABcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAAAcwAAAAABcwAAAAABcwAAAAADcwAAAAACcwAAAAABcwAAAAAAgQAAAAAAcwAAAAADcwAAAAABcwAAAAABcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAACcwAAAAADgQAAAAAAcwAAAAAAcwAAAAABcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAACcwAAAAABcwAAAAACcwAAAAAAcwAAAAAAcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAACcwAAAAABgQAAAAAAcwAAAAABcwAAAAABcwAAAAAAcwAAAAACcwAAAAADcwAAAAAAcwAAAAADcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAcwAAAAADcwAAAAAAcwAAAAABcwAAAAABcwAAAAABcwAAAAACcwAAAAAAcwAAAAADcwAAAAADcwAAAAAAcwAAAAABcwAAAAADcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAAAcwAAAAACgQAAAAAAcwAAAAADcwAAAAACcwAAAAABcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADcwAAAAACcwAAAAACgQAAAAAAcwAAAAABcwAAAAAA version: 6 -2,-3: ind: -2,-3 - tiles: YAAAAAADYAAAAAADYAAAAAADgQAAAAAAYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAcwAAAAACcwAAAAAAcwAAAAADcwAAAAAAcwAAAAACgQAAAAAAcwAAAAADcwAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAACcwAAAAAAcwAAAAABcwAAAAADcwAAAAAAcwAAAAABgQAAAAAAcwAAAAADcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAcwAAAAABcwAAAAADcwAAAAADcwAAAAACcwAAAAADgQAAAAAAcwAAAAACcwAAAAAAcwAAAAABcwAAAAADCwAAAAAAcwAAAAABcwAAAAAAcwAAAAACcwAAAAABgQAAAAAAcwAAAAACcwAAAAACcwAAAAABcwAAAAABcwAAAAABgQAAAAAAcwAAAAADcwAAAAAAcwAAAAADcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAACcwAAAAACcwAAAAADcwAAAAAAcwAAAAADcwAAAAACcwAAAAABcwAAAAAAcwAAAAADgQAAAAAAcwAAAAABcwAAAAACcwAAAAABcwAAAAADcwAAAAACcwAAAAAAcwAAAAACcwAAAAADcwAAAAABcwAAAAAAcwAAAAADcwAAAAACcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAADcwAAAAAAcwAAAAACcwAAAAAAcwAAAAABcwAAAAABcwAAAAACcwAAAAABgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAACcwAAAAACcwAAAAABcwAAAAADcwAAAAADcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABgQAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACYAAAAAABYAAAAAADYAAAAAADgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAcwAAAAACcwAAAAADcwAAAAACcwAAAAADcwAAAAAAcwAAAAAAcwAAAAABcwAAAAADYAAAAAAAYAAAAAADYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAACcwAAAAAAcwAAAAACcwAAAAACcwAAAAADcwAAAAACYAAAAAABYAAAAAABYAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAcwAAAAADcwAAAAACcwAAAAADgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAcwAAAAAAcwAAAAABYAAAAAACYAAAAAABYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAcwAAAAACcwAAAAADYAAAAAACYAAAAAABYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAcwAAAAADcwAAAAACgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAcwAAAAAAcwAAAAADgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAcwAAAAACcwAAAAAD + tiles: YAAAAAADYAAAAAADYAAAAAADgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAcwAAAAABcwAAAAACcwAAAAACcwAAAAADcwAAAAAAgQAAAAAAcwAAAAACcwAAAAADYAAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAACcwAAAAADcwAAAAACcwAAAAADcwAAAAAAcwAAAAAAgQAAAAAAcwAAAAADcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAcwAAAAADcwAAAAAAcwAAAAABcwAAAAACcwAAAAAAgQAAAAAAcwAAAAAAcwAAAAACcwAAAAADcwAAAAAACwAAAAAAcwAAAAABcwAAAAADcwAAAAACcwAAAAAAgQAAAAAAcwAAAAACcwAAAAADcwAAAAADcwAAAAAAcwAAAAABgQAAAAAAcwAAAAAAcwAAAAADcwAAAAABcwAAAAACcwAAAAABcwAAAAACcwAAAAADcwAAAAAAcwAAAAADcwAAAAAAcwAAAAABcwAAAAACcwAAAAADcwAAAAAAcwAAAAAAgQAAAAAAcwAAAAABcwAAAAABcwAAAAACcwAAAAAAcwAAAAADcwAAAAADcwAAAAADcwAAAAAAcwAAAAACcwAAAAACcwAAAAAAcwAAAAAAcwAAAAACcwAAAAACcwAAAAACcwAAAAADcwAAAAACcwAAAAACcwAAAAADcwAAAAAAcwAAAAADcwAAAAAAcwAAAAAAcwAAAAACcwAAAAAAgQAAAAAAcwAAAAACcwAAAAADcwAAAAADcwAAAAACcwAAAAADcwAAAAAAcwAAAAADcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAgQAAAAAAcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAcwAAAAACcwAAAAACcwAAAAACcwAAAAAAcwAAAAAAcwAAAAADcwAAAAABcwAAAAADYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAcwAAAAAAcwAAAAACcwAAAAADcwAAAAAAcwAAAAADcwAAAAADcwAAAAAAcwAAAAADYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAAAcwAAAAADgQAAAAAAgQAAAAAAcwAAAAADcwAAAAAAYAAAAAADYAAAAAACYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAfQAAAAADfQAAAAABfQAAAAADfQAAAAACfQAAAAABfQAAAAACcwAAAAABcwAAAAACYAAAAAADYAAAAAADYAAAAAABgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAfQAAAAADfQAAAAACfQAAAAACfQAAAAACfQAAAAAAfQAAAAADcwAAAAABcwAAAAABYAAAAAACYAAAAAADYAAAAAABgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAfQAAAAACfQAAAAAAfQAAAAACfQAAAAABfQAAAAADfQAAAAACcwAAAAABcwAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAfQAAAAAAfQAAAAADfQAAAAAAfQAAAAAAfQAAAAACfQAAAAACcwAAAAABcwAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADgQAAAAAAfQAAAAADfQAAAAABcwAAAAABcwAAAAAA version: 6 -3,-3: ind: -3,-3 - tiles: gQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAACcwAAAAABcwAAAAADgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAADcwAAAAADgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAACcwAAAAAAcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAADcwAAAAADcwAAAAACYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAABcwAAAAACcwAAAAADcwAAAAADgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADcwAAAAACcwAAAAABcwAAAAADcwAAAAABcwAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACcwAAAAACcwAAAAACcwAAAAACcwAAAAACcwAAAAABgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAADgQAAAAAAYAAAAAABYAAAAAACcwAAAAADcwAAAAACcwAAAAACcwAAAAACcwAAAAABYAAAAAACYAAAAAABYAAAAAACYAAAAAADYAAAAAABYAAAAAABYAAAAAADYAAAAAABgQAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAABgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAADgQAAAAAAYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAA + tiles: gQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAACcwAAAAADcwAAAAACgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADcwAAAAABcwAAAAADcwAAAAABgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAACcwAAAAABcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAADcwAAAAAAcwAAAAADYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAAAcwAAAAABcwAAAAADcwAAAAACgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACcwAAAAABcwAAAAAAcwAAAAADcwAAAAABcwAAAAADgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABcwAAAAACcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAADgQAAAAAAYAAAAAACYAAAAAACcwAAAAADcwAAAAACcwAAAAABcwAAAAADcwAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAABYAAAAAADYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAA version: 6 -4,-2: ind: -4,-2 - tiles: AAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAcAAAAAAAYAAAAAADYAAAAAADgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAcAAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: AAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAcAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAYAAAAAABgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAYAAAAAADYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAcAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -4,-3: ind: -4,-3 - tiles: AAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: AAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAACIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAABIAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAABIAAAAAABIAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAADIAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -4,-4: ind: -4,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAIQAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAADwAAAAAAgAAAAAAADwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAADwAAAAAAHwAAAAAADwAAAAAADwAAAAAADwAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAIQAAAAAADwAAAAAAgAAAAAAADwAAAAAADwAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAHwAAAAAADwAAAAAAAAAAAAAADwAAAAAADwAAAAAAgAAAAAAADwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAHwAAAAAAgQAAAAAAYAAAAAAAHwAAAAAAHwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAIQAAAAAAgAAAAAAADwAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAgQAAAAAADwAAAAAAAAAAAAAADwAAAAAADwAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHwAAAAAADwAAAAAAIQAAAAAADwAAAAAADwAAAAAADwAAAAAAgAAAAAAADwAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHwAAAAAADwAAAAAAgAAAAAAADwAAAAAAHwAAAAAAgAAAAAAADwAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAADwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAIQAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAADwAAAAAAgAAAAAAADwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAADwAAAAAAHwAAAAAADwAAAAAADwAAAAAADwAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAIQAAAAAADwAAAAAAgAAAAAAADwAAAAAADwAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADgQAAAAAAYAAAAAABHwAAAAAADwAAAAAAAAAAAAAADwAAAAAADwAAAAAAgAAAAAAADwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAHwAAAAAAgQAAAAAAYAAAAAAAHwAAAAAAHwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAIQAAAAAAgAAAAAAADwAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAHwAAAAAAHwAAAAAFHwAAAAAAgQAAAAAADwAAAAAAAAAAAAAADwAAAAAADwAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHwAAAAAADwAAAAAAIQAAAAAADwAAAAAADwAAAAAADwAAAAAAgAAAAAAADwAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHwAAAAAADwAAAAAAgAAAAAAADwAAAAAAHwAAAAAAgAAAAAAADwAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAFDwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -3,-4: ind: -3,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABAAAAAAAgQAAAAAABAAAAAAABAAAAAAAIgAAAAAAgQAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAAgQAAAAAAIgAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABAAAAAAAgQAAAAAABAAAAAAABAAAAAAAIgAAAAAAgQAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAAgQAAAAAAIgAAAAAAYAAAAAABgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAA version: 6 -2,-4: ind: -2,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAIgAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAIgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAcwAAAAAAcwAAAAADcwAAAAACIgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAACfQAAAAAAfQAAAAADfQAAAAACgQAAAAAAcwAAAAABcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAABfQAAAAAAfQAAAAAAfQAAAAABgQAAAAAAcwAAAAADcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAABfQAAAAABfQAAAAAAfQAAAAAAgQAAAAAAcwAAAAADcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAABfQAAAAACfQAAAAACfQAAAAAAgQAAAAAAcwAAAAABcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAABgQAAAAAAgQAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAABcwAAAAABcwAAAAADcwAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAADCwAAAAAAgQAAAAAAcwAAAAADcwAAAAABcwAAAAABcwAAAAADcwAAAAACcwAAAAAAcwAAAAABcwAAAAABgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAcwAAAAACcwAAAAADcwAAAAABcwAAAAACcwAAAAAAgQAAAAAAcwAAAAAAcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADcwAAAAAB + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAIgAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAgQAAAAAAYAAAAAADIgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAcwAAAAABcwAAAAADcwAAAAAAIgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAACgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAABfQAAAAADfQAAAAACfQAAAAACgQAAAAAAcwAAAAABcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAADfQAAAAAAfQAAAAACfQAAAAACgQAAAAAAcwAAAAADcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAABfQAAAAADfQAAAAAAfQAAAAAAgQAAAAAAcwAAAAACcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAADfQAAAAADfQAAAAAAgQAAAAAAcwAAAAACcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAABgQAAAAAAgQAAAAAAcwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAcwAAAAADcwAAAAAAcwAAAAABcwAAAAAAcwAAAAAAgQAAAAAAcwAAAAABcwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAACCwAAAAAAgQAAAAAAcwAAAAADcwAAAAAAcwAAAAADcwAAAAADcwAAAAADcwAAAAABcwAAAAABcwAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAcwAAAAABcwAAAAAAcwAAAAAAcwAAAAABcwAAAAABgQAAAAAAcwAAAAADcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADcwAAAAAD version: 6 -1,-4: ind: -1,-4 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABcwAAAAABcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAABYAAAAAABcwAAAAAAcwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAASgAAAAAASgAAAAAAgQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAcwAAAAABcwAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAADAAAAAABgQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAADAAAAAACSgAAAAAAgQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAcwAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAACgQAAAAAADAAAAAACSgAAAAAADAAAAAAADAAAAAACgQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAcwAAAAACcwAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAADgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAcwAAAAACgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADgQAAAAAASgAAAAAADAAAAAADSgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAADcwAAAAACcwAAAAADgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAADcwAAAAAAcwAAAAABcwAAAAABcwAAAAACcwAAAAAAcwAAAAADgQAAAAAAcwAAAAADcwAAAAAAcwAAAAABcwAAAAAAcwAAAAACgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAADcwAAAAADcwAAAAACcwAAAAADcwAAAAABgQAAAAAAcwAAAAAAcwAAAAABcwAAAAAAcwAAAAABcwAAAAABgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAUQAAAAAAcwAAAAAAUQAAAAAAcwAAAAACcwAAAAAAcwAAAAABgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAABcwAAAAABcwAAAAABgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAADUQAAAAAAcwAAAAAAUQAAAAAAcwAAAAAAcwAAAAAAcwAAAAADcwAAAAAAcwAAAAABcwAAAAACcwAAAAABcwAAAAADcwAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAABUQAAAAAAcwAAAAAAUQAAAAAAcwAAAAADcwAAAAABcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACcwAAAAACcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAYAAAAAABYAAAAAAAcwAAAAABcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAcwAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADSgAAAAAASgAAAAAAgQAAAAAADAAAAAAADAAAAAAADAAAAAABDAAAAAABcwAAAAAAcwAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAADAAAAAACgQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAABcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAADAAAAAADSgAAAAAAgQAAAAAADAAAAAAADAAAAAACDAAAAAADDAAAAAABcwAAAAADgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAADgQAAAAAADAAAAAABSgAAAAAADAAAAAAADAAAAAABgQAAAAAADAAAAAACDAAAAAABDAAAAAADDAAAAAADcwAAAAACcwAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAABgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAADAAAAAADDAAAAAABDAAAAAABDAAAAAAAcwAAAAADgQAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAACgQAAAAAASgAAAAAADAAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAAAcwAAAAABcwAAAAADgQAAAAAAgQAAAAAAcwAAAAACcwAAAAABcwAAAAABcwAAAAAAcwAAAAAAcwAAAAACcwAAAAABcwAAAAABcwAAAAAAgQAAAAAAcwAAAAABcwAAAAACcwAAAAAAcwAAAAAAcwAAAAADgQAAAAAAcwAAAAADcwAAAAACcwAAAAAAcwAAAAAAcwAAAAADcwAAAAADcwAAAAACcwAAAAACcwAAAAACgQAAAAAAcwAAAAADcwAAAAACcwAAAAACcwAAAAACcwAAAAACgQAAAAAAcwAAAAABcwAAAAADcwAAAAADUQAAAAABcwAAAAAAUQAAAAACcwAAAAADcwAAAAAAcwAAAAAAgQAAAAAAcwAAAAADcwAAAAABcwAAAAACcwAAAAADcwAAAAABgQAAAAAAcwAAAAACcwAAAAADcwAAAAACUQAAAAAAcwAAAAACUQAAAAAAcwAAAAADcwAAAAAAcwAAAAABcwAAAAADcwAAAAABcwAAAAADcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAADUQAAAAABcwAAAAADUQAAAAABcwAAAAAAcwAAAAADcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 0,-4: ind: 0,-4 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACQAAAAAACQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACQAAAAAACQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAJgAAAAAACQAAAAAACQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJgAAAAAAJQAAAAAACQAAAAAACQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAcwAAAAADcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAAAAAAAAAcwAAAAAAcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAcwAAAAABcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAAAAAAAAAcwAAAAACcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAAAAAAAAAcwAAAAADcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAAAAAAAAAcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAAAAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACQAAAAAACQAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACQAAAAADCQAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAJgAAAAADCQAAAAADCQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJgAAAAAAJQAAAAADCQAAAAADCQAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAcwAAAAADcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAAAAAAAAAcwAAAAABcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAAAAAAAAAcwAAAAAAcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAAAAAAAAAcwAAAAACcwAAAAADcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAAAAAAAAAcwAAAAACcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAAAAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAAAAAAAAA version: 6 0,-3: ind: 0,-3 - tiles: cwAAAAABcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAAAAAAAAAcwAAAAABcwAAAAAAcwAAAAABIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAAAAAAAAAcwAAAAABcwAAAAABgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAAAAAAAAAcwAAAAADcwAAAAABgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAcwAAAAADcwAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAAAAAAAAAcwAAAAABgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAABcwAAAAACIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAABcwAAAAADcwAAAAACgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAADcwAAAAADcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAACcwAAAAABcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAASgAAAAAAcwAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAASgAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAASgAAAAAAcwAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAASgAAAAAA + tiles: cwAAAAABcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAAAAAAAAAcwAAAAABcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAAAAAAAAAcwAAAAACcwAAAAACcwAAAAACIAAAAAAAIAAAAAADIAAAAAADIAAAAAACIAAAAAADIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAAAAAAAAAcwAAAAAAcwAAAAADgQAAAAAAIAAAAAACIAAAAAAAIAAAAAACIAAAAAADIAAAAAACIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAAAAAAAAAcwAAAAACcwAAAAAAgQAAAAAAIAAAAAACIAAAAAADIAAAAAADIAAAAAADIAAAAAACIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAAAAAAAAAcwAAAAABcwAAAAACcwAAAAADIAAAAAABIAAAAAABIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAcwAAAAAAcwAAAAABgQAAAAAAIAAAAAACIAAAAAAAIAAAAAABIAAAAAACIAAAAAABIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAAAAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAAAIAAAAAABIAAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAIAAAAAABIAAAAAADIAAAAAADIAAAAAAAIAAAAAADIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAACcwAAAAABcwAAAAACgQAAAAAAIAAAAAACIAAAAAABIAAAAAABIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAADcwAAAAACcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAcwAAAAACcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAADfQAAAAABgQAAAAAASgAAAAAAcwAAAAACgQAAAAAAcwAAAAAAcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAACfQAAAAAAfQAAAAADgQAAAAAASgAAAAAAcwAAAAACcwAAAAABcwAAAAAAcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAABfQAAAAADgQAAAAAASgAAAAAAcwAAAAABgQAAAAAAcwAAAAABcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAASgAAAAAA version: 6 1,-2: ind: 1,-2 - tiles: SgAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAADgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAADgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAACYAAAAAABYAAAAAABYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAABYAAAAAABgQAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAACgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAACgQAAAAAAYAAAAAABYAAAAAACYAAAAAABgQAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAADYAAAAAADYAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAACgQAAAAAAYAAAAAABYAAAAAABYAAAAAABgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAACYAAAAAACgQAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAABgQAAAAAAYAAAAAABYAAAAAABYAAAAAACgQAAAAAAYAAAAAACYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAADgQAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAADYAAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAABYAAAAAADYAAAAAADYAAAAAAD + tiles: SgAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAADgQAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAADgQAAAAAAYAAAAAACYAAAAAABYAAAAAACgQAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAACgQAAAAAAYAAAAAABYAAAAAACYAAAAAABgQAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAACgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAYAAAAAADYAAAAAABYAAAAAABgQAAAAAAYAAAAAADYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAABYAAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAABYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAACYAAAAAABYAAAAAAAYAAAAAABYAAAAAAD version: 6 1,-1: ind: 1,-1 - tiles: YAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAADgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAA + tiles: YAAAAAAAYAAAAAACYAAAAAACgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAADgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAAB version: 6 1,0: ind: 1,0 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAYAAAAAACgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAACwAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAcAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAACwAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAACwAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAcAAAAAAACwAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAcAAAAAAACwAAAAAACwAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAYAAAAAABgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAABIAAAAAABIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAADIAAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAIAAAAAABIAAAAAACIAAAAAABIAAAAAABgQAAAAAACwAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAcAAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAACwAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAACwAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAcAAAAAAACwAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAcAAAAAAACwAAAAAACwAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 2,-1: ind: 2,-1 - tiles: YAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAYAAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAABgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAAgAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAABwAAAAAAgQAAAAAAAwAAAAAAAgAAAAAABwAAAAAAgQAAAAAAfQAAAAAAfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAACwAAAAAAEgAAAAAACwAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAACBwAAAAAAYAAAAAADgQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAfQAAAAABYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAfQAAAAACgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAABwAAAAAABwAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAA + tiles: YAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAYAAAAAADgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAADYAAAAAADgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAAgAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAAAgQAAAAAAYAAAAAABYAAAAAACBwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABCwAAAAAACwAAAAAACwAAAAAAgQAAAAAABwAAAAAAgQAAAAAAAwAAAAABAgAAAAABBwAAAAAAgQAAAAAAfQAAAAADfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABCwAAAAAAEgAAAAAACwAAAAAAgQAAAAAAYAAAAAACgQAAAAAAYAAAAAADBwAAAAAAYAAAAAACgQAAAAAAfQAAAAACfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACCwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAQgAAAAAAQgAAAAAAfQAAAAACYAAAAAACIAAAAAACIAAAAAADIAAAAAABIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAfQAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAABIAAAAAACgQAAAAAAIAAAAAABIAAAAAADgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAAAIAAAAAAAIAAAAAADYAAAAAAAIAAAAAABIAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAADIAAAAAABgQAAAAAAIAAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAADAgAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACBwAAAAAABwAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAA version: 6 2,0: ind: 2,0 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAAwAAAAAABwAAAAAABwAAAAAAAwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAAgAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAACwAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAwAAAAABBwAAAAAAYAAAAAABYAAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAAgAAAAAAAwAAAAAAgQAAAAAAAgAAAAABBwAAAAAAAgAAAAABBwAAAAAABwAAAAAAYAAAAAABYAAAAAABgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAABwAAAAAAgQAAAAAABwAAAAAAAwAAAAAAgQAAAAAABwAAAAAAYAAAAAABYAAAAAABgQAAAAAAYAAAAAABgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAAwAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAwAAAAAAYAAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAAgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAAwAAAAAABwAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAYAAAAAAAAwAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAAwAAAAACBwAAAAAABwAAAAAAAwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAIAAAAAACIAAAAAABgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAAgAAAAABgQAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAABIAAAAAADIAAAAAABgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAIAAAAAABIAAAAAADgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAIAAAAAAAIAAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAACCwAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAwAAAAACBwAAAAAAYAAAAAABgQAAAAAAYAAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAAgAAAAABAwAAAAABgQAAAAAAAgAAAAABBwAAAAAAAgAAAAAABwAAAAAABwAAAAAAYAAAAAACYAAAAAABgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADBwAAAAAAgQAAAAAABwAAAAAAAwAAAAACgQAAAAAABwAAAAAAYAAAAAABYAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAAwAAAAACgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAwAAAAABBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAwAAAAACYAAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAAgAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAAwAAAAAABwAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAgAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAYAAAAAABAwAAAAAEgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 2,-2: ind: 2,-2 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAADYAAAAAABYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABDgAAAAAADgAAAAAADgAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACDgAAAAAAUQAAAAAADgAAAAAAYAAAAAABYAAAAAACgQAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAABYAAAAAADDgAAAAAADgAAAAAADgAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAADYAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAADYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAABgQAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAAAYAAAAAABYAAAAAACYAAAAAACgQAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACAgAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAAgAAAAAABwAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAYAAAAAAAgQAAAAAAAwAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAYAAAAAACBwAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAAYAAAAAACgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAYAAAAAABYAAAAAABgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAADgQAAAAAABwAAAAAAgQAAAAAAAgAAAAAAgQAAAAAACwAAAAAACwAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAABgQAAAAAABwAAAAAAYAAAAAADYAAAAAACAwAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAADgQAAAAAABwAAAAAABwAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAAwAAAAAABwAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABgQAAAAAABwAAAAAAYAAAAAAAAgAAAAAABwAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAACwAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAYAAAAAAAYAAAAAAC + tiles: gQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAADYAAAAAABYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAYAAAAAACgQAAAAAAYAAAAAADgQAAAAAAYAAAAAADYAAAAAABDgAAAAACDgAAAAAADgAAAAACYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABDgAAAAADUQAAAAABDgAAAAABYAAAAAACYAAAAAABgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAABYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAYAAAAAADYAAAAAABDgAAAAACDgAAAAADDgAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAABYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADAgAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAAgAAAAABBwAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAABYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAAwAAAAABgQAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAABgQAAAAAAYAAAAAADBwAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAACwAAAAAACwAAAAAAYAAAAAACgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAYAAAAAABYAAAAAACgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAACgQAAAAAABwAAAAAAgQAAAAAAAgAAAAABgQAAAAAACwAAAAAACwAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAADgQAAAAAABwAAAAAAYAAAAAACYAAAAAACAwAAAAACgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAADYAAAAAABYAAAAAABgQAAAAAABwAAAAAABwAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAAwAAAAADBwAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAABwAAAAAAYAAAAAAAAgAAAAAABwAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAACwAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAYAAAAAACYAAAAAAA version: 6 1,-3: ind: 1,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAACYAAAAAABYAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAADYAAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAABYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAADYAAAAAADYAAAAAADgQAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAACYAAAAAADgQAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAAAgQAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAACgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAABYAAAAAABYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAABgQAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAAAgQAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAABgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAA version: 6 1,-4: ind: 1,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAAC + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAAB version: 6 2,-3: ind: 2,-3 - tiles: gQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADQAAAAAAgQAAAAAAYAAAAAADYAAAAAABgQAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUQAAAAADCwAAAAAAYAAAAAADYAAAAAABgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAA + tiles: gQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADQAAAAABgQAAAAAAYAAAAAABYAAAAAADgQAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUQAAAAABCwAAAAAAYAAAAAAAYAAAAAABgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADgQAAAAAA version: 6 2,-4: ind: 2,-4 @@ -212,11 +212,11 @@ entities: version: 6 3,-3: ind: 3,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAADgQAAAAAAgAAAAAAAgAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAACgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAABgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAgAAAAAAAgAAAAAAA version: 6 3,-4: ind: 3,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,-4: ind: 4,-4 @@ -224,103 +224,103 @@ entities: version: 6 3,-2: ind: 3,-2 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAAAAAAAAAYAAAAAADYAAAAAABgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAAAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAABYAAAAAACYAAAAAACgQAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAADYAAAAAADYAAAAAADgQAAAAAAAAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAABYAAAAAABgQAAAAAAAAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAACgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAABYAAAAAABgQAAAAAAYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAADYAAAAAABYAAAAAABgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAIAAAAAAAHgAAAAAAHgAAAAAAIAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAACgQAAAAAAIAAAAAAAHgAAAAAAHgAAAAAAIAAAAAAAYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAYAAAAAADYAAAAAABYAAAAAADgQAAAAAAYAAAAAADYAAAAAABYAAAAAACIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAACgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAABYAAAAAACYAAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADgQAAAAAAAAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAAAAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAAAAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAYAAAAAABYAAAAAABYAAAAAACgQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAYAAAAAABYAAAAAABYAAAAAABgQAAAAAAIAAAAAAAIAAAAAABIAAAAAADIAAAAAABgQAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAADYAAAAAADYAAAAAACgQAAAAAAYAAAAAADgQAAAAAAYAAAAAABgQAAAAAAIAAAAAADHgAAAAACHgAAAAABIAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAIAAAAAADHgAAAAAAHgAAAAAAIAAAAAABYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAABgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAIAAAAAABIAAAAAAAIAAAAAADIAAAAAABIAAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAABgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAABYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAADgQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAADgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAA version: 6 3,-1: ind: 3,-1 - tiles: YAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAAAYAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAACwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAACwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAfQAAAAAAfQAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAfQAAAAAAfQAAAAADYAAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAABYAAAAAACYAAAAAADgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAfQAAAAADgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAfQAAAAADfQAAAAACgQAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAfQAAAAABfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAABwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAUQAAAAAAIAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAACwAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAIAAAAAAAUQAAAAAAIAAAAAAAIAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYAAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAA + tiles: YAAAAAACYAAAAAABYAAAAAACYAAAAAADYAAAAAABYAAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAACwAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAACwAAAAAAYAAAAAABYAAAAAACYAAAAAAAfQAAAAABfQAAAAADYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAfQAAAAACfQAAAAADYAAAAAABYAAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAADYAAAAAABYAAAAAADgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAfQAAAAADfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAfQAAAAABfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABIAAAAAAAIAAAAAADIAAAAAACIAAAAAAAYAAAAAAAgQAAAAAAIAAAAAACIAAAAAABIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAIAAAAAAAIAAAAAACUQAAAAAAIAAAAAABYAAAAAABIAAAAAADIAAAAAAAIAAAAAABIAAAAAAAIAAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAAYAAAAAAAYAAAAAACIAAAAAABUQAAAAADIAAAAAABIAAAAAADYAAAAAABIAAAAAACIAAAAAAAIAAAAAADIAAAAAABIAAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAYAAAAAAAYAAAAAACIAAAAAACIAAAAAAAIAAAAAACIAAAAAABYAAAAAADgQAAAAAAIAAAAAABIAAAAAAAIAAAAAACgQAAAAAA version: 6 4,-2: ind: 4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,-3: ind: 4,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAAC version: 6 5,-3: ind: 5,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,-2: ind: 5,-2 - tiles: YAAAAAABYAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABYAAAAAACgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: YAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAACYAAAAAACgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,-1: ind: 4,-1 - tiles: gQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAA + tiles: gQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,1: ind: 1,1 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAEAAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAEAAAAAAAfQAAAAAAYAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAYAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAEAAAAAAAfQAAAAAAEAAAAAAAYAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAIAAAAAADIAAAAAAAIAAAAAACIAAAAAABIAAAAAACIAAAAAACIAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAIAAAAAACIAAAAAABIAAAAAABIAAAAAAAIAAAAAABIAAAAAACIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAQgAAAAAAgAAAAAAAgQAAAAAAIAAAAAABIAAAAAAAIAAAAAABIAAAAAAAIAAAAAABIAAAAAADIAAAAAAAIAAAAAABQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAAAIAAAAAABIAAAAAACIAAAAAADIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgAAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAACIAAAAAABIAAAAAADIAAAAAAAIAAAAAADgQAAAAAAgAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAADIAAAAAABIAAAAAACIAAAAAACgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAA + tiles: gQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAEAAAAAAGfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAEAAAAAABfQAAAAADYAAAAAACgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAYAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAEAAAAAABfQAAAAABEAAAAAADYAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAfQAAAAABgQAAAAAAfQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAABIAAAAAAAIAAAAAAAIAAAAAACIAAAAAADgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAACIAAAAAADIAAAAAABIAAAAAACIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAQgAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAADIAAAAAABIAAAAAADIAAAAAAAIAAAAAACIAAAAAAAIAAAAAACQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAAAIAAAAAACIAAAAAADIAAAAAADIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgAAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAACIAAAAAABIAAAAAADIAAAAAADIAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAAAIAAAAAADIAAAAAABIAAAAAABgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAA version: 6 0,1: ind: 0,1 - tiles: gQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAADAAAAAADDAAAAAACDAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAADAAAAAADDAAAAAAADAAAAAACgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAACAAAAAACDAAAAAADDAAAAAADgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAACAAAAAABCAAAAAACCAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAACAAAAAACCAAAAAAACAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAACAAAAAAADAAAAAADDAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAADAAAAAABDAAAAAACDAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAADAAAAAACDAAAAAAADAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAACfQAAAAABgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAA + tiles: gQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAADDAAAAAADDAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAADAAAAAADDAAAAAADDAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAACAAAAAAADAAAAAABDAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAACAAAAAABCAAAAAAACAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAACAAAAAACCAAAAAADCAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAACAAAAAAADAAAAAACDAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAADAAAAAACDAAAAAADDAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAADAAAAAADDAAAAAAADAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAADfQAAAAACgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAA version: 6 -3,1: ind: -3,1 - tiles: gAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAACgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAAAYAAAAAACAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAACAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAABIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAACIAAAAAACIAAAAAABgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAADIAAAAAAAIAAAAAAAIAAAAAABIAAAAAABIAAAAAABIAAAAAACIAAAAAACIAAAAAABIAAAAAADIAAAAAADIAAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAACIAAAAAAAIAAAAAADIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAABIAAAAAAAIAAAAAAAIAAAAAADYAAAAAADYAAAAAADIAAAAAABIAAAAAACIAAAAAAAIAAAAAACIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAACYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAIAAAAAADIAAAAAACIAAAAAABgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAABYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAACgQAAAAAAYAAAAAADYAAAAAABYAAAAAACgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAUQAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAACYAAAAAABYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAABYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAADgQAAAAAAYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: gAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAABYAAAAAACYAAAAAABgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAADgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAAAIAAAAAADAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAABIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAAAIAAAAAACIAAAAAABgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAABIAAAAAADIAAAAAACIAAAAAABIAAAAAACIAAAAAAAIAAAAAABIAAAAAADIAAAAAABIAAAAAADIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAACIAAAAAABIAAAAAACIAAAAAAAIAAAAAADgQAAAAAAIAAAAAAAIAAAAAABIAAAAAADIAAAAAAAIAAAAAAAIAAAAAACYAAAAAABYAAAAAADIAAAAAACIAAAAAAAIAAAAAACIAAAAAADIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAACIAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAACIAAAAAADgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAACYAAAAAABgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADUQAAAAACUQAAAAAAUQAAAAAAUQAAAAABUQAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAADUQAAAAABYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAABYAAAAAADYAAAAAADYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAABYAAAAAACYAAAAAADYAAAAAADgQAAAAAAYAAAAAABYAAAAAADYAAAAAABgQAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -2,1: ind: -2,1 - tiles: YAAAAAABYAAAAAABYAAAAAABYAAAAAAAYAAAAAADYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAYAAAAAADgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJwAAAAAAJwAAAAAAgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJwAAAAAAJwAAAAAAgQAAAAAAYAAAAAADYAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJwAAAAAAJwAAAAAAgQAAAAAAYAAAAAABYAAAAAADIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJwAAAAAAJwAAAAAAgQAAAAAAYAAAAAACYAAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAJwAAAAAAJwAAAAAAgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJwAAAAAAJwAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAADgQAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAAAYAAAAAACUQAAAAAAUQAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAADUQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAACgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAIAAAAAACIAAAAAABIAAAAAADIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAD + tiles: YAAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJwAAAAABJwAAAAAAgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJwAAAAACJwAAAAAEgQAAAAAAYAAAAAABYAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJwAAAAAAJwAAAAAAgQAAAAAAYAAAAAABYAAAAAABIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJwAAAAABJwAAAAAFgQAAAAAAYAAAAAADYAAAAAACIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADJwAAAAAEJwAAAAADgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJwAAAAACJwAAAAACgQAAAAAAYAAAAAABYAAAAAABYAAAAAABgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAABYAAAAAADgQAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAACYAAAAAADUQAAAAADUQAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAADYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAABUQAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAADgQAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAIAAAAAADIAAAAAAAIAAAAAABIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAC version: 6 -1,1: ind: -1,1 - tiles: YAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAcAAAAAAADQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAADgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAAADAAAAAAADAAAAAACDAAAAAACDAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAABDAAAAAAADAAAAAACDAAAAAABDAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAADDAAAAAABCAAAAAABCAAAAAACCAAAAAABYAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAADCAAAAAADCAAAAAABCAAAAAABCAAAAAABCAAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAABYAAAAAABYAAAAAADYAAAAAAAYAAAAAACYAAAAAABYAAAAAAACAAAAAACCAAAAAACCAAAAAACCAAAAAACCAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAABDAAAAAAACAAAAAAACAAAAAABCAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAACDAAAAAADDAAAAAACDAAAAAAADAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAAADAAAAAABDAAAAAADDAAAAAADDAAAAAAA + tiles: YAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAUgAAAAAAYAAAAAAAYAAAAAABgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAACYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAADgQAAAAAAYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAACDAAAAAADDAAAAAACDAAAAAABDAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAAADAAAAAACDAAAAAADDAAAAAACDAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAADDAAAAAACCAAAAAAACAAAAAAACAAAAAABYAAAAAACYAAAAAACYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAADCAAAAAACCAAAAAADCAAAAAADCAAAAAACCAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAADYAAAAAACCAAAAAABCAAAAAAACAAAAAACCAAAAAACCAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAACDAAAAAAACAAAAAABCAAAAAAACAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAADDAAAAAABDAAAAAACDAAAAAADDAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAAADAAAAAADDAAAAAABDAAAAAACDAAAAAAD version: 6 -4,1: ind: -4,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAADIAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAACIAAAAAABIAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAHAAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAcwAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAADIAAAAAABIAAAAAACIAAAAAABIAAAAAADYAAAAAABYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAACIAAAAAABIAAAAAADIAAAAAACIAAAAAADYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAABIAAAAAAAIAAAAAADIAAAAAABIAAAAAADIAAAAAAAYAAAAAACYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAIAAAAAABIAAAAAABIAAAAAADIAAAAAAAIAAAAAADIAAAAAAAIAAAAAADgQAAAAAAYAAAAAAAYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAABIAAAAAACIAAAAAABIAAAAAACIAAAAAADYAAAAAABYAAAAAAAYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAABIAAAAAADIAAAAAADIAAAAAABIAAAAAADYAAAAAAAYAAAAAACYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAACIAAAAAABIAAAAAABIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAADIAAAAAACIAAAAAABIAAAAAAAIAAAAAACIAAAAAAAIAAAAAAAYAAAAAADYAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAHAAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAcwAAAAACEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAABIAAAAAADIAAAAAADIAAAAAABIAAAAAACYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAACIAAAAAAAIAAAAAADIAAAAAADIAAAAAABYAAAAAAAYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAADIAAAAAABIAAAAAADIAAAAAACIAAAAAACIAAAAAADYAAAAAADYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAACIAAAAAAAIAAAAAABIAAAAAABIAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAADIAAAAAABIAAAAAABIAAAAAADIAAAAAACIAAAAAAAYAAAAAACYAAAAAABYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAACIAAAAAABIAAAAAABIAAAAAACIAAAAAACIAAAAAACIAAAAAADYAAAAAADYAAAAAAAYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAABIAAAAAAAIAAAAAABIAAAAAABIAAAAAAAgQAAAAAAYAAAAAABYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAADIAAAAAADIAAAAAACIAAAAAABIAAAAAAAIAAAAAACIAAAAAABYAAAAAACYAAAAAAC version: 6 -3,2: ind: -3,2 - tiles: YAAAAAADYAAAAAACgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAABgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAQgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAQgAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAABIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAADgQAAAAAAYAAAAAACYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAACgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAADgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAABIAAAAAADIAAAAAAAYAAAAAABgQAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAACIAAAAAADIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAADIAAAAAABIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAA + tiles: YAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAAAfQAAAAABgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAABgQAAAAAAfQAAAAABfQAAAAADfQAAAAACfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAABYAAAAAACQgAAAAAAfQAAAAACfQAAAAADfQAAAAACfQAAAAADQgAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAADIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAADgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAACgQAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAACIAAAAAACYAAAAAADgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAABIAAAAAADIAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAADIAAAAAACIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAA version: 6 -2,2: ind: -2,2 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAABIAAAAAABIAAAAAABIAAAAAADIAAAAAACIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAACIAAAAAADIAAAAAABIAAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAACYAAAAAABgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAACYAAAAAACgQAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAACYAAAAAACgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADEwAAAAACEwAAAAAAEwAAAAABEwAAAAABEwAAAAAAEwAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAABEwAAAAADEwAAAAAAEwAAAAAAEwAAAAADEwAAAAAAEwAAAAACYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACEwAAAAACEwAAAAADEwAAAAAAEwAAAAADEwAAAAAAEwAAAAABgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAADEwAAAAAAEwAAAAACEwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAEwAAAAADEwAAAAABEwAAAAAAEwAAAAACEwAAAAACgQAAAAAAgQAAAAAAfQAAAAAD + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAACIAAAAAABIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAIAAAAAAAIAAAAAADIAAAAAABIAAAAAACIAAAAAABIAAAAAAAIAAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAIAAAAAACIAAAAAADIAAAAAAAIAAAAAACIAAAAAABIAAAAAACIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAABYAAAAAABYAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAABYAAAAAACYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAABEwAAAAACEwAAAAADEwAAAAAAEwAAAAABEwAAAAAAEwAAAAABgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAACEwAAAAADEwAAAAABEwAAAAAAEwAAAAACEwAAAAACEwAAAAAAYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAADEwAAAAABEwAAAAADEwAAAAACEwAAAAABEwAAAAABEwAAAAACgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAEwAAAAADEwAAAAAAEwAAAAAAEwAAAAABEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAgQAAAAAAEwAAAAAAEwAAAAACEwAAAAACEwAAAAABEwAAAAABgQAAAAAAgQAAAAAAfQAAAAAC version: 6 -1,2: ind: -1,2 - tiles: YAAAAAABYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAABYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAADfQAAAAAAfQAAAAACgQAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: YAAAAAADYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAABYAAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAAAfQAAAAACfQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 0,2: ind: 0,2 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAfQAAAAACfQAAAAADfQAAAAABgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAcwAAAAACcwAAAAAAcwAAAAAAcwAAAAADcwAAAAABcwAAAAACcwAAAAADcwAAAAABcwAAAAACcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAABcwAAAAABcwAAAAACcwAAAAABcwAAAAABcwAAAAACcwAAAAABcwAAAAAAcwAAAAACgQAAAAAAfQAAAAABfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAcwAAAAABcwAAAAABFAAAAAACFAAAAAABFAAAAAABFAAAAAACFAAAAAAAFAAAAAABcwAAAAABcwAAAAAAgQAAAAAAfQAAAAAAfQAAAAADfQAAAAADfQAAAAACgQAAAAAAcwAAAAAAcwAAAAAAFAAAAAABFAAAAAABFAAAAAABFAAAAAAAFAAAAAACFAAAAAADcwAAAAADcwAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAcwAAAAABcwAAAAACFAAAAAAAFAAAAAABFAAAAAADFAAAAAAAFAAAAAADFAAAAAABcwAAAAABcwAAAAADgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAcwAAAAACcwAAAAACFAAAAAABFAAAAAADFAAAAAADFAAAAAACFAAAAAADFAAAAAADcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAABcwAAAAABcwAAAAABcwAAAAADcwAAAAACcwAAAAACcwAAAAACcwAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAACYAAAAAACcwAAAAACcwAAAAAAcwAAAAADcwAAAAACcwAAAAACcwAAAAAAcwAAAAABcwAAAAABcwAAAAADcwAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAABYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAfQAAAAADfQAAAAAAfQAAAAADfQAAAAAAFwAAAAADFwAAAAAAFwAAAAADFwAAAAABFwAAAAAC + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAfQAAAAACfQAAAAAAfQAAAAACgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAcwAAAAACcwAAAAACcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAcwAAAAACcwAAAAABcwAAAAABcwAAAAADcwAAAAADcwAAAAACcwAAAAACcwAAAAACcwAAAAABcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADcwAAAAABcwAAAAACcwAAAAAAcwAAAAABcwAAAAABcwAAAAABcwAAAAADcwAAAAAAcwAAAAACgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAACfQAAAAABgQAAAAAAcwAAAAADcwAAAAABFAAAAAABFAAAAAAAFAAAAAACFAAAAAAAFAAAAAAAFAAAAAABcwAAAAAAcwAAAAAAgQAAAAAAfQAAAAABfQAAAAAAfQAAAAABfQAAAAACgQAAAAAAcwAAAAABcwAAAAACFAAAAAADFAAAAAAAFAAAAAABFAAAAAAAFAAAAAAAFAAAAAACcwAAAAAAcwAAAAADgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAcwAAAAADcwAAAAABFAAAAAACFAAAAAADFAAAAAACFAAAAAABFAAAAAABFAAAAAADcwAAAAAAcwAAAAABgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAcwAAAAACcwAAAAACFAAAAAABFAAAAAADFAAAAAAAFAAAAAAAFAAAAAACFAAAAAACcwAAAAADcwAAAAABgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAAAcwAAAAACcwAAAAACcwAAAAADcwAAAAADcwAAAAABcwAAAAAAcwAAAAADcwAAAAACgQAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAADYAAAAAACcwAAAAADcwAAAAABcwAAAAADcwAAAAAAcwAAAAACcwAAAAAAcwAAAAABcwAAAAACcwAAAAAAcwAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAABYAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAADYAAAAAACYAAAAAABYAAAAAACYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAACfQAAAAABFwAAAAAAFwAAAAAAFwAAAAACFwAAAAABFwAAAAAA version: 6 2,1: ind: 2,1 - tiles: YAAAAAAABwAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAYAAAAAADCwAAAAAAYAAAAAACYAAAAAACgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAAABwAAAAAAgQAAAAAACwAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAABgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAABYAAAAAACAwAAAAAAYAAAAAAAgQAAAAAACwAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAACwAAAAAAgQAAAAAADQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAACBwAAAAAAYAAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAAAgQAAAAAABwAAAAAAAgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAADYAAAAAAAYAAAAAABYAAAAAACYAAAAAABgQAAAAAAgQAAAAAABwAAAAAAYAAAAAAAAwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAYAAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAIAAAAAACIAAAAAACIAAAAAADIAAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAADIAAAAAABgQAAAAAAgQAAAAAAQgAAAAAAgQAAAAAAYAAAAAADBwAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAADIAAAAAACgQAAAAAAIAAAAAADIAAAAAACIAAAAAACIAAAAAADgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAYAAAAAABgQAAAAAAIAAAAAADIAAAAAADIAAAAAACIAAAAAADIAAAAAADIAAAAAAAIAAAAAABIAAAAAABIAAAAAAAgQAAAAAAIAAAAAAAQgAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAIAAAAAAAIAAAAAADIAAAAAABIAAAAAACgQAAAAAAIAAAAAADIAAAAAACIAAAAAACIAAAAAAAIAAAAAACIAAAAAACQgAAAAAAgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAIAAAAAADIAAAAAABIAAAAAACIAAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAAAIAAAAAABgQAAAAAAgQAAAAAA + tiles: YAAAAAACBwAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAYAAAAAABCwAAAAAAYAAAAAADYAAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAAABwAAAAAAgQAAAAAACwAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAAwAAAAAAYAAAAAABgQAAAAAACwAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAACwAAAAAAgQAAAAAADQAAAAABgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAAAYAAAAAABBwAAAAAAYAAAAAABgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAADgQAAAAAABwAAAAAAAgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAADYAAAAAABgQAAAAAAgQAAAAAABwAAAAAAYAAAAAAAAwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAYAAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAIAAAAAADIAAAAAAAIAAAAAABIAAAAAABgQAAAAAAIAAAAAABIAAAAAABIAAAAAACIAAAAAADgQAAAAAAgQAAAAAAQgAAAAAAgQAAAAAAYAAAAAAABwAAAAAAgQAAAAAAIAAAAAACIAAAAAABIAAAAAAAIAAAAAABgQAAAAAAIAAAAAABIAAAAAABIAAAAAAAIAAAAAADgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAYAAAAAABgQAAAAAAIAAAAAADIAAAAAACIAAAAAADIAAAAAACIAAAAAAAIAAAAAACIAAAAAAAIAAAAAAAIAAAAAABgQAAAAAAIAAAAAABQgAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAIAAAAAABIAAAAAABIAAAAAACIAAAAAADgQAAAAAAIAAAAAABIAAAAAABIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADQgAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAIAAAAAAAIAAAAAACIAAAAAABIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAABIAAAAAABgQAAAAAAgQAAAAAA version: 6 3,0: ind: 3,0 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYAAAAAAAgQAAAAAACwAAAAAACwAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYAAAAAAAgQAAAAAAEgAAAAAACwAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYAAAAAAAgQAAAAAACwAAAAAACwAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAACwAAAAAACwAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAACwAAAAAACwAAAAAAgQAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAACgQAAAAAAIAAAAAAAIAAAAAADIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAACgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAIAAAAAADIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAADgQAAAAAAIAAAAAADIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACIAAAAAADIAAAAAABIAAAAAACIAAAAAABYAAAAAAAgQAAAAAACwAAAAAACwAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAIAAAAAACIAAAAAABgQAAAAAAYAAAAAAAIAAAAAACIAAAAAACIAAAAAACIAAAAAACYAAAAAACgQAAAAAAEgAAAAAACwAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAIAAAAAACIAAAAAAAgQAAAAAAYAAAAAAAIAAAAAACIAAAAAACIAAAAAADIAAAAAACYAAAAAABgQAAAAAACwAAAAAACwAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,1: ind: 3,1 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAABYAAAAAADYAAAAAABAgAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAwAAAAACBwAAAAAAAgAAAAABAgAAAAABgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABgQAAAAAAIAAAAAACIAAAAAADgQAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAABgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAABYAAAAAADYAAAAAADAgAAAAABBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAwAAAAACBwAAAAAAAgAAAAAAAgAAAAABgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAADgQAAAAAAIAAAAAACIAAAAAADgQAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAABgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAIAAAAAABIAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,2: ind: 3,2 - tiles: gQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAACYAAAAAADYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAABYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAADYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAACYAAAAAAAYAAAAAADYAAAAAADYAAAAAABgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAABYAAAAAADYAAAAAABgQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAADYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAABYAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAC + tiles: gQAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAACYAAAAAADYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAABYAAAAAADYAAAAAACYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAABYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAABYAAAAAADYAAAAAABYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAABYAAAAAADYAAAAAADYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAIAAAAAACIAAAAAADIAAAAAADIAAAAAACIAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAABYAAAAAADYAAAAAACIAAAAAABIAAAAAADIAAAAAABIAAAAAABIAAAAAABYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAYAAAAAABYAAAAAADYAAAAAAA version: 6 2,2: ind: 2,2 - tiles: QgAAAAAAgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAABgQAAAAAAgQAAAAAAYAAAAAAAQgAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAABYAAAAAABYAAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAABYAAAAAADYAAAAAACgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAADgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAACYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAACYAAAAAAC + tiles: QgAAAAAAgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAQgAAAAAAgQAAAAAAYAAAAAADYAAAAAABgQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAYAAAAAACYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAABYAAAAAADgQAAAAAAYAAAAAADYAAAAAADYAAAAAACgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAABYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAABYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAABYAAAAAAC version: 6 1,2: ind: 1,2 - tiles: AAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAIAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAcwAAAAAAcwAAAAADcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAIAAAAAABgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAcwAAAAACcwAAAAACcwAAAAABcwAAAAACcwAAAAADcwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAIAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAcwAAAAAAcwAAAAABcwAAAAACcwAAAAADcwAAAAACcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAADcwAAAAAAgQAAAAAAIAAAAAABIAAAAAABIAAAAAADIAAAAAADIAAAAAAAIAAAAAACIAAAAAACIAAAAAACIAAAAAABIAAAAAADgQAAAAAAcwAAAAADcwAAAAABcwAAAAACcwAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAABIAAAAAAAIAAAAAADIAAAAAABIAAAAAADIAAAAAADIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAAAcwAAAAADYAAAAAACEwAAAAACEwAAAAACEwAAAAABEwAAAAABEwAAAAADEwAAAAAAEwAAAAAAEwAAAAABEwAAAAABEwAAAAADYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABEwAAAAADEwAAAAACEwAAAAACEwAAAAAAEwAAAAADEwAAAAADEwAAAAACEwAAAAABEwAAAAADEwAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAABgQAAAAAAEwAAAAABEwAAAAAAEwAAAAACEwAAAAABEwAAAAAAEwAAAAADEwAAAAABEwAAAAADEwAAAAABEwAAAAADgQAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAADgQAAAAAAEwAAAAAAEwAAAAADEwAAAAABEwAAAAACIAAAAAAAIAAAAAAAIAAAAAACgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAEwAAAAAAEwAAAAADEwAAAAACEwAAAAACIAAAAAACIAAAAAAAIAAAAAADIAAAAAACIAAAAAAAIAAAAAAAIAAAAAABgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAEwAAAAABEwAAAAAAEwAAAAAAEwAAAAABIAAAAAAAIAAAAAADIAAAAAAAIAAAAAADIAAAAAADIAAAAAAAYAAAAAABgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAgQAAAAAAEwAAAAAAEwAAAAABEwAAAAAAEwAAAAAAIAAAAAADIAAAAAADIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAACIAAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAD + tiles: AAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAIAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAIAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAcwAAAAAAcwAAAAADcwAAAAAAcwAAAAABcwAAAAACcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAcwAAAAAAcwAAAAABcwAAAAABcwAAAAABcwAAAAADcwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAcwAAAAADcwAAAAABcwAAAAAAcwAAAAACcwAAAAABcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAAAcwAAAAAAcwAAAAABgQAAAAAAIAAAAAAAIAAAAAACIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAAAIAAAAAADIAAAAAAAIAAAAAACgQAAAAAAcwAAAAABcwAAAAABcwAAAAAAcwAAAAABgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAABIAAAAAAAIAAAAAABIAAAAAADIAAAAAABIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAACcwAAAAABYAAAAAABEwAAAAAAEwAAAAAAEwAAAAADEwAAAAACEwAAAAACEwAAAAADEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAACEwAAAAACEwAAAAADEwAAAAADEwAAAAACEwAAAAAAEwAAAAADEwAAAAADEwAAAAACEwAAAAADEwAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAEwAAAAABEwAAAAABEwAAAAADEwAAAAAAEwAAAAABEwAAAAABEwAAAAADEwAAAAAAEwAAAAABEwAAAAACgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAABEwAAAAADIAAAAAADIAAAAAADIAAAAAADgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAEwAAAAACEwAAAAACEwAAAAABEwAAAAADIAAAAAAAIAAAAAABIAAAAAABIAAAAAACIAAAAAADIAAAAAAAIAAAAAABgQAAAAAAYAAAAAACYAAAAAACYAAAAAACgQAAAAAAEwAAAAACEwAAAAACEwAAAAAAEwAAAAABIAAAAAAAIAAAAAAAIAAAAAACIAAAAAACIAAAAAACIAAAAAAAYAAAAAACgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAACEwAAAAABIAAAAAABIAAAAAAAIAAAAAADIAAAAAAAIAAAAAABIAAAAAABIAAAAAACgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAA version: 6 4,2: ind: 4,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAGwAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAGwAAAAAAYAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAIAAAAAAAgQAAAAAASgAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAACYAAAAAADSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAGwAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAGwAAAAAAYAAAAAABSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAIAAAAAABgQAAAAAASgAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgAAAAAAA version: 6 4,3: ind: 4,3 - tiles: YAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAABgQAAAAAAgAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAADgQAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAABgQAAAAAAgAAAAAAAYAAAAAADYAAAAAABYAAAAAAACwAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAADgQAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAADAAAAAABgQAAAAAASgAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAABSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAACAAAAAADYAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgAAAAAAACAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: YAAAAAADYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAAAgQAAAAAAgAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAABYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAACgQAAAAAAgAAAAAAAYAAAAAACYAAAAAAAYAAAAAADCwAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAADAAAAAADgQAAAAAASgAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAACSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAACAAAAAADYAAAAAADSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgAAAAAAACAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,2: ind: 5,2 @@ -332,35 +332,35 @@ entities: version: 6 3,3: ind: 3,3 - tiles: YAAAAAADYAAAAAABYAAAAAABYAAAAAABYAAAAAADYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAADYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAgQAAAAAADAAAAAACDAAAAAADDAAAAAAAfQAAAAAAfQAAAAABCwAAAAAADAAAAAABDAAAAAAADAAAAAAADAAAAAADYAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAADAAAAAACDAAAAAABDAAAAAAAfQAAAAADfQAAAAADfQAAAAACDAAAAAAADAAAAAACDAAAAAACCAAAAAACgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAACAAAAAADCAAAAAABCAAAAAADfQAAAAAAfQAAAAACfQAAAAADCAAAAAADCAAAAAAACAAAAAAACAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAADYAAAAAAACAAAAAACCAAAAAACCAAAAAABfQAAAAAAfQAAAAABfQAAAAAACAAAAAACCAAAAAADCAAAAAADCAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAABgQAAAAAADAAAAAABDAAAAAAADAAAAAABfQAAAAAAfQAAAAAAfQAAAAAADAAAAAABDAAAAAAADAAAAAAADAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAADgQAAAAAADAAAAAABDAAAAAADDAAAAAADfQAAAAAAfQAAAAAAfQAAAAAADAAAAAACDAAAAAACDAAAAAACDAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAADYAAAAAADgQAAAAAADAAAAAACDAAAAAABDAAAAAACfQAAAAAAfQAAAAAAfQAAAAAADAAAAAACDAAAAAAADAAAAAABDAAAAAABYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAA + tiles: YAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAADgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAADgQAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAADgQAAAAAAYAAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABgQAAAAAADAAAAAACDAAAAAABDAAAAAADfQAAAAACfQAAAAADCwAAAAAADAAAAAAADAAAAAAADAAAAAACDAAAAAAAYAAAAAACgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAADAAAAAAADAAAAAACDAAAAAADfQAAAAACfQAAAAABfQAAAAAADAAAAAABDAAAAAAADAAAAAADCAAAAAACgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAADCAAAAAAACAAAAAABCAAAAAADfQAAAAADfQAAAAACfQAAAAAACAAAAAADCAAAAAABCAAAAAABCAAAAAADYAAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAABCAAAAAACCAAAAAAACAAAAAADfQAAAAADfQAAAAACfQAAAAADCAAAAAADCAAAAAABCAAAAAADCAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAADgQAAAAAADAAAAAAADAAAAAACDAAAAAAAfQAAAAABfQAAAAADfQAAAAABDAAAAAADDAAAAAACDAAAAAADDAAAAAADYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAADAAAAAACDAAAAAACDAAAAAABfQAAAAAAfQAAAAABfQAAAAADDAAAAAADDAAAAAACDAAAAAADDAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAABYAAAAAABgQAAAAAADAAAAAAADAAAAAACDAAAAAABfQAAAAAAfQAAAAACfQAAAAABDAAAAAACDAAAAAABDAAAAAACDAAAAAABYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAACYAAAAAABgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAACYAAAAAACgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAADgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAACgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAADYAAAAAACYAAAAAADgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,3: ind: 2,3 - tiles: gQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAADQgAAAAAAgQAAAAAAIAAAAAABIAAAAAACIAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAACQgAAAAAAIAAAAAAAIAAAAAADIAAAAAAAIAAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAADQgAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAABIAAAAAABIAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAACIAAAAAACIAAAAAABgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACFQAAAAADgQAAAAAAIAAAAAAAIAAAAAADIAAAAAABIAAAAAABgQAAAAAACwAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACFQAAAAADIAAAAAAAIAAAAAACIAAAAAAAIAAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAABgQAAAAAAIAAAAAABIAAAAAACIAAAAAADIAAAAAAAIAAAAAABIAAAAAACIAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAFQAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAAAIAAAAAABIAAAAAAAIAAAAAADIAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAFQAAAAACgQAAAAAAIAAAAAADIAAAAAADIAAAAAABIAAAAAACIAAAAAADIAAAAAABIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAACgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADQAAAAAAcAAAAAAAgQAAAAAAFQAAAAABgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAADQAAAAAADQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAADQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAADQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAADQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAA + tiles: gQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAAAQgAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAADIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAADQgAAAAAAIAAAAAADIAAAAAAAIAAAAAAAIAAAAAADIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAAAQgAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAADIAAAAAABIAAAAAADBAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAABgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAACFQAAAAACgQAAAAAAIAAAAAACIAAAAAABIAAAAAACIAAAAAAAgQAAAAAACwAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAAAFQAAAAADIAAAAAACIAAAAAABIAAAAAACIAAAAAADIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAACgQAAAAAAIAAAAAACIAAAAAADIAAAAAAAIAAAAAADIAAAAAADIAAAAAADIAAAAAADYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADFQAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAACIAAAAAABIAAAAAABIAAAAAACIAAAAAABgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAACFQAAAAAAgQAAAAAAIAAAAAADIAAAAAACIAAAAAACIAAAAAABIAAAAAAAIAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAACgQAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADQAAAAADcAAAAAAAgQAAAAAAFQAAAAACgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAADQAAAAABDQAAAAACcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAADQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAADQAAAAABgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAABYAAAAAADgQAAAAAAgQAAAAAADQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcwAAAAABcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAYAAAAAABYAAAAAADgQAAAAAA version: 6 1,3: ind: 1,3 - tiles: gQAAAAAAEwAAAAAAEwAAAAABEwAAAAAAEwAAAAADIAAAAAABIAAAAAAAEwAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAABEwAAAAADEwAAAAACEwAAAAADEwAAAAACEwAAAAACEwAAAAADEwAAAAAAIAAAAAABIAAAAAACIAAAAAADgQAAAAAAfQAAAAAAfQAAAAAAQgAAAAAAgQAAAAAAEwAAAAABEwAAAAABEwAAAAAAEwAAAAACEwAAAAACEwAAAAABEwAAAAADEwAAAAAAIAAAAAADIAAAAAACIAAAAAAAIAAAAAABQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAEwAAAAAAEwAAAAABEwAAAAADEwAAAAADEwAAAAADEwAAAAABEwAAAAABgQAAAAAAIAAAAAAAIAAAAAABIAAAAAABgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAEwAAAAADEwAAAAABEwAAAAACEwAAAAABEwAAAAACEwAAAAAAEwAAAAACIAAAAAADIAAAAAACIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAACEwAAAAABEwAAAAADEwAAAAADEwAAAAABgQAAAAAAIAAAAAABIAAAAAABIAAAAAADFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAACgQAAAAAAEwAAAAAAEwAAAAACEwAAAAAAEwAAAAADEwAAAAABEwAAAAADEwAAAAABgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAFQAAAAABFQAAAAADFQAAAAABFQAAAAACgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAAAFQAAAAABFQAAAAADFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAADgQAAAAAAYAAAAAACYAAAAAACYAAAAAADgQAAAAAAYAAAAAABYAAAAAACYAAAAAACgQAAAAAACwAAAAAAFQAAAAACFQAAAAACFQAAAAABFQAAAAACFQAAAAAAFQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAADgQAAAAAAFQAAAAAAFQAAAAABFQAAAAACFQAAAAABFQAAAAACFQAAAAADFQAAAAACgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAFQAAAAACFQAAAAADFQAAAAACFQAAAAACFQAAAAADFQAAAAABFQAAAAADgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABgQAAAAAAFQAAAAACFQAAAAAAFQAAAAACFQAAAAADFQAAAAABFQAAAAAAFQAAAAADgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAFQAAAAACFQAAAAACFQAAAAADFQAAAAADFQAAAAABFQAAAAABgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAACwAAAAAAgQAAAAAAcAAAAAAA + tiles: gQAAAAAAEwAAAAADEwAAAAADEwAAAAADEwAAAAAAIAAAAAACIAAAAAAAEwAAAAAAgQAAAAAAIAAAAAABIAAAAAACIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAACEwAAAAACEwAAAAADEwAAAAADEwAAAAABEwAAAAADEwAAAAADEwAAAAABIAAAAAADIAAAAAAAIAAAAAACgQAAAAAAfQAAAAADfQAAAAACQgAAAAAAgQAAAAAAEwAAAAAAEwAAAAABEwAAAAACEwAAAAAAEwAAAAACEwAAAAABEwAAAAAAEwAAAAAAIAAAAAADIAAAAAADIAAAAAACIAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAEwAAAAAAEwAAAAACEwAAAAACEwAAAAABEwAAAAAAEwAAAAADEwAAAAACgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAEwAAAAABEwAAAAABEwAAAAAAEwAAAAADEwAAAAACEwAAAAAAEwAAAAAAIAAAAAAAIAAAAAADIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAABEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAACEwAAAAABEwAAAAACgQAAAAAAIAAAAAADIAAAAAACIAAAAAACFQAAAAAAFQAAAAACFQAAAAACFQAAAAADgQAAAAAAEwAAAAACEwAAAAACEwAAAAADEwAAAAADEwAAAAABEwAAAAACEwAAAAACgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAFQAAAAAAFQAAAAACFQAAAAABFQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAADFQAAAAAAFQAAAAAAFQAAAAABFQAAAAACFQAAAAABFQAAAAADgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAYAAAAAAAYAAAAAABYAAAAAADgQAAAAAACwAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAABFQAAAAABFQAAAAADgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAADYAAAAAADYAAAAAACgQAAAAAAFQAAAAAAFQAAAAACFQAAAAADFQAAAAACFQAAAAAAFQAAAAABFQAAAAABgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAACgQAAAAAAFQAAAAAAFQAAAAABFQAAAAABFQAAAAACFQAAAAADFQAAAAABFQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAFQAAAAABFQAAAAAAFQAAAAAAFQAAAAABFQAAAAAAFQAAAAACFQAAAAACgQAAAAAAYAAAAAACYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAFQAAAAAAFQAAAAACFQAAAAABFQAAAAADFQAAAAADFQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAACwAAAAAAgQAAAAAAcAAAAAAA version: 6 0,3: ind: 0,3 - tiles: EQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAfQAAAAACfQAAAAADfQAAAAADfQAAAAAAFwAAAAACFwAAAAAAFwAAAAADFwAAAAADFwAAAAADEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAFwAAAAADFwAAAAABFwAAAAABFwAAAAABFwAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAfQAAAAACfQAAAAABfQAAAAACfQAAAAACFwAAAAABFwAAAAAAFwAAAAADFwAAAAADFwAAAAACEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAfQAAAAACfQAAAAAAfQAAAAAAfQAAAAABFwAAAAAAFwAAAAABFwAAAAABFwAAAAADFwAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAfQAAAAABfQAAAAAAfQAAAAAAfQAAAAADfQAAAAABfQAAAAACfQAAAAACfQAAAAADfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAfQAAAAADfQAAAAABfQAAAAABfQAAAAADfQAAAAAAfQAAAAADfQAAAAADfQAAAAAAfQAAAAABcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAABfQAAAAACfQAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAABfQAAAAABcAAAAAAAgQAAAAAAgQAAAAAAGQAAAAAAGAAAAAAAGgAAAAAAgQAAAAAAfQAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAAAYAAAAAABcAAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAfQAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAfQAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAGQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfQAAAAACYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAACYAAAAAACYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAGgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAfQAAAAABfQAAAAADfQAAAAADfQAAAAAAfQAAAAACfQAAAAADfQAAAAAAfQAAAAACfQAAAAADcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADQAAAAAACwAAAAAAgQAAAAAAcAAAAAAADQAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: EQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAfQAAAAAAfQAAAAABfQAAAAABfQAAAAACFwAAAAAAFwAAAAACFwAAAAAAFwAAAAABFwAAAAACEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAfQAAAAAAfQAAAAADfQAAAAABfQAAAAACFwAAAAACFwAAAAABFwAAAAACFwAAAAAAFwAAAAABEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAfQAAAAACfQAAAAACfQAAAAAAfQAAAAADFwAAAAABFwAAAAADFwAAAAAAFwAAAAACFwAAAAABEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAfQAAAAABfQAAAAACfQAAAAADfQAAAAABFwAAAAADFwAAAAADFwAAAAACFwAAAAADFwAAAAABEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAfQAAAAABfQAAAAAAfQAAAAABfQAAAAACfQAAAAADfQAAAAABfQAAAAACfQAAAAAAfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAfQAAAAACfQAAAAADfQAAAAAAfQAAAAACfQAAAAACfQAAAAACfQAAAAADfQAAAAADfQAAAAADcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAABfQAAAAACfQAAAAABfQAAAAAAfQAAAAACfQAAAAADfQAAAAACfQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAGQAAAAAAGAAAAAAAGgAAAAAAgQAAAAAAfQAAAAADYAAAAAADYAAAAAABYAAAAAABYAAAAAADYAAAAAABYAAAAAACYAAAAAABYAAAAAABcAAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAfQAAAAADYAAAAAADYAAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAfQAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAGQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfQAAAAADYAAAAAABYAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAABYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAGgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAfQAAAAABfQAAAAAAfQAAAAACfQAAAAACfQAAAAAAfQAAAAABfQAAAAABfQAAAAABfQAAAAACcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADQAAAAAACwAAAAAAgQAAAAAAcAAAAAAADQAAAAADcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -1,3: ind: -1,3 - tiles: fQAAAAAAfQAAAAACfQAAAAABfQAAAAACgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAAAfQAAAAADfQAAAAACgQAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAADfQAAAAABfQAAAAAAfQAAAAABYAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAADQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAABfQAAAAAAfQAAAAACgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAADQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAFQAAAAABFQAAAAAAFQAAAAABgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAACgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAFQAAAAAAFQAAAAACFQAAAAABgQAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAADgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAFQAAAAADFQAAAAAAFQAAAAABgQAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAACgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAFQAAAAACFQAAAAAAFQAAAAADgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAACgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAADYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAADgQAAAAAAYAAAAAABYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAYAAAAAADYAAAAAACYAAAAAACgQAAAAAAgQAAAAAA + tiles: fQAAAAACfQAAAAACfQAAAAADfQAAAAADgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAACfQAAAAABfQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAACfQAAAAABfQAAAAADfQAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAABgQAAAAAADQAAAAADgQAAAAAAgQAAAAAAfQAAAAADfQAAAAABfQAAAAACfQAAAAADgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAADgQAAAAAADQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAFQAAAAADFQAAAAAAFQAAAAABgQAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAADgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAFQAAAAACFQAAAAADFQAAAAABgQAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAACgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAFQAAAAABFQAAAAABFQAAAAACgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAFQAAAAABFQAAAAACFQAAAAACgQAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAACgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAACgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAADYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAABYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAABYAAAAAADYAAAAAABYAAAAAABYAAAAAACYAAAAAABgQAAAAAAYAAAAAACYAAAAAACYAAAAAACgQAAAAAAgQAAAAAA version: 6 3,4: ind: 3,4 - tiles: gQAAAAAAIAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: gQAAAAAAIAAAAAACgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAABYAAAAAACgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAABIAAAAAABgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,4: ind: 2,4 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAA version: 6 1,4: ind: 1,4 - tiles: YAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAACEgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAACYAAAAAAABwAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAADBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAACYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAA + tiles: YAAAAAABYAAAAAADYAAAAAACYAAAAAABYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAABEgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAACYAAAAAAABwAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAYAAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAACgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAACYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAA version: 6 4,4: ind: 4,4 @@ -368,23 +368,23 @@ entities: version: 6 0,4: ind: 0,4 - tiles: gQAAAAAAgQAAAAAAgQAAAAAACwAAAAAADQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABBwAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAABgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAACwAAAAAADQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABBwAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAABgQAAAAAAYAAAAAADgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACgQAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,4: ind: -1,4 - tiles: YAAAAAADYAAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAYAAAAAADYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAACYAAAAAABYAAAAAACgQAAAAAAYAAAAAACYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAADQAAAAAADQAAAAAADQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAADQAAAAAAcAAAAAAADQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAHgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: YAAAAAACYAAAAAABgQAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAACYAAAAAABYAAAAAACgQAAAAAAYAAAAAADYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAADYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAADQAAAAADDQAAAAABDQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAYAAAAAABYAAAAAADgQAAAAAAcAAAAAAAcAAAAAAADQAAAAACcAAAAAAADQAAAAADcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAADfQAAAAABHgAAAAADfQAAAAACfQAAAAAAfQAAAAADfQAAAAAAfQAAAAABfQAAAAAAfQAAAAABfQAAAAACHgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAADfQAAAAACHgAAAAAAfQAAAAACfQAAAAADfQAAAAACfQAAAAADfQAAAAABfQAAAAADfQAAAAABfQAAAAACHgAAAAACgQAAAAAAgAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAADHgAAAAACHgAAAAAAHgAAAAACHgAAAAADHgAAAAADHgAAAAAAHgAAAAACHgAAAAACHgAAAAAAHgAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHgAAAAABfQAAAAADfQAAAAACfQAAAAAAfQAAAAABfQAAAAACfQAAAAADfQAAAAAAfQAAAAAAHgAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAHgAAAAAAfQAAAAADfQAAAAAAfQAAAAADfQAAAAABfQAAAAABfQAAAAADfQAAAAABfQAAAAABHgAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAHgAAAAAAHgAAAAADHgAAAAAAHgAAAAABHgAAAAADHgAAAAABHgAAAAABHgAAAAADHgAAAAABHgAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAfQAAAAADfQAAAAADfQAAAAACfQAAAAADfQAAAAABfQAAAAAAfQAAAAACfQAAAAABgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAADfQAAAAAAfQAAAAADfQAAAAACfQAAAAABfQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,5: ind: 0,5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,5: ind: 1,5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAADYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,2: ind: -4,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAADIAAAAAADIAAAAAABIAAAAAADIAAAAAADIAAAAAADYAAAAAACYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAABIAAAAAABIAAAAAADIAAAAAACIAAAAAAAIAAAAAACIAAAAAAAYAAAAAADYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAABIAAAAAADIAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAEgAAAAAAIAAAAAAAIAAAAAABEgAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAEgAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAABIAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAADIAAAAAAAIAAAAAADIAAAAAAAIAAAAAAAYAAAAAABYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAABIAAAAAADYAAAAAABYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAABIAAAAAADIAAAAAACgQAAAAAAYAAAAAACYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAEgAAAAAAIAAAAAADIAAAAAACEgAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAEgAAAAAAIAAAAAACIAAAAAACIAAAAAACIAAAAAADIAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAABIAAAAAABIAAAAAACEgAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -4,0: ind: -4,0 @@ -396,11 +396,11 @@ entities: version: 6 -4,3: ind: -4,3 - tiles: gAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAA + tiles: gAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAB version: 6 -3,3: ind: -3,3 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAABIAAAAAAAIAAAAAABIAAAAAADIAAAAAADYAAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAABIAAAAAABgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAACCwAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAABIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAADIAAAAAADIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYAAAAAABYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAADIAAAAAACgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAAACwAAAAAAcwAAAAACcwAAAAADgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAFAAAAAADcwAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAcwAAAAAAcwAAAAACcwAAAAAAYAAAAAAAUQAAAAAAYAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAADgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAADgQAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAADYAAAAAABYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAACYAAAAAADgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAYAAAAAACgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAYAAAAAACgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAACIAAAAAAAIAAAAAABIAAAAAAAIAAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAIAAAAAADIAAAAAAAIAAAAAABIAAAAAADIAAAAAABgQAAAAAAIAAAAAAAIAAAAAADIAAAAAABgQAAAAAAYAAAAAADYAAAAAABYAAAAAADCwAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAABIAAAAAADIAAAAAACgQAAAAAAIAAAAAADIAAAAAADIAAAAAADgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAADIAAAAAADIAAAAAABIAAAAAABIAAAAAABIAAAAAAAIAAAAAACIAAAAAADYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAABgQAAAAAAIAAAAAACIAAAAAAAIAAAAAACIAAAAAACYAAAAAABYAAAAAACYAAAAAAAYAAAAAABCwAAAAAAcwAAAAABcwAAAAAAgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAACIAAAAAACYAAAAAABYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAFAAAAAADcwAAAAABgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAIAAAAAACIAAAAAABIAAAAAACIAAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAcwAAAAACcwAAAAABcwAAAAACYAAAAAABUQAAAAADYAAAAAABgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAADgQAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAACgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAABYAAAAAADgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAYAAAAAABgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAACgQAAAAAAYAAAAAACgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAA version: 6 -5,3: ind: -5,3 @@ -408,39 +408,27 @@ entities: version: 6 -2,3: ind: -2,3 - tiles: CwAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAEwAAAAADEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAADQAAAAAAcAAAAAAAgQAAAAAAfQAAAAABYAAAAAABYAAAAAABYAAAAAACYAAAAAADgQAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAACBAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACgQAAAAAAYAAAAAABYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAADgQAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAACgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAACwAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAADQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAADQAAAAAAgQAAAAAAYAAAAAAC + tiles: CwAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAEwAAAAACEwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAADQAAAAAAcAAAAAAAgQAAAAAAfQAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAAAgQAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACYAAAAAABYAAAAAAAYAAAAAACYAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAYAAAAAACgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAABYAAAAAADYAAAAAABYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADQAAAAABgQAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAYAAAAAACYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAADYAAAAAACgQAAAAAACwAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAADQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAADQAAAAABgQAAAAAAYAAAAAAD version: 6 -4,4: ind: -4,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAHQAAAAAAHQAAAAADHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAHQAAAAADHQAAAAACHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAHQAAAAACHQAAAAAAHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAHQAAAAADHQAAAAADHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAHQAAAAABHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,4: ind: -3,4 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACIAAAAAADIAAAAAACIAAAAAAAIAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAIAAAAAACIAAAAAACIAAAAAABIAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAADIAAAAAACIAAAAAACIAAAAAADIAAAAAABYAAAAAADHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACIAAAAAACIAAAAAABIAAAAAABIAAAAAADYAAAAAACHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAIAAAAAABIAAAAAACIAAAAAAAIAAAAAABYAAAAAADHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAIAAAAAABIAAAAAACIAAAAAADIAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAIAAAAAAAIAAAAAACIAAAAAACIAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACIAAAAAAAIAAAAAABIAAAAAABIAAAAAABYAAAAAACHQAAAAABHQAAAAADHQAAAAAAIAAAAAABIAAAAAABIAAAAAACgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAABIAAAAAABIAAAAAADIAAAAAACIAAAAAADYAAAAAABHQAAAAADHQAAAAADHQAAAAACIAAAAAADIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAIAAAAAADIAAAAAABIAAAAAAAIAAAAAAAYAAAAAABHQAAAAACHQAAAAAAHQAAAAABIAAAAAABIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHQAAAAAAHQAAAAADHQAAAAABIAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAHQAAAAAAHQAAAAACHQAAAAAAIAAAAAABIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHQAAAAADHQAAAAABHQAAAAAAIAAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,4: ind: -2,4 - tiles: gQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: gQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAABIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAACIAAAAAABIAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAAAIAAAAAABIAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAADIAAAAAADIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAIAAAAAABIAAAAAABIAAAAAACIAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,0: ind: 4,0 - tiles: gQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAA - version: 6 - 4,1: - ind: 4,1 - tiles: AAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 5,0: - ind: 5,0 - tiles: gQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 5,-1: - ind: 5,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: gAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,-1: ind: -4,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEAAAAAAAfQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAEAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAIAAAAAAAUQAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAEAAAAAAAgQAAAAAAgQAAAAAAEAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEAAAAAAAfQAAAAAAgQAAAAAAIAAAAAADIAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAEAAAAAAEfQAAAAAAfQAAAAAAfQAAAAADfQAAAAADgQAAAAAAIAAAAAACUQAAAAADIAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfQAAAAABEAAAAAACgQAAAAAAgQAAAAAAEAAAAAAGgQAAAAAAIAAAAAADIAAAAAABIAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,5: ind: 3,5 @@ -452,7 +440,7 @@ entities: version: 6 -1,-5: ind: -1,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAIAAAAAACgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAIAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAIAAAAAADIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAIAAAAAABIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -2,-5: ind: -2,-5 @@ -460,15 +448,11 @@ entities: version: 6 0,-5: ind: 0,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAADIAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAACIAAAAAABIAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAADIAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -5,-2: ind: -5,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 5,1: - ind: 5,1 - tiles: gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAADYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAACYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -5,-4: ind: -5,-4 @@ -505,15 +489,7 @@ entities: color: '#FFFFFFFF' id: Arrows decals: - 7781: 77,0 8243: 29,5 - 8313: 77,8 - - node: - color: '#FFFFFFFF' - id: Arrows - decals: - 7788: 68,9 - 8312: 76,9 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -522,8 +498,6 @@ entities: 2955: 64,44 6205: 7,-43 6206: 4,-43 - 7783: 67,0 - 7789: 67,8 7989: 20,1 7990: 20,-1 7991: 20,-3 @@ -542,11 +516,16 @@ entities: color: '#FFFFFFFF' id: Arrows decals: - 5198: 12.964991,13.606268 - 7784: 68,-1 - 7785: 76,-1 8199: 30,-15 8200: 30,-9 + 8721: 57,11 + 8722: 58,11 + - node: + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 8723: 57,7 - node: color: '#FFFFFFFF' id: Basalt1 @@ -690,7 +669,6 @@ entities: 1435: -34,-19 1436: -24,-32 1437: -25,-32 - 1438: -23,-32 1440: -43,-24 1441: -49,-27 1442: -49,-23 @@ -849,13 +827,7 @@ entities: 7764: 50,-2 7765: 50,-1 7766: 58,0 - 7767: 58,8 - 7768: 62,9 - 7769: 60,-4 7770: 58,-5 - 7771: 57,12 - 7772: 68,0 - 7774: 76,8 8016: 20,-15 8196: 31,-3 8197: 42,-2 @@ -863,6 +835,7 @@ entities: 8209: 39,4 8210: 40,4 8253: 31,6 + 8912: 51,-11 - node: cleanable: True color: '#FFFFFFFF' @@ -905,9 +878,16 @@ entities: 2957: 50,59 2958: 48,65 2959: 50,65 - 7790: 76,0 - 7822: 68,8 7999: 8,-9 + - node: + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: Bot + decals: + 8726: 57,12 + 8727: 58,12 + 8730: 62,-4 + 8731: 60,-4 - node: color: '#000000FF' id: BotGreyscale @@ -983,50 +963,6 @@ entities: id: Box decals: 6702: 3,-6 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: Box - decals: - 7791: 64,8 - 7792: 64,0 - 7793: 68,-4 - 7794: 76,-4 - 7795: 80,0 - 7796: 76,12 - 7798: 80,8 - 7821: 68,12 - - node: - angle: 3.141592653589793 rad - color: '#FFFFFFFF' - id: Box - decals: - 5199: 13,13 - - node: - color: '#3EB38896' - id: BoxGreyscale - decals: - 1101: 36,-33 - - node: - color: '#52B4E996' - id: BoxGreyscale - decals: - 1098: 37,-32 - - node: - color: '#79150096' - id: BoxGreyscale - decals: - 1100: 34,-31 - - node: - color: '#D4D4D496' - id: BoxGreyscale - decals: - 1099: 38,-33 - - node: - color: '#DE3A3A96' - id: BoxGreyscale - decals: - 1097: 36,-31 - node: color: '#FFFFFFFF' id: BrickTileDarkBox @@ -1749,8 +1685,6 @@ entities: id: Caution decals: 5282: 60,-15 - 7799: 64,2 - 7800: 64,6 - node: cleanable: True color: '#3C44AAFF' @@ -1809,8 +1743,6 @@ entities: 2991: -9,58 4518: -15,35 4519: -7,43 - 5380: -33,68 - 5381: -38,68 5749: -4,-16 5750: 2,-16 6401: -47,2 @@ -1821,8 +1753,13 @@ entities: 8358: 24,-15 8359: 25,-15 8360: 26,-15 - 8362: 60,12 - 8363: 59,12 + 8708: -38,66 + 8709: -38,67 + 8711: -38,68 + 8712: -33,66 + 8713: -33,67 + 8714: -33,68 + 8755: -3,19 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -1985,6 +1922,16 @@ entities: 8677: -43,-54 8681: -61,-55 8682: -63,-56 + 8850: 62,-4 + 8851: 62,-1 + 8913: 48,-6 + 8914: 50,-4 + 8915: 55,-9 + 8916: 55,-8 + 8917: 52,-9 + 8918: 46,-4 + 8958: -5,-62 + 8959: -9,-63 - node: cleanable: True zIndex: 1 @@ -2291,7 +2238,6 @@ entities: 4266: 6,11 4267: 15,12 4268: 16,12 - 4269: 18,14 4270: 17,15 4271: 11,15 4272: 10,16 @@ -2343,7 +2289,6 @@ entities: 4426: -44,-20 4427: -33,-21 4428: -25,-31 - 4429: -22,-29 4431: -36,-48 4432: -32,-47 4433: -31,-48 @@ -2409,7 +2354,6 @@ entities: 4906: -15,-31 4907: -17,-30 4908: -13,-28 - 4910: -22,-29 4911: -25,-29 4930: 11,4 4935: 27,4 @@ -2937,6 +2881,88 @@ entities: 8688: -62,-54 8689: -63,-53 8690: -62,-53 + 8805: 35,-33 + 8806: 35,-32 + 8807: 36,-32 + 8808: 36,-31 + 8809: 37,-32 + 8810: 37,-33 + 8811: 38,-32 + 8812: 38,-33 + 8813: 36,-32 + 8814: 36,-32 + 8815: 35,-32 + 8816: 35,-32 + 8817: 34,-31 + 8818: 39,-36 + 8819: 41,-36 + 8820: 43,-36 + 8821: 36,-29 + 8822: 32,-26 + 8823: 39,-19 + 8824: 61,-3 + 8825: 61,-2 + 8826: 62,-1 + 8827: 60,-1 + 8828: 61,0 + 8829: 62,-2 + 8830: 62,-3 + 8831: 60,-3 + 8832: 61,6 + 8833: 60,2 + 8834: 58,5 + 8835: 57,4 + 8836: 59,6 + 8837: 58,7 + 8838: 61,9 + 8839: 59,10 + 8840: 58,11 + 8841: 60,12 + 8842: 60,11 + 8843: 61,10 + 8844: 59,10 + 8845: 58,11 + 8846: 57,10 + 8847: 58,10 + 8848: 62,7 + 8849: 62,-3 + 8892: 47,0 + 8893: 48,1 + 8894: 50,1 + 8895: 49,0 + 8899: -22,-32 + 8900: -21,-31 + 8901: -26,-30 + 8902: -22,-28 + 8903: -21,-28 + 8904: -23,-30 + 8905: -18,-31 + 8919: 45,-4 + 8920: 46,-4 + 8921: 45,-5 + 8922: 45,-6 + 8923: 47,-6 + 8924: 48,-6 + 8925: 49,-6 + 8928: 50,-4 + 8929: 49,-4 + 8930: 50,1 + 8931: 51,-8 + 8932: 51,-7 + 8933: 52,-9 + 8934: 53,-8 + 8935: 54,-9 + 8936: 55,-8 + 8937: 56,-8 + 8938: 56,-9 + 8939: 55,-9 + 8940: 51,-5 + 8952: -9,-63 + 8953: -7,-63 + 8954: -6,-62 + 8955: -3,-63 + 8956: -3,-63 + 8957: -5,-62 - node: cleanable: True zIndex: 1 @@ -3018,17 +3044,10 @@ entities: 8136: 56,0 8137: 61,2 8138: 58,4 - 8139: 61,6 8140: 62,4 8141: 54,4 8142: 55,6 - 8143: 58,8 - 8144: 57,10 - 8146: 62,8 - 8148: 62,12 - 8151: 72,12 8152: 64,4 - 8153: 64,-1 8154: 58,-5 8391: 4,68 8392: 4,69 @@ -3745,7 +3764,6 @@ entities: 3688: -25,-25 3689: -26,-31 3691: -24,-31 - 3693: -22,-30 3694: -20,-25 3696: -22,-20 3697: -20,-21 @@ -4204,6 +4222,27 @@ entities: 8630: 56,62 8631: 54,60 8632: 54,60 + 8852: 60,-2 + 8853: 62,-3 + 8854: 62,-3 + 8855: 61,-3 + 8856: 60,-3 + 8857: 58,-3 + 8858: 54,2 + 8896: -20,-31 + 8897: -22,-30 + 8898: -20,-29 + 8941: 51,-4 + 8942: 48,-4 + 8943: 46,-2 + 8944: 48,0 + 8945: 47,1 + 8946: 49,1 + 8947: 49,1 + 8948: 49,1 + 8949: 49,1 + 8950: 49,1 + 8951: 49,1 - node: cleanable: True zIndex: 1 @@ -4489,6 +4528,12 @@ entities: 5763: 35,-5 6196: 6,-39 6197: 3,-39 + 8869: -19,-40 + 8870: -19,-39 + 8871: -22,-38 + 8872: -21,-38 + 8873: -23,-38 + 8881: -22,-32 - node: color: '#52B4E9FF' id: FullTileOverlayGreyscale @@ -4554,11 +4599,12 @@ entities: 2449: -16,65 2450: -15,65 2453: -14,63 - 2864: 52,46 - 2865: 53,46 2866: 52,47 2867: 52,48 5766: 36,-8 + 8863: 52,46 + 8864: 53,46 + 8865: 53,54 - node: color: '#A4610696' id: FullTileOverlayGreyscale @@ -4622,6 +4668,9 @@ entities: 5389: -47,52 5515: -30,62 5761: 38,-5 + 8866: -20,39 + 8867: -38,52 + 8868: -38,53 - node: color: '#DE3A3AFF' id: FullTileOverlayGreyscale @@ -4655,6 +4704,16 @@ entities: 1361: 13,-25 2825: 45,46 5767: 35,-8 + 8859: 49,47 + 8860: 49,48 + 8861: 49,46 + 8862: 48,46 + - node: + cleanable: True + color: '#5CCD74FF' + id: Gib + decals: + 8752: -4,21 - node: color: '#FFFFFFFF' id: Grassa2 @@ -4891,8 +4950,6 @@ entities: 2963: -15,-33 2964: -12,-34 2965: -13,-34 - 4510: -23,-28 - 4511: -22,-28 6161: 4,-39 6162: 5,-39 7646: -6,-38 @@ -4903,6 +4960,8 @@ entities: 7651: -5,-33 7652: -4,-33 7669: -1,-33 + 8878: -21,-28 + 8879: -22,-28 - node: color: '#79150096' id: HalfTileOverlayGreyscale @@ -5220,11 +5279,12 @@ entities: 7865: 57,0 7866: 56,0 7929: 56,-4 - 8048: 58,12 8220: 35,-2 8221: 36,-2 8222: 37,-2 8346: 38,-2 + 8802: 2,20 + 8803: 3,20 - node: zIndex: 1 color: '#EFB34196' @@ -5341,8 +5401,6 @@ entities: 2967: -13,-36 2968: -17,-40 2969: -16,-40 - 4512: -23,-30 - 4513: -22,-30 4725: -17,-31 7642: -5,-40 7643: -4,-40 @@ -5639,15 +5697,20 @@ entities: 7824: 46,-2 7825: 45,-2 7826: 44,-2 - 7851: 57,-7 - 7852: 56,-7 - 7853: 55,-7 - 7854: 54,-7 7912: 55,-1 8216: 37,-3 8217: 36,-3 8347: 38,-3 8348: 39,-3 + 8788: 2,11 + 8789: 3,11 + 8790: 4,11 + 8791: 5,11 + 8792: 6,11 + 8906: 54,-6 + 8907: 55,-6 + 8908: 56,-6 + 8909: 57,-6 - node: color: '#FA750096' id: HalfTileOverlayGreyscale180 @@ -5970,7 +6033,6 @@ entities: 7834: 42,-4 7836: 42,0 7837: 42,1 - 7855: 53,-6 7856: 53,-5 7857: 53,-4 7870: 52,1 @@ -5980,11 +6042,16 @@ entities: 7952: 57,4 7953: 57,5 7954: 57,6 - 8054: 57,8 - 8055: 57,9 8223: 39,-1 8224: 39,0 8236: 39,2 + 8781: 1,19 + 8782: 1,17 + 8783: 1,18 + 8784: 1,15 + 8785: 1,14 + 8786: 1,13 + 8787: 1,12 - node: color: '#FA750096' id: HalfTileOverlayGreyscale270 @@ -6064,6 +6131,9 @@ entities: 7664: 0,-35 7666: 3,-34 7674: 0,-36 + 8874: -20,-31 + 8875: -20,-30 + 8876: -20,-29 - node: color: '#79150096' id: HalfTileOverlayGreyscale90 @@ -6183,7 +6253,6 @@ entities: 638: -15,-20 5599: -30,-38 5600: -30,-39 - 6087: -22,-31 7567: -58,27 - node: color: '#D4D4D428' @@ -6667,7 +6736,6 @@ entities: id: QuarterTileOverlayGreyscale decals: 2338: -18,41 - 2349: -37,54 2365: -40,59 4226: -31,34 4227: -30,34 @@ -6718,6 +6786,12 @@ entities: 8225: 39,-2 8232: 33,-2 8233: 34,-2 + 8882: 58,7 + 8883: 59,7 + 8884: 60,7 + 8885: 61,7 + 8886: 62,-3 + 8887: 61,-2 - node: zIndex: 1 color: '#EFB34196' @@ -6981,6 +7055,15 @@ entities: 7958: 62,2 8219: 34,-3 8229: 33,-3 + 8793: 7,12 + 8794: 8,12 + 8795: 9,12 + 8796: 10,12 + 8797: 11,12 + 8798: 12,12 + 8799: 13,12 + 8888: 60,-1 + 8889: 61,-2 - node: color: '#FA750096' id: QuarterTileOverlayGreyscale180 @@ -7196,7 +7279,7 @@ entities: 7838: 42,3 7845: 49,-2 7931: 57,-1 - 8056: 57,10 + 8891: 62,-1 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale90 @@ -7398,10 +7481,8 @@ entities: 7841: 43,0 7868: 55,0 7932: 54,-4 - 7959: 59,6 - 7960: 60,6 - 7961: 61,6 8238: 10,-20 + 8890: 60,-3 - node: color: '#FFFFFFFF' id: Rock01 @@ -7590,7 +7671,7 @@ entities: 6621: 16,-16 7860: 52,2 8042: 53,-3 - 8043: 59,-3 + 8801: 1,20 - node: color: '#FA750096' id: ThreeQuarterTileOverlayGreyscale @@ -7655,7 +7736,6 @@ entities: 125: -24,-26 234: -43,-31 5601: -30,-40 - 6086: -22,-32 - node: color: '#D4D4D428' id: ThreeQuarterTileOverlayGreyscale180 @@ -7789,8 +7869,9 @@ entities: 2826: 43,47 6037: 29,45 6619: 19,-19 - 7859: 53,-7 8041: 52,0 + 8800: 1,11 + 8910: 53,-6 - node: color: '#FA750096' id: ThreeQuarterTileOverlayGreyscale270 @@ -7821,6 +7902,7 @@ entities: 2979: -17,-36 7660: 0,-33 7661: 3,-33 + 8880: -20,-28 - node: color: '#79150096' id: ThreeQuarterTileOverlayGreyscale90 @@ -7896,9 +7978,7 @@ entities: 851: 27,-21 1387: -20,-3 2829: 48,53 - 6516: 46,5 7864: 55,2 - 8044: 60,-3 - node: color: '#FA750096' id: ThreeQuarterTileOverlayGreyscale90 @@ -7927,12 +8007,7 @@ entities: decals: 4597: 5,32 5502: -9,-25 - - node: - zIndex: 1 - color: '#EFB341FF' - id: WarnBox - decals: - 6924: 45,-5 + 8911: 56,-9 - node: color: '#FFFFFFFF' id: WarnBox @@ -8143,9 +8218,6 @@ entities: 2221: -42,41 2384: -38,64 2385: -38,65 - 2386: -38,66 - 2387: -38,67 - 2388: -38,68 2702: 12,73 2703: 12,74 2704: 12,75 @@ -8172,6 +8244,14 @@ entities: 4616: 59,-50 5598: -35,62 8195: 35,2 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: WarnLineE + decals: + 8718: -38,66 + 8719: -38,67 + 8720: -38,68 - node: color: '#FFFFFFFF' id: WarnLineN @@ -8226,6 +8306,12 @@ entities: 8302: 18,-12 8303: 19,-12 8304: 20,-12 + 8732: 58,9 + 8733: 59,9 + 8734: 60,9 + 8735: 61,9 + 8736: 62,9 + 8737: 57,9 - node: zIndex: 2 color: '#FFFFFFFF' @@ -8273,9 +8359,6 @@ entities: 2218: -44,42 2379: -33,64 2380: -33,65 - 2381: -33,66 - 2382: -33,67 - 2383: -33,68 2722: 11,73 2723: 11,74 2724: 11,75 @@ -8308,6 +8391,9 @@ entities: 541: -6,-53 548: -6,-52 549: -6,-51 + 8715: -33,66 + 8716: -33,67 + 8717: -33,68 - node: color: '#FFFFFFFF' id: WarnLineW @@ -8577,6 +8663,50 @@ entities: id: arrow decals: 7134: -1,-66 + - node: + cleanable: True + color: '#FFFFFFFF' + id: burnt1 + decals: + 8761: -2,22 + 8762: -4,20 + 8763: -5,21 + 8770: -1,19 + 8771: -1,19 + 8772: -1,20 + 8773: -2,21 + 8774: -1,21 + 8775: -1,21 + 8776: -3,20 + 8777: -4,22 + 8778: -4,22 + - node: + cleanable: True + color: '#FFFFFFFF' + id: burnt2 + decals: + 8759: -1,20 + 8760: -1,20 + 8768: -1,19 + 8769: -1,19 + - node: + cleanable: True + color: '#FFFFFFFF' + id: burnt3 + decals: + 8764: -1,21 + 8765: -5,19 + 8766: -1,20 + 8767: -1,19 + - node: + cleanable: True + color: '#FFFFFFFF' + id: burnt4 + decals: + 8756: -1,19 + 8757: -1,19 + 8758: -1,19 + 8779: -3,20 - node: cleanable: True color: '#3C44AAFF' @@ -8611,6 +8741,12 @@ entities: id: grasssnow13 decals: 4351: -42.115974,-49.834988 + - node: + cleanable: True + color: '#00FFFFFF' + id: guy + decals: + 8754: -4,19 - node: cleanable: True color: '#1861D5FF' @@ -8664,33 +8800,33 @@ entities: 0,1: 0: 7 1: 4096 - 2: 8192 + 2: 40960 -1,1: 0: 15 1: 49152 2: 12288 0,2: - 0: 16 - 2: 12014 + 0: 57360 + 2: 238 -1,2: 0: 15344 0,3: - 2: 9762 + 0: 61166 -1,3: 0: 62136 0,4: - 2: 8802 + 0: 61167 + 1,1: + 2: 30438 1,2: 2: 255 - 0: 57344 + 0: 28672 1,3: - 0: 65524 + 0: 65535 1,0: 2: 26214 - 1,1: - 2: 30438 1,4: - 0: 65535 + 0: 8191 1,-1: 2: 58976 0: 2186 @@ -8700,15 +8836,15 @@ entities: 2: 8337 1: 3680 2,2: - 2: 65523 + 2: 4083 2,3: - 0: 65520 + 0: 65535 2,-1: 2: 36864 1: 24576 0: 239 2,4: - 0: 65535 + 0: 36863 3,0: 2: 4369 0: 52428 @@ -8717,15 +8853,15 @@ entities: 1: 256 0: 51404 3,2: - 2: 13105 + 2: 817 0: 36040 3,3: - 0: 65464 + 0: 65467 3,-1: 2: 4096 0: 52479 3,4: - 0: 65535 + 0: 4095 4,0: 0: 65535 4,1: @@ -8734,9 +8870,8 @@ entities: 0: 816 2: 52416 4,3: - 0: 1 - 1: 26112 - 2: 12 + 0: 4353 + 2: 52428 -4,0: 0: 32767 -4,-1: @@ -8782,7 +8917,7 @@ entities: -1,-1: 0: 65532 -1,4: - 0: 47167 + 0: 45311 -4,-4: 0: 48059 -5,-4: @@ -8816,7 +8951,6 @@ entities: 0: 240 2: 61440 -2,-4: - 1: 68 0: 32768 -1,-4: 0: 64989 @@ -8867,13 +9001,11 @@ entities: -4,-9: 0: 32767 -5,-8: - 0: 52416 - 2: 4368 + 0: 56784 -4,-7: 0: 62463 -5,-7: - 0: 64972 - 2: 1 + 0: 64973 -4,-6: 0: 15295 -5,-6: @@ -8895,7 +9027,7 @@ entities: -2,-9: 0: 56829 -2,-5: - 2: 11264 + 2: 8192 -1,-8: 0: 28912 -1,-7: @@ -8903,10 +9035,10 @@ entities: -1,-6: 0: 33023 2: 8192 - -1,-5: - 2: 306 -1,-9: 0: 56829 + -1,-5: + 2: 50 0,-8: 0: 14576 0,-7: @@ -9018,11 +9150,13 @@ entities: -7,-8: 0: 61166 -6,-8: - 0: 30583 + 0: 57301 -6,-7: - 0: 64775 + 0: 64781 -6,-6: 0: 64781 + -6,-9: + 0: 20479 -5,-9: 0: 65535 -8,0: @@ -9225,8 +9359,6 @@ entities: 0: 45055 -6,-10: 0: 65279 - -6,-9: - 0: 4095 -5,-13: 0: 52733 -12,-12: @@ -9419,8 +9551,7 @@ entities: -4,-17: 0: 61441 -3,-16: - 0: 13112 - 2: 2048 + 0: 46008 -3,-15: 0: 47167 -3,-14: @@ -9428,8 +9559,7 @@ entities: -3,-17: 0: 61568 -2,-16: - 0: 15 - 2: 3840 + 0: 3839 -2,-15: 0: 30567 -2,-14: @@ -9437,8 +9567,7 @@ entities: -2,-17: 0: 15097 -1,-16: - 0: 3271 - 2: 256 + 0: 3575 -1,-15: 0: 65535 -1,-14: @@ -9589,9 +9718,8 @@ entities: 8,-1: 0: 4080 4,4: - 1: 6 - 0: 4352 - 2: 49152 + 0: 273 + 2: 52428 5,1: 0: 32753 5,2: @@ -9651,24 +9779,21 @@ entities: 11,-3: 0: 57565 11,-2: - 0: 13070 + 0: 12046 11,-1: 0: 65439 11,-5: 0: 56797 11,0: - 0: 57891 + 0: 58023 12,-4: 0: 65535 12,-3: - 0: 12607 - 2: 34816 + 0: 47551 12,-2: - 0: 11 - 2: 61056 + 0: 44939 12,-1: - 0: 65280 - 2: 110 + 0: 65359 8,1: 0: 28174 8,4: @@ -9698,8 +9823,7 @@ entities: 11,4: 0: 63487 12,0: - 0: 12288 - 2: 64 + 0: 12401 12,1: 0: 3003 12,2: @@ -9779,7 +9903,7 @@ entities: 11,-12: 2: 65535 11,-11: - 2: 17 + 2: 273 0: 16580 11,-10: 0: 57422 @@ -9859,9 +9983,11 @@ entities: 15,-8: 0: 13105 15,-10: - 2: 52416 + 2: 49344 + 0: 3072 16,-10: - 2: 65520 + 2: 61680 + 0: 3840 16,-9: 0: 255 2: 7936 @@ -9918,39 +10044,35 @@ entities: 15,-4: 0: 65535 13,-3: - 0: 4335 - 2: 57344 + 0: 61679 + 13,-2: + 0: 60971 13,-1: 0: 65518 - 13,-2: - 0: 61152 13,0: 0: 20479 14,-3: - 0: 16503 - 2: 45056 + 0: 4215 + 2: 49152 14,-2: - 0: 29488 - 2: 136 + 0: 29441 + 2: 128 14,-1: - 0: 30719 + 0: 32759 14,0: 0: 60999 15,-3: - 2: 12832 - 15,-2: - 2: 4082 + 2: 64160 15,-1: - 0: 28767 + 0: 32759 15,0: - 0: 30471 + 0: 30519 + 15,-2: + 2: 2730 16,-4: 0: 257 - 16,-2: - 2: 4080 16,-1: - 2: 8947 - 0: 4104 + 0: 9008 19,-8: 0: 61183 19,-9: @@ -9963,12 +10085,14 @@ entities: 20,-7: 0: 1 17,-10: - 2: 65520 + 2: 61680 + 0: 3840 17,-9: 0: 255 2: 3840 18,-10: - 2: 32624 + 2: 28784 + 0: 3840 1: 32896 18,-9: 0: 255 @@ -9995,45 +10119,15 @@ entities: 22,-9: 0: 273 16,0: - 0: 4377 - 2: 8806 - 17,-2: - 2: 4080 - 17,-1: - 0: 4111 - 2: 33776 - 17,0: - 0: 19 - 2: 37132 - 18,-2: - 2: 4080 - 18,-1: - 0: 15 - 2: 14832 - 18,0: - 2: 12567 - 0: 8 - 19,-2: - 2: 4080 - 19,-1: - 0: 4099 - 2: 35320 - 19,0: - 0: 19 - 2: 47564 - 20,-2: - 2: 53232 - 20,-1: - 2: 61183 - 0: 4096 + 0: 13090 + 2: 34957 4,5: - 0: 17 - 2: 29900 + 0: 285 + 2: 17600 3,5: - 0: 255 - 2: 61440 + 0: 3838 4,6: - 2: 4371 + 2: 4375 0: 52224 3,6: 2: 65535 @@ -10074,9 +10168,9 @@ entities: 8,7: 0: 56829 0,5: - 2: 3750 + 0: 3854 -1,5: - 0: 3003 + 0: 4091 0,6: 0: 30583 -1,6: @@ -10086,19 +10180,16 @@ entities: -1,7: 0: 65535 1,5: - 2: 62256 - 0: 2184 + 0: 7645 1,6: - 2: 53247 - 0: 4096 + 0: 4369 + 2: 3276 1,7: - 0: 45841 - 2: 12 + 0: 45855 1,8: 0: 65307 2,5: - 2: 61440 - 0: 238 + 0: 35835 2,6: 2: 65535 2,7: @@ -10425,36 +10516,30 @@ entities: 13,2: 0: 56783 13,3: - 0: 4383 - 2: 3072 + 0: 5407 13,4: 0: 4437 1: 49152 + 14,1: + 0: 61166 14,2: - 0: 65262 + 0: 61152 14,3: - 2: 65504 0: 14 - 14,1: - 0: 20206 + 2: 224 15,1: - 0: 18295 + 0: 30583 15,2: - 0: 21606 + 0: 30576 15,3: - 0: 13 - 2: 65520 - 15,4: - 2: 1 + 0: 7 + 2: 240 16,1: - 0: 4369 - 2: 25134 + 0: 9011 + 2: 34956 16,2: - 0: 25 - 2: 61990 - 16,3: - 2: 65523 - 0: 8 + 2: 13 + 0: 13090 12,8: 0: 65534 13,5: @@ -10467,7 +10552,7 @@ entities: 13,8: 0: 65535 14,5: - 2: 4383 + 2: 4369 14,6: 2: 17427 0: 4096 @@ -10477,10 +10562,6 @@ entities: 14,8: 0: 28945 2: 68 - 15,5: - 2: 31 - 16,5: - 2: 47 12,9: 0: 65535 11,9: @@ -11026,15 +11107,14 @@ entities: 2: 257 0: 3276 -14,10: - 2: 63999 + 2: 4369 -14,11: 2: 3 0: 36736 -14,12: 2: 22003 -13,12: - 0: 8936 - 2: 32768 + 0: 60136 -19,11: 2: 52224 -19,12: @@ -11072,8 +11152,7 @@ entities: -13,15: 0: 43938 -13,13: - 0: 59938 - 2: 8 + 0: 59950 -13,14: 0: 43690 -13,16: @@ -11190,62 +11269,6 @@ entities: 2: 1092 -5,18: 0: 631 - 16,4: - 2: 2 - 17,1: - 2: 415 - 0: 4096 - 17,2: - 0: 19 - 2: 62348 - 17,3: - 0: 15 - 2: 65520 - 17,4: - 2: 4 - 18,1: - 2: 4415 - 18,2: - 2: 63799 - 0: 8 - 18,3: - 0: 15 - 2: 65520 - 19,1: - 2: 51647 - 0: 4096 - 19,2: - 0: 19 - 2: 63884 - 19,3: - 0: 3843 - 2: 61688 - 18,4: - 2: 8 - 20,0: - 0: 4369 - 2: 61166 - 20,1: - 0: 4369 - 2: 61166 - 20,2: - 0: 17 - 2: 65262 - 20,3: - 2: 64767 - 0: 512 - 17,5: - 2: 71 - 20,4: - 2: 1 - 21,0: - 2: 16 - 21,1: - 2: 256 - 21,2: - 2: 4096 - 21,-1: - 2: 1 -14,-4: 0: 65520 -4,-18: @@ -11464,6 +11487,13 @@ entities: parent: 2922 - type: InstantAction container: 2922 + - uid: 11199 + components: + - type: Transform + parent: 11126 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 11126 - uid: 12128 components: - type: Transform @@ -11482,24 +11512,6 @@ entities: parent: 28698 - type: InstantAction container: 28698 - - uid: 28706 - components: - - type: Transform - parent: 28705 - - type: InstantAction - container: 28705 - - uid: 28708 - components: - - type: Transform - parent: 28707 - - type: InstantAction - container: 28707 - - uid: 28710 - components: - - type: Transform - parent: 28709 - - type: InstantAction - container: 28709 - uid: 30712 components: - type: Transform @@ -11742,6 +11754,14 @@ entities: - 2099 - 2079 - 23934 + - uid: 2025 + components: + - type: Transform + pos: 12.5,19.5 + parent: 12 + - type: DeviceList + devices: + - 9719 - uid: 2089 components: - type: Transform @@ -11753,9 +11773,6 @@ entities: - 1244 - 2101 - 1275 - - 1268 - - 1267 - - 2103 - 2082 - uid: 2545 components: @@ -11863,6 +11880,14 @@ entities: - 16635 - 16636 - 19846 + - uid: 2966 + components: + - type: Transform + pos: 10.5,19.5 + parent: 12 + - type: DeviceList + devices: + - 2023 - uid: 3224 components: - type: Transform @@ -11915,7 +11940,7 @@ entities: - 28375 - 9321 - 5255 - - 10027 + - 5316 - 5305 - uid: 4906 components: @@ -11932,6 +11957,31 @@ entities: - 5011 - 2679 - 28904 + - uid: 5098 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-30.5 + parent: 12 + - type: DeviceList + devices: + - 9434 + - 9449 + - 5197 + - 2083 + - 5030 + - uid: 5109 + components: + - type: Transform + pos: -19.5,-26.5 + parent: 12 + - type: DeviceList + devices: + - 11314 + - 5030 + - 5111 + - 11209 + - 9436 - uid: 6833 components: - type: Transform @@ -11970,6 +12020,16 @@ entities: - 7389 - 2348 - 8986 + - uid: 8420 + components: + - type: Transform + pos: 62.5,1.5 + parent: 12 + - type: DeviceList + devices: + - 11225 + - 8344 + - 9052 - uid: 8504 components: - type: Transform @@ -12034,6 +12094,17 @@ entities: - 30449 - 27918 - 29100 + - uid: 9142 + components: + - type: Transform + pos: 62.5,8.5 + parent: 12 + - type: DeviceList + devices: + - 9717 + - 5887 + - 7547 + - 2020 - uid: 9702 components: - type: Transform @@ -12069,9 +12140,6 @@ entities: - 1226 - 2102 - 1220 - - 1267 - - 1268 - - 2103 - 2083 - 2084 - 2082 @@ -12179,6 +12247,19 @@ entities: - 9988 - 9987 - 800 + - uid: 12273 + components: + - type: Transform + pos: 2.5,21.5 + parent: 12 + - type: DeviceList + devices: + - 11341 + - 9488 + - 6735 + - 2516 + - 2604 + - 3702 - uid: 13076 components: - type: Transform @@ -12402,7 +12483,6 @@ entities: - 22579 - 22548 - 22550 - - 22580 - 22581 - 22583 - 22521 @@ -12792,13 +12872,13 @@ entities: - type: DeviceList devices: - 26949 - - 2021 - 2020 - 26923 - 609 - 2034 - 26790 - 15130 + - 22142 - uid: 27312 components: - type: Transform @@ -12810,31 +12890,6 @@ entities: - 7789 - 27005 - 20793 - - uid: 27313 - components: - - type: Transform - pos: 59.5,13.5 - parent: 12 - - type: DeviceList - devices: - - 27309 - - 19292 - - 19188 - - 7807 - - 2359 - - uid: 27314 - components: - - type: Transform - pos: 61.5,7.5 - parent: 12 - - type: DeviceList - devices: - - 7547 - - 5887 - - 9717 - - 27310 - - 2359 - - 2020 - uid: 28270 components: - type: Transform @@ -13123,6 +13178,7 @@ entities: - 27065 - 27102 - 25548 + - 9482 - uid: 28376 components: - type: Transform @@ -13345,19 +13401,6 @@ entities: - 25681 - 2324 - 28904 - - uid: 31894 - components: - - type: Transform - pos: 15.5,22.5 - parent: 12 - - type: DeviceList - devices: - - 29872 - - 3954 - - 9560 - - 9488 - - 29869 - - 29870 - uid: 32066 components: - type: Transform @@ -13428,11 +13471,6 @@ entities: - type: Transform pos: 63.5,-18.5 parent: 12 - - uid: 7167 - components: - - type: Transform - pos: 38.5,-32.5 - parent: 12 - uid: 8863 components: - type: Transform @@ -13589,6 +13627,13 @@ entities: rot: 1.5707963267948966 rad pos: -41.5,52.5 parent: 12 +- proto: AirlockAssemblyMaintenance + entities: + - uid: 15446 + components: + - type: Transform + pos: 44.5,-5.5 + parent: 12 - proto: AirlockAtmosphericsGlassLocked entities: - uid: 24654 @@ -13610,12 +13655,6 @@ entities: - type: Transform pos: 30.5,1.5 parent: 12 - - uid: 7129 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-33.5 - parent: 12 - uid: 7224 components: - type: Transform @@ -13967,6 +14006,11 @@ entities: rot: 3.141592653589793 rad pos: -23.5,-8.5 parent: 12 + - uid: 494 + components: + - type: Transform + pos: 4.5,21.5 + parent: 12 - uid: 1016 components: - type: Transform @@ -14066,6 +14110,12 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,14.5 parent: 12 + - uid: 10937 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,16.5 + parent: 12 - uid: 11006 components: - type: Transform @@ -14137,12 +14187,6 @@ entities: - type: Transform pos: -23.5,58.5 parent: 12 - - uid: 26470 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,7.5 - parent: 12 - uid: 27457 components: - type: Transform @@ -14198,18 +14242,17 @@ entities: parent: 12 - proto: AirlockExternalEngineeringLocked entities: - - uid: 1085 + - uid: 1268 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,12.5 + pos: 59.5,-2.5 parent: 12 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 2291: - - DoorStatus: DoorBolt + 25549: + - DoorStatus: InputB - uid: 1537 components: - type: Transform @@ -14234,18 +14277,17 @@ entities: linkedPorts: 1537: - DoorStatus: DoorBolt - - uid: 2291 + - uid: 2246 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,11.5 + pos: 59.5,-1.5 parent: 12 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 1085: - - DoorStatus: DoorBolt + 25549: + - DoorStatus: InputA - uid: 6350 components: - type: Transform @@ -14270,52 +14312,6 @@ entities: linkedPorts: 6350: - DoorStatus: DoorBolt - - uid: 11322 - components: - - type: Transform - pos: 7.5,20.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 12687: - - DoorStatus: DoorBolt - - uid: 11379 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,-3.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 11390: - - DoorStatus: DoorBolt - - uid: 11390 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,-3.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 11379: - - DoorStatus: DoorBolt - - uid: 12687 - components: - - type: Transform - pos: 7.5,22.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 11322: - - DoorStatus: DoorBolt - uid: 14260 components: - type: Transform @@ -14352,30 +14348,6 @@ entities: linkedPorts: 19019: - DoorStatus: DoorBolt - - uid: 19663 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,12.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 24445: - - DoorStatus: DoorBolt - - uid: 24445 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,10.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 19663: - - DoorStatus: DoorBolt - uid: 26625 components: - type: Transform @@ -14628,6 +14600,114 @@ entities: - DoorStatus: DoorBolt - proto: AirlockExternalGlassEngineeringLocked entities: + - uid: 1810 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,19.5 + parent: 12 + - type: DeviceLinkSink + invokeCounter: 3 + - type: DeviceLinkSource + linkedPorts: + 10791: + - DoorStatus: DoorBolt + 16347: + - DoorStatus: DoorBolt + 1813: + - DoorStatus: DoorBolt + - uid: 1813 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,21.5 + parent: 12 + - type: DeviceLinkSink + invokeCounter: 3 + - type: DeviceLinkSource + linkedPorts: + 1810: + - DoorStatus: DoorBolt + 16347: + - DoorStatus: DoorBolt + 10791: + - DoorStatus: DoorBolt + - uid: 4952 + components: + - type: Transform + pos: 63.5,-1.5 + parent: 12 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 25547: + - DoorStatus: InputB + - uid: 9169 + components: + - type: Transform + pos: 63.5,-2.5 + parent: 12 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 25547: + - DoorStatus: InputA + - uid: 10791 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,23.5 + parent: 12 + - type: DeviceLinkSink + invokeCounter: 3 + - type: DeviceLinkSource + linkedPorts: + 1810: + - DoorStatus: DoorBolt + 1813: + - DoorStatus: DoorBolt + 16347: + - DoorStatus: DoorBolt + - uid: 11469 + components: + - type: Transform + pos: 60.5,1.5 + parent: 12 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 25550: + - DoorStatus: InputA + - uid: 12692 + components: + - type: Transform + pos: 61.5,1.5 + parent: 12 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 25550: + - DoorStatus: InputB + - uid: 16347 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,21.5 + parent: 12 + - type: DeviceLinkSink + invokeCounter: 3 + - type: DeviceLinkSource + linkedPorts: + 1810: + - DoorStatus: DoorBolt + 1813: + - DoorStatus: DoorBolt + 10791: + - DoorStatus: DoorBolt - uid: 19019 components: - type: Transform @@ -14679,52 +14759,50 @@ entities: linkedPorts: 11931: - DoorStatus: DoorBolt - - uid: 10785 + - uid: 9560 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,9.5 + pos: 5.5,28.5 parent: 12 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 10786: + 10826: - DoorStatus: DoorBolt - - uid: 11931 + - uid: 10785 components: - type: Transform - pos: -30.5,-10.5 + rot: 1.5707963267948966 rad + pos: 0.5,9.5 parent: 12 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 2041: + 10786: - DoorStatus: DoorBolt - - uid: 11943 + - uid: 10826 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,27.5 + pos: 7.5,28.5 parent: 12 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 11944: + 9560: - DoorStatus: DoorBolt - - uid: 11944 + - uid: 11931 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,29.5 + pos: -30.5,-10.5 parent: 12 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 11943: + 2041: - DoorStatus: DoorBolt - uid: 11947 components: @@ -15640,6 +15718,12 @@ entities: rot: -1.5707963267948966 rad pos: 45.5,-33.5 parent: 12 + - uid: 9663 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-33.5 + parent: 12 - uid: 24134 components: - type: Transform @@ -15672,6 +15756,12 @@ entities: - type: Transform pos: 45.5,-13.5 parent: 12 + - uid: 23143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,-9.5 + parent: 12 - uid: 27885 components: - type: Transform @@ -15684,6 +15774,12 @@ entities: - type: Transform pos: 7.5,-21.5 parent: 12 + - uid: 1551 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,-6.5 + parent: 12 - uid: 7829 components: - type: Transform @@ -15695,12 +15791,6 @@ entities: rot: -1.5707963267948966 rad pos: 54.5,7.5 parent: 12 - - uid: 27382 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,11.5 - parent: 12 - proto: AirlockMaintGlassLocked entities: - uid: 27845 @@ -15789,6 +15879,12 @@ entities: rot: 1.5707963267948966 rad pos: 41.5,-22.5 parent: 12 + - uid: 3506 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,22.5 + parent: 12 - uid: 5428 components: - type: Transform @@ -16511,12 +16607,16 @@ entities: rot: 3.141592653589793 rad pos: -39.5,-47.5 parent: 12 + - type: PaintableAirlock + department: Medical - uid: 840 components: - type: Transform rot: 3.141592653589793 rad pos: -39.5,-48.5 parent: 12 + - type: PaintableAirlock + department: Medical - proto: AirlockMedicalScienceLocked entities: - uid: 514 @@ -16524,6 +16624,16 @@ entities: - type: Transform pos: -36.5,-46.5 parent: 12 + - type: PaintableAirlock + department: Medical + - uid: 12682 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-32.5 + parent: 12 + - type: PaintableAirlock + department: Medical - proto: AirlockQuartermasterLocked entities: - uid: 8437 @@ -16700,6 +16810,11 @@ entities: rot: 3.141592653589793 rad pos: -38.5,-40.5 parent: 12 + - uid: 5130 + components: + - type: Transform + pos: -22.5,-29.5 + parent: 12 - proto: AirlockSecurityGlassLocked entities: - uid: 63 @@ -16906,6 +17021,14 @@ entities: - type: DeviceNetwork deviceLists: - 8504 + - uid: 2023 + components: + - type: Transform + pos: 8.5,22.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 2966 - uid: 2094 components: - type: Transform @@ -16980,15 +17103,6 @@ entities: - type: DeviceNetwork deviceLists: - 9972 - - uid: 2103 - components: - - type: Transform - pos: -23.5,-30.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 9972 - - 2089 - uid: 2201 components: - type: Transform @@ -17006,6 +17120,14 @@ entities: - type: DeviceNetwork deviceLists: - 28373 + - uid: 2604 + components: + - type: Transform + pos: 2.5,16.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 12273 - uid: 2609 components: - type: Transform @@ -17040,6 +17162,14 @@ entities: - type: DeviceNetwork deviceLists: - 8971 + - uid: 3702 + components: + - type: Transform + pos: 15.5,16.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 12273 - uid: 4003 components: - type: Transform @@ -17092,6 +17222,33 @@ entities: - type: DeviceNetwork deviceLists: - 4906 + - uid: 5111 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-28.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 5109 + - uid: 5197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-29.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 5098 + - uid: 5316 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-15.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 4887 - uid: 7350 components: - type: Transform @@ -17116,7 +17273,7 @@ entities: parent: 12 - type: DeviceNetwork deviceLists: - - 27314 + - 9142 - uid: 7558 components: - type: Transform @@ -17135,15 +17292,15 @@ entities: - type: DeviceNetwork deviceLists: - 27312 - - uid: 7807 + - uid: 8344 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,11.5 + rot: -1.5707963267948966 rad + pos: 60.5,-0.5 parent: 12 - type: DeviceNetwork deviceLists: - - 27313 + - 8420 - uid: 8916 components: - type: Transform @@ -17208,6 +17365,14 @@ entities: - type: DeviceNetwork deviceLists: - 7342 + - uid: 9719 + components: + - type: Transform + pos: 14.5,22.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 2025 - uid: 9976 components: - type: Transform @@ -17354,14 +17519,6 @@ entities: - type: DeviceNetwork deviceLists: - 28376 - - uid: 10027 - components: - - type: Transform - pos: 12.5,-14.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 4887 - uid: 10450 components: - type: Transform @@ -17622,14 +17779,6 @@ entities: - type: DeviceNetwork deviceLists: - 22582 - - uid: 22580 - components: - - type: Transform - pos: 5.5,31.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 22582 - uid: 22581 components: - type: Transform @@ -18149,14 +18298,6 @@ entities: - type: DeviceNetwork deviceLists: - 29783 - - uid: 29869 - components: - - type: Transform - pos: 10.5,16.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 31894 - uid: 30260 components: - type: Transform @@ -18286,11 +18427,6 @@ entities: actions: !type:Container ents: - 4142 - - uid: 22527 - components: - - type: Transform - pos: 5.3721876,30.61469 - parent: 12 - uid: 24346 components: - type: Transform @@ -18311,20 +18447,6 @@ entities: - type: Transform pos: 55.478806,-34.59952 parent: 12 - - uid: 28705 - components: - - type: Transform - rot: -37.69911184307754 rad - pos: 57.361034,9.478294 - parent: 12 - - type: GasTank - toggleActionEntity: 28706 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 28706 - uid: 30709 components: - type: Transform @@ -18353,25 +18475,6 @@ entities: - type: Transform pos: -0.5,-20.5 parent: 12 -- proto: AlwaysPoweredLightExterior - entities: - - uid: 3205 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 83.5,6.5 - parent: 12 - - uid: 22157 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,15.5 - parent: 12 - - uid: 31887 - components: - - type: Transform - pos: 74.5,-6.5 - parent: 12 - proto: AmeController entities: - uid: 4915 @@ -18613,6 +18716,11 @@ entities: rot: -1.5707963267948966 rad pos: -7.5,6.5 parent: 12 + - uid: 11213 + components: + - type: Transform + pos: 57.5,8.5 + parent: 12 - uid: 11348 components: - type: Transform @@ -18676,6 +18784,12 @@ entities: - type: Transform pos: 35.5,58.5 parent: 12 + - uid: 15680 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-3.5 + parent: 12 - uid: 16031 components: - type: Transform @@ -18897,17 +19011,6 @@ entities: rot: 3.141592653589793 rad pos: -48.5,-52.5 parent: 12 - - uid: 28691 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-1.5 - parent: 12 - - uid: 28720 - components: - - type: Transform - pos: 59.5,7.5 - parent: 12 - uid: 28969 components: - type: Transform @@ -19611,21 +19714,6 @@ entities: - type: Transform pos: 20.5,24.5 parent: 12 - - uid: 2881 - components: - - type: Transform - pos: 19.5,14.5 - parent: 12 - - uid: 2992 - components: - - type: Transform - pos: 17.5,14.5 - parent: 12 - - uid: 3893 - components: - - type: Transform - pos: 18.5,16.5 - parent: 12 - uid: 4706 components: - type: Transform @@ -19721,11 +19809,6 @@ entities: - type: Transform pos: 25.5,-0.5 parent: 12 - - uid: 5030 - components: - - type: Transform - pos: 17.5,15.5 - parent: 12 - uid: 5191 components: - type: Transform @@ -19736,11 +19819,6 @@ entities: - type: Transform pos: 10.5,5.5 parent: 12 - - uid: 5418 - components: - - type: Transform - pos: 18.5,15.5 - parent: 12 - uid: 5812 components: - type: Transform @@ -19751,18 +19829,6 @@ entities: - type: Transform pos: 10.5,-0.5 parent: 12 - - uid: 7261 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-15.5 - parent: 12 - - uid: 7269 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-14.5 - parent: 12 - uid: 7272 components: - type: Transform @@ -19978,28 +20044,6 @@ entities: - type: Transform pos: 85.5,-30.5 parent: 12 - - uid: 9395 - components: - - type: Transform - pos: 17.5,16.5 - parent: 12 - - uid: 9518 - components: - - type: Transform - pos: 18.5,14.5 - parent: 12 - - uid: 9639 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,15.5 - parent: 12 - - uid: 9640 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,16.5 - parent: 12 - uid: 26206 components: - type: Transform @@ -20411,6 +20455,12 @@ entities: - type: InsideEntityStorage - proto: Barricade entities: + - uid: 8473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,-2.5 + parent: 12 - uid: 28210 components: - type: Transform @@ -20470,6 +20520,11 @@ entities: parent: 12 - proto: BaseBallBat entities: + - uid: 19613 + components: + - type: Transform + pos: 45.5,-4.5 + parent: 12 - uid: 25001 components: - type: Transform @@ -20914,16 +20969,6 @@ entities: parent: 12 - proto: BenchBlueComfy entities: - - uid: 4039 - components: - - type: Transform - pos: -22.5,-33.5 - parent: 12 - - uid: 10993 - components: - - type: Transform - pos: -21.5,-33.5 - parent: 12 - uid: 12706 components: - type: Transform @@ -21092,6 +21137,16 @@ entities: rot: -1.5707963267948966 rad pos: -54.5,-21.5 parent: 12 + - uid: 1850 + components: + - type: Transform + pos: 14.5,23.5 + parent: 12 + - uid: 4384 + components: + - type: Transform + pos: 15.5,23.5 + parent: 12 - uid: 5199 components: - type: Transform @@ -21112,60 +21167,80 @@ entities: - type: Transform pos: 64.5,-12.5 parent: 12 + - uid: 8974 + components: + - type: Transform + pos: 58.5,8.5 + parent: 12 + - uid: 8976 + components: + - type: Transform + pos: 60.5,8.5 + parent: 12 + - uid: 8992 + components: + - type: Transform + pos: 61.5,8.5 + parent: 12 + - uid: 9003 + components: + - type: Transform + pos: 59.5,8.5 + parent: 12 - uid: 9123 components: - type: Transform pos: 61.5,-37.5 parent: 12 - - uid: 9715 + - uid: 9407 components: - type: Transform - pos: 19.5,15.5 + pos: 9.5,23.5 parent: 12 - - uid: 9718 + - uid: 10993 components: - type: Transform - pos: 19.5,16.5 + pos: 7.5,23.5 parent: 12 - - uid: 9722 + - uid: 11326 components: - type: Transform - pos: 19.5,14.5 + pos: 6.5,23.5 parent: 12 - uid: 12614 components: - type: Transform pos: 59.5,40.5 parent: 12 - - uid: 20780 + - uid: 12674 components: - type: Transform - pos: 59.5,-15.5 + pos: 13.5,23.5 parent: 12 - - uid: 20781 + - uid: 12675 components: - type: Transform - pos: 59.5,-13.5 + pos: 16.5,23.5 parent: 12 - - uid: 26072 + - uid: 15681 components: - type: Transform - pos: 61.5,1.5 + pos: 8.5,23.5 parent: 12 - - uid: 26537 + - uid: 20780 components: - type: Transform - pos: 60.5,1.5 + pos: 59.5,-15.5 parent: 12 - - uid: 26580 + - uid: 20781 components: - type: Transform - pos: 7.5,3.5 + pos: 59.5,-13.5 parent: 12 - - uid: 26594 + - uid: 26580 components: - type: Transform - pos: 62.5,1.5 + pos: 7.5,3.5 parent: 12 - proto: BlastDoorOpen entities: @@ -21175,11 +21250,6 @@ entities: rot: -1.5707963267948966 rad pos: -56.5,21.5 parent: 12 - - uid: 10323 - components: - - type: Transform - pos: -47.5,51.5 - parent: 12 - uid: 16503 components: - type: Transform @@ -21307,11 +21377,6 @@ entities: rot: 3.141592653589793 rad pos: -29.5,49.5 parent: 12 - - uid: 20562 - components: - - type: Transform - pos: -47.5,52.5 - parent: 12 - proto: BlockGameArcade entities: - uid: 14993 @@ -21976,14 +22041,6 @@ entities: rot: 1.5707963267948966 rad pos: 32.5,25.5 parent: 12 -- proto: BorgChargerCircuitboard - entities: - - uid: 1810 - components: - - type: Transform - parent: 1809 - - type: Physics - canCollide: False - proto: BorgModuleCable entities: - uid: 1780 @@ -22001,11 +22058,6 @@ entities: parent: 12 - proto: BorgModuleGPS entities: - - uid: 1779 - components: - - type: Transform - pos: -25.40692,-31.395433 - parent: 12 - uid: 8798 components: - type: Transform @@ -22020,12 +22072,6 @@ entities: parent: 12 - proto: BorgModuleRadiationDetection entities: - - uid: 22075 - components: - - type: Transform - rot: -37.69911184307754 rad - pos: 58.524303,12.480953 - parent: 12 - uid: 28441 components: - type: Transform @@ -22051,7 +22097,8 @@ entities: - uid: 1782 components: - type: Transform - pos: -26.417336,-31.395433 + rot: -62.83185307179591 rad + pos: -19.470467,-27.590706 parent: 12 - proto: BoxBeaker entities: @@ -22131,6 +22178,16 @@ entities: parent: 12 - proto: BoxFolderBlack entities: + - uid: 7133 + components: + - type: Transform + pos: -2.734612,22.745487 + parent: 12 + - uid: 7135 + components: + - type: Transform + pos: -2.5170195,22.499947 + parent: 12 - uid: 10611 components: - type: Transform @@ -22215,7 +22272,7 @@ entities: - uid: 24175 components: - type: Transform - pos: 52.52656,46.632416 + pos: 52.518078,47.484 parent: 12 - uid: 28896 components: @@ -22579,12 +22636,6 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,-28.5 parent: 12 - - uid: 28721 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,3.5 - parent: 12 - uid: 29835 components: - type: Transform @@ -22622,6 +22673,12 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,-13.5 parent: 12 + - uid: 495 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,7.5 + parent: 12 - uid: 4771 components: - type: Transform @@ -22634,17 +22691,17 @@ entities: rot: 1.5707963267948966 rad pos: -41.5,53.5 parent: 12 - - uid: 9576 + - uid: 10080 components: - type: Transform rot: -1.5707963267948966 rad - pos: 16.5,16.5 + pos: 1.5,-13.5 parent: 12 - - uid: 10080 + - uid: 11866 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-13.5 + rot: 1.5707963267948966 rad + pos: 56.5,9.5 parent: 12 - uid: 13644 components: @@ -22704,23 +22761,11 @@ entities: rot: 1.5707963267948966 rad pos: 45.5,-19.5 parent: 12 - - uid: 28722 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,1.5 - parent: 12 - uid: 28740 components: - type: Transform pos: 14.5,6.5 parent: 12 - - uid: 29345 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,2.5 - parent: 12 - uid: 29367 components: - type: Transform @@ -22754,6 +22799,11 @@ entities: - type: Transform pos: 51.5,-12.5 parent: 12 + - uid: 68 + components: + - type: Transform + pos: 35.5,-31.5 + parent: 12 - uid: 72 components: - type: Transform @@ -22769,6 +22819,11 @@ entities: - type: Transform pos: -10.5,4.5 parent: 12 + - uid: 79 + components: + - type: Transform + pos: 34.5,-32.5 + parent: 12 - uid: 98 components: - type: Transform @@ -22794,6 +22849,11 @@ entities: - type: Transform pos: 52.5,-11.5 parent: 12 + - uid: 190 + components: + - type: Transform + pos: 37.5,-31.5 + parent: 12 - uid: 194 components: - type: Transform @@ -22809,11 +22869,21 @@ entities: - type: Transform pos: 1.5,68.5 parent: 12 + - uid: 271 + components: + - type: Transform + pos: 34.5,-31.5 + parent: 12 - uid: 272 components: - type: Transform pos: 40.5,-13.5 parent: 12 + - uid: 273 + components: + - type: Transform + pos: 36.5,-31.5 + parent: 12 - uid: 317 components: - type: Transform @@ -22824,6 +22894,11 @@ entities: - type: Transform pos: 30.5,-13.5 parent: 12 + - uid: 327 + components: + - type: Transform + pos: 53.5,-7.5 + parent: 12 - uid: 335 components: - type: Transform @@ -22869,10 +22944,25 @@ entities: - type: Transform pos: -45.5,1.5 parent: 12 - - uid: 501 + - uid: 505 + components: + - type: Transform + pos: 4.5,26.5 + parent: 12 + - uid: 524 components: - type: Transform - pos: 15.5,21.5 + pos: 1.5,17.5 + parent: 12 + - uid: 540 + components: + - type: Transform + pos: 11.5,22.5 + parent: 12 + - uid: 567 + components: + - type: Transform + pos: 1.5,19.5 parent: 12 - uid: 628 components: @@ -22959,6 +23049,11 @@ entities: - type: Transform pos: 24.5,12.5 parent: 12 + - uid: 1267 + components: + - type: Transform + pos: 3.5,20.5 + parent: 12 - uid: 1315 components: - type: Transform @@ -23379,6 +23474,11 @@ entities: - type: Transform pos: -37.5,-19.5 parent: 12 + - uid: 1500 + components: + - type: Transform + pos: 54.5,-5.5 + parent: 12 - uid: 1505 components: - type: Transform @@ -23654,6 +23754,11 @@ entities: - type: Transform pos: -30.5,-42.5 parent: 12 + - uid: 1611 + components: + - type: Transform + pos: 6.5,18.5 + parent: 12 - uid: 1614 components: - type: Transform @@ -24054,6 +24159,11 @@ entities: - type: Transform pos: -22.5,-29.5 parent: 12 + - uid: 1783 + components: + - type: Transform + pos: 13.5,21.5 + parent: 12 - uid: 1793 components: - type: Transform @@ -24074,11 +24184,46 @@ entities: - type: Transform pos: -38.5,28.5 parent: 12 + - uid: 1856 + components: + - type: Transform + pos: -3.5,20.5 + parent: 12 + - uid: 1916 + components: + - type: Transform + pos: 13.5,19.5 + parent: 12 + - uid: 1918 + components: + - type: Transform + pos: 5.5,18.5 + parent: 12 - uid: 1943 components: - type: Transform pos: -43.5,-14.5 parent: 12 + - uid: 2024 + components: + - type: Transform + pos: 15.5,19.5 + parent: 12 + - uid: 2027 + components: + - type: Transform + pos: 17.5,14.5 + parent: 12 + - uid: 2065 + components: + - type: Transform + pos: 17.5,16.5 + parent: 12 + - uid: 2103 + components: + - type: Transform + pos: 17.5,17.5 + parent: 12 - uid: 2136 components: - type: Transform @@ -24324,6 +24469,11 @@ entities: - type: Transform pos: 30.5,-12.5 parent: 12 + - uid: 2464 + components: + - type: Transform + pos: 13.5,12.5 + parent: 12 - uid: 2509 components: - type: Transform @@ -24349,6 +24499,16 @@ entities: - type: Transform pos: 0.5,-46.5 parent: 12 + - uid: 2574 + components: + - type: Transform + pos: 0.5,22.5 + parent: 12 + - uid: 2610 + components: + - type: Transform + pos: -2.5,21.5 + parent: 12 - uid: 2630 components: - type: Transform @@ -24364,6 +24524,11 @@ entities: - type: Transform pos: 40.5,-22.5 parent: 12 + - uid: 2655 + components: + - type: Transform + pos: 1.5,20.5 + parent: 12 - uid: 2670 components: - type: Transform @@ -24379,6 +24544,11 @@ entities: - type: Transform pos: 40.5,1.5 parent: 12 + - uid: 2705 + components: + - type: Transform + pos: 51.5,-6.5 + parent: 12 - uid: 2725 components: - type: Transform @@ -24429,6 +24599,16 @@ entities: - type: Transform pos: 40.5,4.5 parent: 12 + - uid: 2881 + components: + - type: Transform + pos: 60.5,6.5 + parent: 12 + - uid: 2890 + components: + - type: Transform + pos: 61.5,6.5 + parent: 12 - uid: 2908 components: - type: Transform @@ -24464,6 +24644,21 @@ entities: - type: Transform pos: 0.5,-36.5 parent: 12 + - uid: 2975 + components: + - type: Transform + pos: 4.5,18.5 + parent: 12 + - uid: 3003 + components: + - type: Transform + pos: 12.5,12.5 + parent: 12 + - uid: 3012 + components: + - type: Transform + pos: 16.5,14.5 + parent: 12 - uid: 3017 components: - type: Transform @@ -24474,6 +24669,11 @@ entities: - type: Transform pos: 10.5,-40.5 parent: 12 + - uid: 3089 + components: + - type: Transform + pos: -0.5,22.5 + parent: 12 - uid: 3102 components: - type: Transform @@ -24494,6 +24694,11 @@ entities: - type: Transform pos: 54.5,-21.5 parent: 12 + - uid: 3127 + components: + - type: Transform + pos: 10.5,12.5 + parent: 12 - uid: 3129 components: - type: Transform @@ -24504,6 +24709,11 @@ entities: - type: Transform pos: 11.5,-11.5 parent: 12 + - uid: 3134 + components: + - type: Transform + pos: 4.5,12.5 + parent: 12 - uid: 3157 components: - type: Transform @@ -25499,6 +25709,11 @@ entities: - type: Transform pos: 15.5,5.5 parent: 12 + - uid: 3710 + components: + - type: Transform + pos: -2.5,20.5 + parent: 12 - uid: 3713 components: - type: Transform @@ -25524,6 +25739,11 @@ entities: - type: Transform pos: 10.5,-39.5 parent: 12 + - uid: 3942 + components: + - type: Transform + pos: 8.5,19.5 + parent: 12 - uid: 3962 components: - type: Transform @@ -25964,6 +26184,11 @@ entities: - type: Transform pos: 9.5,-1.5 parent: 12 + - uid: 4692 + components: + - type: Transform + pos: 9.5,19.5 + parent: 12 - uid: 4721 components: - type: Transform @@ -26004,6 +26229,21 @@ entities: - type: Transform pos: -23.5,-11.5 parent: 12 + - uid: 4954 + components: + - type: Transform + pos: 63.5,6.5 + parent: 12 + - uid: 4974 + components: + - type: Transform + pos: 1.5,22.5 + parent: 12 + - uid: 4987 + components: + - type: Transform + pos: -2.5,22.5 + parent: 12 - uid: 5013 components: - type: Transform @@ -26109,6 +26349,11 @@ entities: - type: Transform pos: 21.5,-3.5 parent: 12 + - uid: 5214 + components: + - type: Transform + pos: 59.5,-3.5 + parent: 12 - uid: 5218 components: - type: Transform @@ -26159,11 +26404,26 @@ entities: - type: Transform pos: 34.5,0.5 parent: 12 + - uid: 5482 + components: + - type: Transform + pos: 2.5,22.5 + parent: 12 + - uid: 5497 + components: + - type: Transform + pos: 1.5,14.5 + parent: 12 - uid: 5503 components: - type: Transform pos: 36.5,4.5 parent: 12 + - uid: 5512 + components: + - type: Transform + pos: 1.5,15.5 + parent: 12 - uid: 5535 components: - type: Transform @@ -27019,11 +27279,21 @@ entities: - type: Transform pos: 12.5,-33.5 parent: 12 + - uid: 6261 + components: + - type: Transform + pos: -1.5,22.5 + parent: 12 - uid: 6267 components: - type: Transform pos: 37.5,4.5 parent: 12 + - uid: 6287 + components: + - type: Transform + pos: 13.5,13.5 + parent: 12 - uid: 6703 components: - type: Transform @@ -27034,6 +27304,21 @@ entities: - type: Transform pos: 35.5,0.5 parent: 12 + - uid: 6732 + components: + - type: Transform + pos: 13.5,14.5 + parent: 12 + - uid: 6739 + components: + - type: Transform + pos: 14.5,14.5 + parent: 12 + - uid: 6778 + components: + - type: Transform + pos: 51.5,-7.5 + parent: 12 - uid: 6838 components: - type: Transform @@ -27389,6 +27674,16 @@ entities: - type: Transform pos: 32.5,-38.5 parent: 12 + - uid: 7153 + components: + - type: Transform + pos: 57.5,7.5 + parent: 12 + - uid: 7159 + components: + - type: Transform + pos: 1.5,12.5 + parent: 12 - uid: 7202 components: - type: Transform @@ -27409,11 +27704,21 @@ entities: - type: Transform pos: 37.5,3.5 parent: 12 + - uid: 7233 + components: + - type: Transform + pos: 13.5,20.5 + parent: 12 - uid: 7258 components: - type: Transform pos: -46.5,52.5 parent: 12 + - uid: 7261 + components: + - type: Transform + pos: 12.5,21.5 + parent: 12 - uid: 7320 components: - type: Transform @@ -27444,10 +27749,10 @@ entities: - type: Transform pos: -9.5,-10.5 parent: 12 - - uid: 7386 + - uid: 7366 components: - type: Transform - pos: 5.5,13.5 + pos: 3.5,12.5 parent: 12 - uid: 7442 components: @@ -27459,6 +27764,16 @@ entities: - type: Transform pos: -42.5,51.5 parent: 12 + - uid: 7528 + components: + - type: Transform + pos: 56.5,-5.5 + parent: 12 + - uid: 7534 + components: + - type: Transform + pos: 55.5,-5.5 + parent: 12 - uid: 7538 components: - type: Transform @@ -27469,6 +27784,21 @@ entities: - type: Transform pos: -42.5,52.5 parent: 12 + - uid: 7556 + components: + - type: Transform + pos: 1.5,13.5 + parent: 12 + - uid: 7557 + components: + - type: Transform + pos: 5.5,12.5 + parent: 12 + - uid: 7563 + components: + - type: Transform + pos: 2.5,12.5 + parent: 12 - uid: 7564 components: - type: Transform @@ -28774,11 +29104,6 @@ entities: - type: Transform pos: 38.5,11.5 parent: 12 - - uid: 8877 - components: - - type: Transform - pos: 8.5,13.5 - parent: 12 - uid: 8917 components: - type: Transform @@ -28809,6 +29134,51 @@ entities: - type: Transform pos: -10.5,-10.5 parent: 12 + - uid: 9000 + components: + - type: Transform + pos: 58.5,8.5 + parent: 12 + - uid: 9005 + components: + - type: Transform + pos: 58.5,9.5 + parent: 12 + - uid: 9006 + components: + - type: Transform + pos: 58.5,10.5 + parent: 12 + - uid: 9007 + components: + - type: Transform + pos: 59.5,10.5 + parent: 12 + - uid: 9008 + components: + - type: Transform + pos: 61.5,10.5 + parent: 12 + - uid: 9009 + components: + - type: Transform + pos: 61.5,9.5 + parent: 12 + - uid: 9010 + components: + - type: Transform + pos: 61.5,8.5 + parent: 12 + - uid: 9012 + components: + - type: Transform + pos: 62.5,2.5 + parent: 12 + - uid: 9038 + components: + - type: Transform + pos: 64.5,6.5 + parent: 12 - uid: 9043 components: - type: Transform @@ -28819,6 +29189,16 @@ entities: - type: Transform pos: -10.5,-2.5 parent: 12 + - uid: 9046 + components: + - type: Transform + pos: 64.5,2.5 + parent: 12 + - uid: 9047 + components: + - type: Transform + pos: 63.5,2.5 + parent: 12 - uid: 9063 components: - type: Transform @@ -28987,32 +29367,7 @@ entities: - uid: 9179 components: - type: Transform - pos: 34.5,-32.5 - parent: 12 - - uid: 9180 - components: - - type: Transform - pos: 34.5,-31.5 - parent: 12 - - uid: 9181 - components: - - type: Transform - pos: 35.5,-31.5 - parent: 12 - - uid: 9182 - components: - - type: Transform - pos: 36.5,-31.5 - parent: 12 - - uid: 9183 - components: - - type: Transform - pos: 37.5,-31.5 - parent: 12 - - uid: 9184 - components: - - type: Transform - pos: 38.5,-31.5 + pos: 51.5,-5.5 parent: 12 - uid: 9185 components: @@ -29204,60 +29559,75 @@ entities: - type: Transform pos: 22.5,5.5 parent: 12 - - uid: 9520 + - uid: 9536 components: - type: Transform - pos: 7.5,14.5 + pos: 61.5,7.5 parent: 12 - - uid: 9522 + - uid: 9538 components: - type: Transform - pos: 7.5,16.5 + pos: 63.5,-1.5 parent: 12 - - uid: 9530 + - uid: 9547 components: - type: Transform - pos: 9.5,22.5 + pos: -1.5,-15.5 parent: 12 - - uid: 9538 + - uid: 9577 components: - type: Transform - pos: 7.5,19.5 + pos: 4.5,23.5 parent: 12 - - uid: 9547 + - uid: 9584 components: - type: Transform - pos: -1.5,-15.5 + pos: 3.5,68.5 parent: 12 - - uid: 9553 + - uid: 9595 components: - type: Transform - pos: 7.5,17.5 + pos: 53.5,-8.5 parent: 12 - - uid: 9565 + - uid: 9603 components: - type: Transform - pos: 7.5,18.5 + pos: 11.5,19.5 parent: 12 - - uid: 9577 + - uid: 9615 components: - type: Transform - pos: 10.5,22.5 + pos: 3.5,19.5 parent: 12 - - uid: 9584 + - uid: 9617 components: - type: Transform - pos: 3.5,68.5 + pos: 11.5,23.5 parent: 12 - - uid: 9616 + - uid: 9635 components: - type: Transform - pos: 3.5,15.5 + pos: 39.5,-14.5 parent: 12 - - uid: 9635 + - uid: 9653 components: - type: Transform - pos: 39.5,-14.5 + pos: 4.5,22.5 + parent: 12 + - uid: 9655 + components: + - type: Transform + pos: 4.5,21.5 + parent: 12 + - uid: 9668 + components: + - type: Transform + pos: 4.5,25.5 + parent: 12 + - uid: 9676 + components: + - type: Transform + pos: 16.5,18.5 parent: 12 - uid: 9677 components: @@ -29269,25 +29639,25 @@ entities: - type: Transform pos: 30.5,1.5 parent: 12 - - uid: 9723 + - uid: 9721 components: - type: Transform - pos: 7.5,21.5 + pos: 14.5,19.5 parent: 12 - - uid: 9724 + - uid: 9832 components: - type: Transform - pos: 7.5,22.5 + pos: 54.5,-8.5 parent: 12 - - uid: 9727 + - uid: 9844 components: - type: Transform - pos: 13.5,19.5 + pos: -5.5,-42.5 parent: 12 - - uid: 9844 + - uid: 9852 components: - type: Transform - pos: -5.5,-42.5 + pos: 2.5,20.5 parent: 12 - uid: 9854 components: @@ -29439,6 +29809,11 @@ entities: - type: Transform pos: 3.5,-36.5 parent: 12 + - uid: 9957 + components: + - type: Transform + pos: 51.5,-8.5 + parent: 12 - uid: 9973 components: - type: Transform @@ -29604,6 +29979,21 @@ entities: - type: Transform pos: -20.5,-3.5 parent: 12 + - uid: 10603 + components: + - type: Transform + pos: 55.5,-8.5 + parent: 12 + - uid: 10604 + components: + - type: Transform + pos: 53.5,-6.5 + parent: 12 + - uid: 10623 + components: + - type: Transform + pos: 17.5,15.5 + parent: 12 - uid: 10625 components: - type: Transform @@ -29659,11 +30049,6 @@ entities: - type: Transform pos: 8.5,-8.5 parent: 12 - - uid: 10807 - components: - - type: Transform - pos: 13.5,20.5 - parent: 12 - uid: 10809 components: - type: Transform @@ -29674,6 +30059,36 @@ entities: - type: Transform pos: 8.5,-6.5 parent: 12 + - uid: 10833 + components: + - type: Transform + pos: 10.5,21.5 + parent: 12 + - uid: 10869 + components: + - type: Transform + pos: 1.5,16.5 + parent: 12 + - uid: 10968 + components: + - type: Transform + pos: 7.5,19.5 + parent: 12 + - uid: 11044 + components: + - type: Transform + pos: 11.5,20.5 + parent: 12 + - uid: 11046 + components: + - type: Transform + pos: 11.5,12.5 + parent: 12 + - uid: 11047 + components: + - type: Transform + pos: 15.5,14.5 + parent: 12 - uid: 11129 components: - type: Transform @@ -29689,10 +30104,45 @@ entities: - type: Transform pos: 30.5,-34.5 parent: 12 - - uid: 11282 + - uid: 11200 + components: + - type: Transform + pos: 7.5,12.5 + parent: 12 + - uid: 11204 + components: + - type: Transform + pos: 6.5,12.5 + parent: 12 + - uid: 11214 components: - type: Transform - pos: 7.5,20.5 + pos: 3.5,22.5 + parent: 12 + - uid: 11215 + components: + - type: Transform + pos: 6.5,19.5 + parent: 12 + - uid: 11230 + components: + - type: Transform + pos: 60.5,10.5 + parent: 12 + - uid: 11255 + components: + - type: Transform + pos: 4.5,19.5 + parent: 12 + - uid: 11276 + components: + - type: Transform + pos: 8.5,12.5 + parent: 12 + - uid: 11289 + components: + - type: Transform + pos: 64.5,-1.5 parent: 12 - uid: 11293 components: @@ -29709,6 +30159,21 @@ entities: - type: Transform pos: 47.5,-0.5 parent: 12 + - uid: 11305 + components: + - type: Transform + pos: 60.5,-1.5 + parent: 12 + - uid: 11315 + components: + - type: Transform + pos: 16.5,19.5 + parent: 12 + - uid: 11328 + components: + - type: Transform + pos: 9.5,20.5 + parent: 12 - uid: 11366 components: - type: Transform @@ -29729,6 +30194,11 @@ entities: - type: Transform pos: 43.5,26.5 parent: 12 + - uid: 11380 + components: + - type: Transform + pos: 62.5,-1.5 + parent: 12 - uid: 11388 components: - type: Transform @@ -29749,6 +30219,11 @@ entities: - type: Transform pos: 41.5,9.5 parent: 12 + - uid: 11453 + components: + - type: Transform + pos: 61.5,-1.5 + parent: 12 - uid: 11484 components: - type: Transform @@ -30327,12 +30802,7 @@ entities: - uid: 12266 components: - type: Transform - pos: 13.5,22.5 - parent: 12 - - uid: 12273 - components: - - type: Transform - pos: 12.5,22.5 + pos: 9.5,12.5 parent: 12 - uid: 12288 components: @@ -30354,6 +30824,11 @@ entities: - type: Transform pos: 17.5,-8.5 parent: 12 + - uid: 12573 + components: + - type: Transform + pos: 1.5,18.5 + parent: 12 - uid: 12636 components: - type: Transform @@ -30369,11 +30844,6 @@ entities: - type: Transform pos: 17.5,-2.5 parent: 12 - - uid: 12714 - components: - - type: Transform - pos: 3.5,16.5 - parent: 12 - uid: 12722 components: - type: Transform @@ -32179,6 +32649,11 @@ entities: - type: Transform pos: 42.5,64.5 parent: 12 + - uid: 15131 + components: + - type: Transform + pos: 44.5,-5.5 + parent: 12 - uid: 15299 components: - type: Transform @@ -32484,16 +32959,6 @@ entities: - type: Transform pos: 39.5,46.5 parent: 12 - - uid: 15670 - components: - - type: Transform - pos: -3.5,20.5 - parent: 12 - - uid: 15673 - components: - - type: Transform - pos: -4.5,20.5 - parent: 12 - uid: 15674 components: - type: Transform @@ -33309,11 +33774,6 @@ entities: - type: Transform pos: 0.5,16.5 parent: 12 - - uid: 16180 - components: - - type: Transform - pos: 0.5,15.5 - parent: 12 - uid: 16181 components: - type: Transform @@ -33894,135 +34354,35 @@ entities: - type: Transform pos: 15.5,12.5 parent: 12 - - uid: 16342 - components: - - type: Transform - pos: 15.5,15.5 - parent: 12 - uid: 16344 components: - type: Transform - pos: 16.5,15.5 - parent: 12 - - uid: 16345 - components: - - type: Transform - pos: 17.5,15.5 + pos: 57.5,-2.5 parent: 12 - uid: 16346 components: - type: Transform - pos: 18.5,15.5 - parent: 12 - - uid: 16347 - components: - - type: Transform - pos: 14.5,15.5 - parent: 12 - - uid: 16348 - components: - - type: Transform - pos: 13.5,15.5 - parent: 12 - - uid: 16349 - components: - - type: Transform - pos: 12.5,15.5 - parent: 12 - - uid: 16350 - components: - - type: Transform - pos: 11.5,15.5 + pos: 11.5,21.5 parent: 12 - uid: 16351 components: - type: Transform - pos: 10.5,15.5 + pos: 4.5,24.5 parent: 12 - uid: 16352 components: - type: Transform - pos: 9.5,15.5 - parent: 12 - - uid: 16353 - components: - - type: Transform - pos: 8.5,15.5 - parent: 12 - - uid: 16354 - components: - - type: Transform - pos: 7.5,15.5 - parent: 12 - - uid: 16358 - components: - - type: Transform - pos: 4.5,13.5 - parent: 12 - - uid: 16359 - components: - - type: Transform - pos: 4.5,14.5 - parent: 12 - - uid: 16360 - components: - - type: Transform - pos: 13.5,16.5 - parent: 12 - - uid: 16361 - components: - - type: Transform - pos: 13.5,17.5 - parent: 12 - - uid: 16362 - components: - - type: Transform - pos: 13.5,18.5 + pos: 58.5,6.5 parent: 12 - uid: 16363 components: - type: Transform pos: -22.5,66.5 parent: 12 - - uid: 16367 - components: - - type: Transform - pos: 8.5,12.5 - parent: 12 - - uid: 16368 - components: - - type: Transform - pos: 13.5,12.5 - parent: 12 - - uid: 16369 - components: - - type: Transform - pos: 13.5,13.5 - parent: 12 - - uid: 16370 - components: - - type: Transform - pos: 13.5,14.5 - parent: 12 - uid: 16371 components: - type: Transform - pos: 7.5,13.5 - parent: 12 - - uid: 16372 - components: - - type: Transform - pos: 6.5,13.5 - parent: 12 - - uid: 16375 - components: - - type: Transform - pos: 6.5,12.5 - parent: 12 - - uid: 16376 - components: - - type: Transform - pos: 6.5,11.5 + pos: 17.5,18.5 parent: 12 - uid: 16378 components: @@ -34109,6 +34469,11 @@ entities: - type: Transform pos: -12.5,-5.5 parent: 12 + - uid: 16436 + components: + - type: Transform + pos: 9.5,21.5 + parent: 12 - uid: 16842 components: - type: Transform @@ -35979,50 +36344,25 @@ entities: - type: Transform pos: -45.5,22.5 parent: 12 - - uid: 19556 - components: - - type: Transform - pos: -0.5,-15.5 - parent: 12 - - uid: 19569 - components: - - type: Transform - pos: 3.5,17.5 - parent: 12 - - uid: 19612 + - uid: 19294 components: - type: Transform - pos: 4.5,19.5 + pos: 57.5,8.5 parent: 12 - - uid: 19613 + - uid: 19556 components: - type: Transform - pos: 4.5,17.5 + pos: -0.5,-15.5 parent: 12 - uid: 19643 components: - type: Transform pos: 0.5,-15.5 parent: 12 - - uid: 19818 - components: - - type: Transform - pos: 4.5,15.5 - parent: 12 - - uid: 19821 - components: - - type: Transform - pos: 13.5,21.5 - parent: 12 - - uid: 19824 - components: - - type: Transform - pos: 4.5,20.5 - parent: 12 - - uid: 19825 + - uid: 19663 components: - type: Transform - pos: 5.5,20.5 + pos: 49.5,-5.5 parent: 12 - uid: 19826 components: @@ -37059,6 +37399,11 @@ entities: - type: Transform pos: -28.5,40.5 parent: 12 + - uid: 20789 + components: + - type: Transform + pos: 52.5,-8.5 + parent: 12 - uid: 20802 components: - type: Transform @@ -37874,6 +38219,11 @@ entities: - type: Transform pos: -2.5,34.5 parent: 12 + - uid: 23125 + components: + - type: Transform + pos: 50.5,-5.5 + parent: 12 - uid: 23137 components: - type: Transform @@ -37904,6 +38254,16 @@ entities: - type: Transform pos: -54.5,61.5 parent: 12 + - uid: 24202 + components: + - type: Transform + pos: 47.5,-5.5 + parent: 12 + - uid: 24204 + components: + - type: Transform + pos: 46.5,-5.5 + parent: 12 - uid: 24255 components: - type: Transform @@ -37939,11 +38299,21 @@ entities: - type: Transform pos: -52.5,59.5 parent: 12 + - uid: 24455 + components: + - type: Transform + pos: 45.5,-5.5 + parent: 12 - uid: 24456 components: - type: Transform pos: -52.5,58.5 parent: 12 + - uid: 24469 + components: + - type: Transform + pos: 48.5,-5.5 + parent: 12 - uid: 24640 components: - type: Transform @@ -39694,16 +40064,46 @@ entities: - type: Transform pos: -23.5,-12.5 parent: 12 - - uid: 25526 + - uid: 25568 components: - type: Transform - pos: 4.5,18.5 + pos: -60.5,-55.5 + parent: 12 + - uid: 25581 + components: + - type: Transform + pos: -60.5,-56.5 + parent: 12 + - uid: 25598 + components: + - type: Transform + pos: -60.5,-57.5 parent: 12 - uid: 25610 components: - type: Transform pos: 50.5,-0.5 parent: 12 + - uid: 25682 + components: + - type: Transform + pos: -60.5,-58.5 + parent: 12 + - uid: 25738 + components: + - type: Transform + pos: -60.5,-59.5 + parent: 12 + - uid: 25822 + components: + - type: Transform + pos: -61.5,-59.5 + parent: 12 + - uid: 25823 + components: + - type: Transform + pos: -59.5,-59.5 + parent: 12 - uid: 26097 components: - type: Transform @@ -39749,16 +40149,6 @@ entities: - type: Transform pos: -53.5,-38.5 parent: 12 - - uid: 26263 - components: - - type: Transform - pos: 16.5,14.5 - parent: 12 - - uid: 26264 - components: - - type: Transform - pos: 16.5,16.5 - parent: 12 - uid: 26295 components: - type: Transform @@ -39854,11 +40244,6 @@ entities: - type: Transform pos: 17.5,0.5 parent: 12 - - uid: 26446 - components: - - type: Transform - pos: 56.5,-2.5 - parent: 12 - uid: 26456 components: - type: Transform @@ -40024,11 +40409,6 @@ entities: - type: Transform pos: 28.5,10.5 parent: 12 - - uid: 26804 - components: - - type: Transform - pos: 16.5,20.5 - parent: 12 - uid: 26812 components: - type: Transform @@ -40079,41 +40459,11 @@ entities: - type: Transform pos: 57.5,-3.5 parent: 12 - - uid: 26859 - components: - - type: Transform - pos: 61.5,-3.5 - parent: 12 - - uid: 26860 - components: - - type: Transform - pos: 62.5,-3.5 - parent: 12 - uid: 26861 components: - type: Transform pos: 58.5,-3.5 parent: 12 - - uid: 26862 - components: - - type: Transform - pos: 59.5,-3.5 - parent: 12 - - uid: 26863 - components: - - type: Transform - pos: 60.5,-3.5 - parent: 12 - - uid: 26864 - components: - - type: Transform - pos: 63.5,-3.5 - parent: 12 - - uid: 26867 - components: - - type: Transform - pos: 65.5,-3.5 - parent: 12 - uid: 26868 components: - type: Transform @@ -40124,216 +40474,6 @@ entities: - type: Transform pos: 65.5,-2.5 parent: 12 - - uid: 26870 - components: - - type: Transform - pos: 66.5,-2.5 - parent: 12 - - uid: 26871 - components: - - type: Transform - pos: 67.5,-2.5 - parent: 12 - - uid: 26872 - components: - - type: Transform - pos: 68.5,-2.5 - parent: 12 - - uid: 26873 - components: - - type: Transform - pos: 69.5,-2.5 - parent: 12 - - uid: 26874 - components: - - type: Transform - pos: 70.5,-2.5 - parent: 12 - - uid: 26875 - components: - - type: Transform - pos: 71.5,-2.5 - parent: 12 - - uid: 26876 - components: - - type: Transform - pos: 72.5,-2.5 - parent: 12 - - uid: 26877 - components: - - type: Transform - pos: 73.5,-2.5 - parent: 12 - - uid: 26878 - components: - - type: Transform - pos: 74.5,-2.5 - parent: 12 - - uid: 26880 - components: - - type: Transform - pos: 75.5,-2.5 - parent: 12 - - uid: 26883 - components: - - type: Transform - pos: 76.5,-2.5 - parent: 12 - - uid: 26884 - components: - - type: Transform - pos: 77.5,-2.5 - parent: 12 - - uid: 26886 - components: - - type: Transform - pos: 78.5,-2.5 - parent: 12 - - uid: 26887 - components: - - type: Transform - pos: 79.5,-2.5 - parent: 12 - - uid: 26888 - components: - - type: Transform - pos: 79.5,-1.5 - parent: 12 - - uid: 26889 - components: - - type: Transform - pos: 79.5,-0.5 - parent: 12 - - uid: 26890 - components: - - type: Transform - pos: 79.5,0.5 - parent: 12 - - uid: 26891 - components: - - type: Transform - pos: 79.5,1.5 - parent: 12 - - uid: 26895 - components: - - type: Transform - pos: 79.5,2.5 - parent: 12 - - uid: 26896 - components: - - type: Transform - pos: 79.5,3.5 - parent: 12 - - uid: 26897 - components: - - type: Transform - pos: 79.5,4.5 - parent: 12 - - uid: 26901 - components: - - type: Transform - pos: 79.5,5.5 - parent: 12 - - uid: 26902 - components: - - type: Transform - pos: 79.5,6.5 - parent: 12 - - uid: 26903 - components: - - type: Transform - pos: 79.5,7.5 - parent: 12 - - uid: 26904 - components: - - type: Transform - pos: 79.5,8.5 - parent: 12 - - uid: 26905 - components: - - type: Transform - pos: 79.5,9.5 - parent: 12 - - uid: 26906 - components: - - type: Transform - pos: 79.5,10.5 - parent: 12 - - uid: 26907 - components: - - type: Transform - pos: 14.5,21.5 - parent: 12 - - uid: 26908 - components: - - type: Transform - pos: 79.5,11.5 - parent: 12 - - uid: 26909 - components: - - type: Transform - pos: 78.5,11.5 - parent: 12 - - uid: 26910 - components: - - type: Transform - pos: 77.5,11.5 - parent: 12 - - uid: 26911 - components: - - type: Transform - pos: 76.5,11.5 - parent: 12 - - uid: 26912 - components: - - type: Transform - pos: 75.5,11.5 - parent: 12 - - uid: 26913 - components: - - type: Transform - pos: 74.5,11.5 - parent: 12 - - uid: 26914 - components: - - type: Transform - pos: 73.5,11.5 - parent: 12 - - uid: 26915 - components: - - type: Transform - pos: 72.5,11.5 - parent: 12 - - uid: 26916 - components: - - type: Transform - pos: 71.5,11.5 - parent: 12 - - uid: 26917 - components: - - type: Transform - pos: 70.5,11.5 - parent: 12 - - uid: 26918 - components: - - type: Transform - pos: 69.5,11.5 - parent: 12 - - uid: 26919 - components: - - type: Transform - pos: 67.5,11.5 - parent: 12 - - uid: 26920 - components: - - type: Transform - pos: 68.5,11.5 - parent: 12 - - uid: 26921 - components: - - type: Transform - pos: 66.5,11.5 - parent: 12 - uid: 26922 components: - type: Transform @@ -40404,66 +40544,11 @@ entities: - type: Transform pos: 65.5,-1.5 parent: 12 - - uid: 26943 - components: - - type: Transform - pos: 65.5,12.5 - parent: 12 - - uid: 26945 - components: - - type: Transform - pos: 64.5,12.5 - parent: 12 - - uid: 26950 - components: - - type: Transform - pos: 63.5,12.5 - parent: 12 - - uid: 26951 - components: - - type: Transform - pos: 62.5,12.5 - parent: 12 - - uid: 26952 - components: - - type: Transform - pos: 62.5,11.5 - parent: 12 - - uid: 26953 - components: - - type: Transform - pos: 62.5,10.5 - parent: 12 - - uid: 26954 - components: - - type: Transform - pos: 62.5,8.5 - parent: 12 - - uid: 26956 - components: - - type: Transform - pos: 62.5,7.5 - parent: 12 - uid: 26957 components: - type: Transform pos: 62.5,6.5 parent: 12 - - uid: 26958 - components: - - type: Transform - pos: 62.5,5.5 - parent: 12 - - uid: 26959 - components: - - type: Transform - pos: 62.5,9.5 - parent: 12 - - uid: 26960 - components: - - type: Transform - pos: 62.5,4.5 - parent: 12 - uid: 26961 components: - type: Transform @@ -41209,11 +41294,6 @@ entities: - type: Transform pos: -28.5,-15.5 parent: 12 - - uid: 28420 - components: - - type: Transform - pos: 11.5,22.5 - parent: 12 - uid: 28457 components: - type: Transform @@ -41459,16 +41539,6 @@ entities: - type: Transform pos: 46.5,8.5 parent: 12 - - uid: 28672 - components: - - type: Transform - pos: 59.5,7.5 - parent: 12 - - uid: 28678 - components: - - type: Transform - pos: 56.5,-3.5 - parent: 12 - uid: 28679 components: - type: Transform @@ -41479,11 +41549,6 @@ entities: - type: Transform pos: 59.5,6.5 parent: 12 - - uid: 28681 - components: - - type: Transform - pos: 59.5,-1.5 - parent: 12 - uid: 28742 components: - type: Transform @@ -41499,31 +41564,6 @@ entities: - type: Transform pos: 57.5,-5.5 parent: 12 - - uid: 28868 - components: - - type: Transform - pos: 57.5,-6.5 - parent: 12 - - uid: 28869 - components: - - type: Transform - pos: 56.5,-6.5 - parent: 12 - - uid: 28870 - components: - - type: Transform - pos: 55.5,-6.5 - parent: 12 - - uid: 28871 - components: - - type: Transform - pos: 54.5,-6.5 - parent: 12 - - uid: 28872 - components: - - type: Transform - pos: 53.5,-6.5 - parent: 12 - uid: 28873 components: - type: Transform @@ -41599,26 +41639,6 @@ entities: - type: Transform pos: 58.5,7.5 parent: 12 - - uid: 28903 - components: - - type: Transform - pos: 58.5,8.5 - parent: 12 - - uid: 28905 - components: - - type: Transform - pos: 58.5,10.5 - parent: 12 - - uid: 28906 - components: - - type: Transform - pos: 58.5,11.5 - parent: 12 - - uid: 28907 - components: - - type: Transform - pos: 58.5,12.5 - parent: 12 - uid: 28908 components: - type: Transform @@ -41934,26 +41954,6 @@ entities: - type: Transform pos: 42.5,-0.5 parent: 12 - - uid: 29313 - components: - - type: Transform - pos: 9.5,12.5 - parent: 12 - - uid: 29314 - components: - - type: Transform - pos: 10.5,12.5 - parent: 12 - - uid: 29315 - components: - - type: Transform - pos: 12.5,12.5 - parent: 12 - - uid: 29316 - components: - - type: Transform - pos: 11.5,12.5 - parent: 12 - uid: 29331 components: - type: Transform @@ -42509,21 +42509,6 @@ entities: - type: Transform pos: 49.5,-9.5 parent: 12 - - uid: 29995 - components: - - type: Transform - pos: 47.5,-6.5 - parent: 12 - - uid: 29996 - components: - - type: Transform - pos: 48.5,-6.5 - parent: 12 - - uid: 29997 - components: - - type: Transform - pos: 49.5,-6.5 - parent: 12 - uid: 30242 components: - type: Transform @@ -43584,16 +43569,6 @@ entities: - type: Transform pos: -7.5,-55.5 parent: 12 - - uid: 31893 - components: - - type: Transform - pos: 16.5,21.5 - parent: 12 - - uid: 31909 - components: - - type: Transform - pos: 58.5,9.5 - parent: 12 - uid: 32016 components: - type: Transform @@ -43744,8 +43719,8 @@ entities: - uid: 28714 components: - type: Transform - rot: -6.283185307179586 rad - pos: 54.502815,-6.30376 + rot: -37.69911184307754 rad + pos: 54.474026,-5.1717267 parent: 12 - proto: CableApcStack1 entities: @@ -43897,6 +43872,11 @@ entities: - type: Transform pos: 58.5,2.5 parent: 12 + - uid: 493 + components: + - type: Transform + pos: 8.5,28.5 + parent: 12 - uid: 681 components: - type: Transform @@ -43947,11 +43927,6 @@ entities: - type: Transform pos: -38.5,-29.5 parent: 12 - - uid: 887 - components: - - type: Transform - pos: 10.5,15.5 - parent: 12 - uid: 896 components: - type: Transform @@ -43962,6 +43937,11 @@ entities: - type: Transform pos: 39.5,3.5 parent: 12 + - uid: 904 + components: + - type: Transform + pos: 51.5,-5.5 + parent: 12 - uid: 938 components: - type: Transform @@ -43977,31 +43957,6 @@ entities: - type: Transform pos: -44.5,-14.5 parent: 12 - - uid: 1055 - components: - - type: Transform - pos: 6.5,12.5 - parent: 12 - - uid: 1056 - components: - - type: Transform - pos: 6.5,13.5 - parent: 12 - - uid: 1057 - components: - - type: Transform - pos: 8.5,11.5 - parent: 12 - - uid: 1068 - components: - - type: Transform - pos: 6.5,11.5 - parent: 12 - - uid: 1069 - components: - - type: Transform - pos: 7.5,11.5 - parent: 12 - uid: 1170 components: - type: Transform @@ -44147,6 +44102,11 @@ entities: - type: Transform pos: -24.5,-26.5 parent: 12 + - uid: 1344 + components: + - type: Transform + pos: 45.5,-5.5 + parent: 12 - uid: 1345 components: - type: Transform @@ -44157,6 +44117,11 @@ entities: - type: Transform pos: -15.5,-30.5 parent: 12 + - uid: 1349 + components: + - type: Transform + pos: 43.5,-3.5 + parent: 12 - uid: 1350 components: - type: Transform @@ -44207,11 +44172,26 @@ entities: - type: Transform pos: -43.5,-13.5 parent: 12 + - uid: 1835 + components: + - type: Transform + pos: 11.5,15.5 + parent: 12 + - uid: 1975 + components: + - type: Transform + pos: 43.5,-1.5 + parent: 12 - uid: 1997 components: - type: Transform pos: 24.5,5.5 parent: 12 + - uid: 2018 + components: + - type: Transform + pos: 30.5,-11.5 + parent: 12 - uid: 2053 components: - type: Transform @@ -44232,6 +44212,11 @@ entities: - type: Transform pos: 40.5,4.5 parent: 12 + - uid: 2119 + components: + - type: Transform + pos: 43.5,-2.5 + parent: 12 - uid: 2122 components: - type: Transform @@ -44297,10 +44282,20 @@ entities: - type: Transform pos: 15.5,10.5 parent: 12 - - uid: 2604 + - uid: 2310 components: - type: Transform - pos: 79.5,0.5 + pos: 30.5,-12.5 + parent: 12 + - uid: 2466 + components: + - type: Transform + pos: 9.5,-18.5 + parent: 12 + - uid: 2508 + components: + - type: Transform + pos: 14.5,-15.5 parent: 12 - uid: 2669 components: @@ -44337,11 +44332,6 @@ entities: - type: Transform pos: 19.5,5.5 parent: 12 - - uid: 2975 - components: - - type: Transform - pos: 1.5,20.5 - parent: 12 - uid: 2989 components: - type: Transform @@ -44352,6 +44342,11 @@ entities: - type: Transform pos: 37.5,3.5 parent: 12 + - uid: 3131 + components: + - type: Transform + pos: 8.5,-14.5 + parent: 12 - uid: 3147 components: - type: Transform @@ -44532,15 +44527,30 @@ entities: - type: Transform pos: -9.5,-28.5 parent: 12 + - uid: 3517 + components: + - type: Transform + pos: 9.5,-19.5 + parent: 12 - uid: 3632 components: - type: Transform pos: 16.5,5.5 parent: 12 - - uid: 3894 + - uid: 3945 + components: + - type: Transform + pos: 62.5,0.5 + parent: 12 + - uid: 3954 + components: + - type: Transform + pos: 9.5,-16.5 + parent: 12 + - uid: 3957 components: - type: Transform - pos: 54.5,-3.5 + pos: 4.5,23.5 parent: 12 - uid: 3985 components: @@ -44555,7 +44565,12 @@ entities: - uid: 4058 components: - type: Transform - pos: 15.5,11.5 + pos: 6.5,28.5 + parent: 12 + - uid: 4079 + components: + - type: Transform + pos: 15.5,28.5 parent: 12 - uid: 4180 components: @@ -44582,11 +44597,21 @@ entities: - type: Transform pos: -10.5,-27.5 parent: 12 + - uid: 4185 + components: + - type: Transform + pos: 1.5,17.5 + parent: 12 - uid: 4199 components: - type: Transform pos: 10.5,-47.5 parent: 12 + - uid: 4226 + components: + - type: Transform + pos: 2.5,20.5 + parent: 12 - uid: 4254 components: - type: Transform @@ -44595,7 +44620,22 @@ entities: - uid: 4305 components: - type: Transform - pos: 15.5,12.5 + pos: 13.5,28.5 + parent: 12 + - uid: 4323 + components: + - type: Transform + pos: 10.5,28.5 + parent: 12 + - uid: 4381 + components: + - type: Transform + pos: 9.5,28.5 + parent: 12 + - uid: 4387 + components: + - type: Transform + pos: 3.5,20.5 parent: 12 - uid: 4457 components: @@ -44827,15 +44867,15 @@ entities: - type: Transform pos: 12.5,-16.5 parent: 12 - - uid: 4565 + - uid: 4600 components: - type: Transform - pos: 53.5,-5.5 + pos: 4.5,21.5 parent: 12 - uid: 4605 components: - type: Transform - pos: 53.5,-6.5 + pos: 4.5,20.5 parent: 12 - uid: 4607 components: @@ -44872,10 +44912,10 @@ entities: - type: Transform pos: 8.5,-6.5 parent: 12 - - uid: 4646 + - uid: 4633 components: - type: Transform - pos: 71.5,9.5 + pos: 8.5,-13.5 parent: 12 - uid: 4657 components: @@ -44887,40 +44927,25 @@ entities: - type: Transform pos: 21.5,-16.5 parent: 12 - - uid: 4668 - components: - - type: Transform - pos: 74.5,11.5 - parent: 12 - uid: 4679 components: - type: Transform pos: 26.5,5.5 parent: 12 - - uid: 4680 - components: - - type: Transform - pos: 75.5,11.5 - parent: 12 - - uid: 4681 - components: - - type: Transform - pos: 77.5,11.5 - parent: 12 - uid: 4691 components: - type: Transform pos: -14.5,-23.5 parent: 12 - - uid: 4692 + - uid: 4713 components: - type: Transform - pos: 76.5,11.5 + pos: -10.5,-22.5 parent: 12 - - uid: 4713 + - uid: 4716 components: - type: Transform - pos: -10.5,-22.5 + pos: 18.5,24.5 parent: 12 - uid: 4745 components: @@ -44930,17 +44955,7 @@ entities: - uid: 4755 components: - type: Transform - pos: 79.5,7.5 - parent: 12 - - uid: 4756 - components: - - type: Transform - pos: 79.5,4.5 - parent: 12 - - uid: 4766 - components: - - type: Transform - pos: 79.5,1.5 + pos: 0.5,16.5 parent: 12 - uid: 4785 components: @@ -44990,48 +45005,23 @@ entities: - uid: 4917 components: - type: Transform - pos: 53.5,-3.5 + pos: 1.5,20.5 parent: 12 - uid: 4919 components: - type: Transform pos: 34.5,-1.5 parent: 12 - - uid: 4929 - components: - - type: Transform - pos: 75.5,-2.5 - parent: 12 - - uid: 4935 - components: - - type: Transform - pos: 77.5,-2.5 - parent: 12 - - uid: 4953 - components: - - type: Transform - pos: 73.5,-2.5 - parent: 12 - uid: 4957 components: - type: Transform pos: 35.5,-0.5 parent: 12 - - uid: 4958 - components: - - type: Transform - pos: 65.5,12.5 - parent: 12 - uid: 4970 components: - type: Transform pos: 42.5,-0.5 parent: 12 - - uid: 4974 - components: - - type: Transform - pos: 64.5,12.5 - parent: 12 - uid: 4976 components: - type: Transform @@ -45097,11 +45087,6 @@ entities: - type: Transform pos: -10.5,-30.5 parent: 12 - - uid: 5109 - components: - - type: Transform - pos: 63.5,12.5 - parent: 12 - uid: 5113 components: - type: Transform @@ -45202,16 +45187,6 @@ entities: - type: Transform pos: 30.5,-13.5 parent: 12 - - uid: 5207 - components: - - type: Transform - pos: 30.5,-12.5 - parent: 12 - - uid: 5208 - components: - - type: Transform - pos: 30.5,-11.5 - parent: 12 - uid: 5230 components: - type: Transform @@ -45227,6 +45202,11 @@ entities: - type: Transform pos: -0.5,-2.5 parent: 12 + - uid: 5270 + components: + - type: Transform + pos: 9.5,-17.5 + parent: 12 - uid: 5320 components: - type: Transform @@ -45237,11 +45217,6 @@ entities: - type: Transform pos: 29.5,4.5 parent: 12 - - uid: 5407 - components: - - type: Transform - pos: 62.5,12.5 - parent: 12 - uid: 5421 components: - type: Transform @@ -45292,6 +45267,11 @@ entities: - type: Transform pos: 17.5,5.5 parent: 12 + - uid: 6259 + components: + - type: Transform + pos: 9.5,-20.5 + parent: 12 - uid: 6414 components: - type: Transform @@ -45972,40 +45952,55 @@ entities: - type: Transform pos: -52.5,21.5 parent: 12 - - uid: 6735 + - uid: 6768 components: - type: Transform - pos: 1.5,18.5 + pos: -48.5,25.5 parent: 12 - - uid: 6741 + - uid: 7110 components: - type: Transform - pos: 37.5,0.5 + pos: 1.5,19.5 parent: 12 - - uid: 6768 + - uid: 7134 components: - type: Transform - pos: -48.5,25.5 + pos: 64.5,2.5 parent: 12 - - uid: 7187 + - uid: 7150 components: - type: Transform - pos: -0.5,-5.5 + pos: 62.5,2.5 parent: 12 - - uid: 7231 + - uid: 7151 components: - type: Transform - pos: 29.5,5.5 + pos: 63.5,2.5 parent: 12 - - uid: 7233 + - uid: 7160 components: - type: Transform - pos: 63.5,-3.5 + pos: 61.5,2.5 parent: 12 - - uid: 7278 + - uid: 7161 components: - type: Transform - pos: 65.5,-3.5 + pos: 4.5,28.5 + parent: 12 + - uid: 7171 + components: + - type: Transform + pos: 21.5,20.5 + parent: 12 + - uid: 7187 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 12 + - uid: 7231 + components: + - type: Transform + pos: 29.5,5.5 parent: 12 - uid: 7283 components: @@ -46027,51 +46022,81 @@ entities: - type: Transform pos: 1.5,14.5 parent: 12 - - uid: 7356 + - uid: 7360 components: - type: Transform - pos: 60.5,-3.5 + pos: 1.5,18.5 parent: 12 - - uid: 7366 + - uid: 7383 components: - type: Transform - pos: 62.5,10.5 + pos: 61.5,1.5 parent: 12 - - uid: 7546 + - uid: 7386 components: - type: Transform - pos: 62.5,8.5 + pos: 61.5,0.5 parent: 12 - uid: 7549 components: - type: Transform - pos: 62.5,9.5 + pos: 17.5,24.5 parent: 12 - - uid: 7556 + - uid: 7586 components: - type: Transform - pos: 62.5,-3.5 + pos: 60.5,-1.5 parent: 12 - - uid: 7557 + - uid: 7724 components: - type: Transform - pos: 61.5,-3.5 + pos: 46.5,-44.5 parent: 12 - - uid: 7724 + - uid: 7767 components: - type: Transform - pos: 46.5,-44.5 + pos: 59.5,6.5 + parent: 12 + - uid: 7782 + components: + - type: Transform + pos: 64.5,-2.5 + parent: 12 + - uid: 7786 + components: + - type: Transform + pos: 63.5,-2.5 parent: 12 - uid: 7790 components: - type: Transform pos: -38.5,-52.5 parent: 12 + - uid: 7811 + components: + - type: Transform + pos: 62.5,-2.5 + parent: 12 + - uid: 7828 + components: + - type: Transform + pos: 61.5,-2.5 + parent: 12 + - uid: 7834 + components: + - type: Transform + pos: 60.5,-2.5 + parent: 12 - uid: 7849 components: - type: Transform pos: 30.5,15.5 parent: 12 + - uid: 7889 + components: + - type: Transform + pos: 59.5,-2.5 + parent: 12 - uid: 7948 components: - type: Transform @@ -46342,21 +46367,11 @@ entities: - type: Transform pos: 30.5,16.5 parent: 12 - - uid: 8440 - components: - - type: Transform - pos: 73.5,9.5 - parent: 12 - uid: 8441 components: - type: Transform pos: 34.5,0.5 parent: 12 - - uid: 8443 - components: - - type: Transform - pos: 73.5,11.5 - parent: 12 - uid: 8494 components: - type: Transform @@ -46367,36 +46382,11 @@ entities: - type: Transform pos: 10.5,-45.5 parent: 12 - - uid: 8860 - components: - - type: Transform - pos: 10.5,16.5 - parent: 12 - - uid: 8910 - components: - - type: Transform - pos: 79.5,3.5 - parent: 12 - - uid: 8937 - components: - - type: Transform - pos: 78.5,-2.5 - parent: 12 - uid: 8957 components: - type: Transform pos: 10.5,-46.5 parent: 12 - - uid: 9000 - components: - - type: Transform - pos: 77.5,3.5 - parent: 12 - - uid: 9003 - components: - - type: Transform - pos: 76.5,-2.5 - parent: 12 - uid: 9018 components: - type: Transform @@ -46497,6 +46487,11 @@ entities: - type: Transform pos: 51.5,-44.5 parent: 12 + - uid: 9055 + components: + - type: Transform + pos: 12.5,12.5 + parent: 12 - uid: 9082 components: - type: Transform @@ -46507,40 +46502,15 @@ entities: - type: Transform pos: 30.5,12.5 parent: 12 - - uid: 9142 - components: - - type: Transform - pos: 71.5,11.5 - parent: 12 - uid: 9328 components: - type: Transform pos: -0.5,-6.5 parent: 12 - - uid: 9407 - components: - - type: Transform - pos: 79.5,5.5 - parent: 12 - - uid: 9408 - components: - - type: Transform - pos: 77.5,5.5 - parent: 12 - uid: 9410 components: - type: Transform - pos: 79.5,-0.5 - parent: 12 - - uid: 9411 - components: - - type: Transform - pos: 79.5,-1.5 - parent: 12 - - uid: 9412 - components: - - type: Transform - pos: 79.5,2.5 + pos: 5.5,28.5 parent: 12 - uid: 9422 components: @@ -46557,50 +46527,35 @@ entities: - type: Transform pos: 15.5,9.5 parent: 12 - - uid: 9434 - components: - - type: Transform - pos: 79.5,11.5 - parent: 12 - - uid: 9437 - components: - - type: Transform - pos: 78.5,11.5 - parent: 12 - - uid: 9449 - components: - - type: Transform - pos: 79.5,6.5 - parent: 12 - - uid: 9450 + - uid: 9458 components: - type: Transform - pos: 79.5,9.5 + pos: 11.5,28.5 parent: 12 - - uid: 9453 + - uid: 9459 components: - type: Transform - pos: 79.5,10.5 + pos: 12.5,28.5 parent: 12 - - uid: 9457 + - uid: 9460 components: - type: Transform - pos: 79.5,-2.5 + pos: 14.5,28.5 parent: 12 - - uid: 9458 + - uid: 9483 components: - type: Transform - pos: 73.5,-0.5 + pos: 16.5,25.5 parent: 12 - - uid: 9460 + - uid: 9515 components: - type: Transform - pos: 79.5,8.5 + pos: 49.5,-5.5 parent: 12 - - uid: 9468 + - uid: 9518 components: - type: Transform - pos: 71.5,-0.5 + pos: 16.5,24.5 parent: 12 - uid: 9519 components: @@ -46610,7 +46565,12 @@ entities: - uid: 9521 components: - type: Transform - pos: 1.5,17.5 + pos: 16.5,26.5 + parent: 12 + - uid: 9542 + components: + - type: Transform + pos: 64.5,6.5 parent: 12 - uid: 9543 components: @@ -46622,65 +46582,70 @@ entities: - type: Transform pos: 1.5,12.5 parent: 12 - - uid: 9551 + - uid: 9558 components: - type: Transform - pos: 15.5,14.5 + pos: 1.5,13.5 parent: 12 - - uid: 9558 + - uid: 9578 components: - type: Transform - pos: 1.5,13.5 + pos: 7.5,28.5 parent: 12 - - uid: 9559 + - uid: 9588 components: - type: Transform - pos: 15.5,13.5 + pos: 57.5,-0.5 parent: 12 - - uid: 9597 + - uid: 9614 components: - type: Transform - pos: 1.5,19.5 + pos: 51.5,-6.5 + parent: 12 + - uid: 9636 + components: + - type: Transform + pos: -2.5,22.5 parent: 12 - uid: 9649 components: - type: Transform pos: 9.5,-37.5 parent: 12 - - uid: 9657 + - uid: 9650 components: - type: Transform - pos: 10.5,-38.5 + pos: 4.5,27.5 parent: 12 - - uid: 9658 + - uid: 9657 components: - type: Transform - pos: 80.5,2.5 + pos: 10.5,-38.5 parent: 12 - - uid: 9663 + - uid: 9724 components: - type: Transform - pos: 72.5,-3.5 + pos: 16.5,28.5 parent: 12 - - uid: 9664 + - uid: 9732 components: - type: Transform - pos: 74.5,-3.5 + pos: -4.5,20.5 parent: 12 - - uid: 9666 + - uid: 9741 components: - type: Transform - pos: 70.5,-3.5 + pos: 4.5,25.5 parent: 12 - - uid: 9670 + - uid: 9742 components: - type: Transform - pos: 72.5,-2.5 + pos: -3.5,20.5 parent: 12 - - uid: 9676 + - uid: 9751 components: - type: Transform - pos: 71.5,-2.5 + pos: 44.5,-5.5 parent: 12 - uid: 9785 components: @@ -46707,6 +46672,16 @@ entities: - type: Transform pos: 10.5,-43.5 parent: 12 + - uid: 9835 + components: + - type: Transform + pos: -1.5,22.5 + parent: 12 + - uid: 9847 + components: + - type: Transform + pos: -5.5,20.5 + parent: 12 - uid: 9859 components: - type: Transform @@ -46717,11 +46692,46 @@ entities: - type: Transform pos: 10.5,-41.5 parent: 12 + - uid: 9864 + components: + - type: Transform + pos: -2.5,21.5 + parent: 12 + - uid: 9865 + components: + - type: Transform + pos: -2.5,20.5 + parent: 12 + - uid: 9994 + components: + - type: Transform + pos: 16.5,27.5 + parent: 12 + - uid: 10027 + components: + - type: Transform + pos: 4.5,26.5 + parent: 12 + - uid: 10165 + components: + - type: Transform + pos: -0.5,16.5 + parent: 12 + - uid: 10284 + components: + - type: Transform + pos: -1.5,16.5 + parent: 12 - uid: 10319 components: - type: Transform pos: -41.5,-29.5 parent: 12 + - uid: 10323 + components: + - type: Transform + pos: 62.5,-0.5 + parent: 12 - uid: 10343 components: - type: Transform @@ -46827,6 +46837,11 @@ entities: - type: Transform pos: -15.5,-4.5 parent: 12 + - uid: 10656 + components: + - type: Transform + pos: 53.5,-2.5 + parent: 12 - uid: 10743 components: - type: Transform @@ -47017,6 +47032,11 @@ entities: - type: Transform pos: -3.5,13.5 parent: 12 + - uid: 10790 + components: + - type: Transform + pos: -0.5,22.5 + parent: 12 - uid: 10802 components: - type: Transform @@ -47252,6 +47272,11 @@ entities: - type: Transform pos: 21.5,12.5 parent: 12 + - uid: 10938 + components: + - type: Transform + pos: 11.5,12.5 + parent: 12 - uid: 10944 components: - type: Transform @@ -47277,70 +47302,75 @@ entities: - type: Transform pos: 22.5,17.5 parent: 12 + - uid: 10985 + components: + - type: Transform + pos: 11.5,14.5 + parent: 12 - uid: 11020 components: - type: Transform pos: 52.5,8.5 parent: 12 - - uid: 11055 + - uid: 11045 components: - type: Transform - pos: 23.5,10.5 + pos: 8.5,-16.5 parent: 12 - - uid: 11230 + - uid: 11050 components: - type: Transform - pos: 1.5,21.5 + pos: 12.5,11.5 parent: 12 - - uid: 11231 + - uid: 11055 components: - type: Transform - pos: 1.5,22.5 + pos: 23.5,10.5 parent: 12 - - uid: 11274 + - uid: 11226 components: - type: Transform - pos: 10.5,17.5 + pos: 58.5,-2.5 parent: 12 - - uid: 11292 + - uid: 11232 components: - type: Transform - pos: 40.5,11.5 + pos: 48.5,-5.5 parent: 12 - - uid: 11313 + - uid: 11268 components: - type: Transform - pos: 22.5,19.5 + pos: 50.5,-5.5 parent: 12 - - uid: 11314 + - uid: 11286 components: - type: Transform - pos: 22.5,20.5 + pos: 60.5,0.5 parent: 12 - - uid: 11315 + - uid: 11287 components: - type: Transform - pos: 22.5,21.5 + pos: 58.5,-1.5 parent: 12 - - uid: 11316 + - uid: 11288 components: - type: Transform - pos: 21.5,21.5 + pos: 10.5,12.5 parent: 12 - - uid: 11317 + - uid: 11292 components: - type: Transform - pos: 20.5,21.5 + pos: 40.5,11.5 parent: 12 - - uid: 11318 + - uid: 11316 components: - type: Transform - pos: 20.5,20.5 + pos: 21.5,21.5 parent: 12 - - uid: 11319 + - uid: 11318 components: - type: Transform - pos: 20.5,19.5 + pos: 20.5,20.5 parent: 12 - uid: 11320 components: @@ -47352,31 +47382,21 @@ entities: - type: Transform pos: 18.5,20.5 parent: 12 - - uid: 11340 + - uid: 11330 components: - type: Transform - pos: 4.5,22.5 + pos: 11.5,13.5 parent: 12 - - uid: 11341 + - uid: 11340 components: - type: Transform - pos: 4.5,23.5 + pos: 4.5,22.5 parent: 12 - uid: 11342 components: - type: Transform pos: 4.5,24.5 parent: 12 - - uid: 11343 - components: - - type: Transform - pos: 4.5,25.5 - parent: 12 - - uid: 11344 - components: - - type: Transform - pos: 4.5,26.5 - parent: 12 - uid: 11350 components: - type: Transform @@ -47397,11 +47417,6 @@ entities: - type: Transform pos: 21.5,24.5 parent: 12 - - uid: 11376 - components: - - type: Transform - pos: 56.5,-3.5 - parent: 12 - uid: 11377 components: - type: Transform @@ -47452,6 +47467,26 @@ entities: - type: Transform pos: 32.5,17.5 parent: 12 + - uid: 11452 + components: + - type: Transform + pos: 60.5,-0.5 + parent: 12 + - uid: 11456 + components: + - type: Transform + pos: 10.5,11.5 + parent: 12 + - uid: 11481 + components: + - type: Transform + pos: 1.5,22.5 + parent: 12 + - uid: 11553 + components: + - type: Transform + pos: 62.5,6.5 + parent: 12 - uid: 11591 components: - type: Transform @@ -47462,15 +47497,10 @@ entities: - type: Transform pos: 38.5,3.5 parent: 12 - - uid: 11866 - components: - - type: Transform - pos: 4.5,27.5 - parent: 12 - uid: 11867 components: - type: Transform - pos: 4.5,28.5 + pos: 63.5,6.5 parent: 12 - uid: 11868 components: @@ -47537,6 +47567,11 @@ entities: - type: Transform pos: -1.5,35.5 parent: 12 + - uid: 11936 + components: + - type: Transform + pos: 45.5,4.5 + parent: 12 - uid: 11938 components: - type: Transform @@ -47622,11 +47657,31 @@ entities: - type: Transform pos: 36.5,11.5 parent: 12 + - uid: 12684 + components: + - type: Transform + pos: 8.5,-15.5 + parent: 12 + - uid: 12693 + components: + - type: Transform + pos: 3.5,22.5 + parent: 12 - uid: 12894 components: - type: Transform pos: 41.5,-11.5 parent: 12 + - uid: 12917 + components: + - type: Transform + pos: 2.5,22.5 + parent: 12 + - uid: 12929 + components: + - type: Transform + pos: 0.5,22.5 + parent: 12 - uid: 13080 components: - type: Transform @@ -47772,6 +47827,11 @@ entities: - type: Transform pos: 51.5,27.5 parent: 12 + - uid: 13977 + components: + - type: Transform + pos: 61.5,6.5 + parent: 12 - uid: 14252 components: - type: Transform @@ -48337,6 +48397,11 @@ entities: - type: Transform pos: -6.5,17.5 parent: 12 + - uid: 15670 + components: + - type: Transform + pos: 60.5,6.5 + parent: 12 - uid: 15735 components: - type: Transform @@ -48582,36 +48647,6 @@ entities: - type: Transform pos: 65.5,6.5 parent: 12 - - uid: 16449 - components: - - type: Transform - pos: 66.5,11.5 - parent: 12 - - uid: 16450 - components: - - type: Transform - pos: 67.5,11.5 - parent: 12 - - uid: 16493 - components: - - type: Transform - pos: 68.5,11.5 - parent: 12 - - uid: 16520 - components: - - type: Transform - pos: 69.5,11.5 - parent: 12 - - uid: 16521 - components: - - type: Transform - pos: 70.5,11.5 - parent: 12 - - uid: 16533 - components: - - type: Transform - pos: 72.5,11.5 - parent: 12 - uid: 16640 components: - type: Transform @@ -49412,11 +49447,6 @@ entities: - type: Transform pos: -9.5,-10.5 parent: 12 - - uid: 18307 - components: - - type: Transform - pos: 53.5,-4.5 - parent: 12 - uid: 18383 components: - type: Transform @@ -50567,25 +50597,50 @@ entities: - type: Transform pos: -38.5,59.5 parent: 12 + - uid: 19542 + components: + - type: Transform + pos: 53.5,-4.5 + parent: 12 + - uid: 19546 + components: + - type: Transform + pos: 53.5,-6.5 + parent: 12 - uid: 19548 components: - type: Transform pos: 25.5,10.5 parent: 12 + - uid: 19549 + components: + - type: Transform + pos: 53.5,-8.5 + parent: 12 + - uid: 19563 + components: + - type: Transform + pos: 30.5,-10.5 + parent: 12 + - uid: 19612 + components: + - type: Transform + pos: 53.5,-1.5 + parent: 12 - uid: 19617 components: - type: Transform pos: -22.5,57.5 parent: 12 - - uid: 19819 + - uid: 19824 components: - type: Transform - pos: 3.5,22.5 + pos: 46.5,-5.5 parent: 12 - - uid: 19820 + - uid: 19825 components: - type: Transform - pos: 2.5,22.5 + pos: 31.5,-14.5 parent: 12 - uid: 19836 components: @@ -50677,11 +50732,6 @@ entities: - type: Transform pos: 54.5,1.5 parent: 12 - - uid: 21601 - components: - - type: Transform - pos: 62.5,11.5 - parent: 12 - uid: 21648 components: - type: Transform @@ -50807,56 +50857,46 @@ entities: - type: Transform pos: 31.5,-7.5 parent: 12 - - uid: 22094 - components: - - type: Transform - pos: 57.5,11.5 - parent: 12 - - uid: 22095 - components: - - type: Transform - pos: 54.5,10.5 - parent: 12 - uid: 22109 components: - type: Transform pos: 26.5,-16.5 parent: 12 - - uid: 22126 - components: - - type: Transform - pos: 55.5,11.5 - parent: 12 - uid: 22136 components: - type: Transform pos: 54.5,5.5 parent: 12 - - uid: 22140 + - uid: 22148 components: - type: Transform - pos: 58.5,10.5 + pos: 17.5,10.5 parent: 12 - - uid: 22141 + - uid: 22289 components: - type: Transform - pos: 56.5,11.5 + pos: 43.5,-5.5 parent: 12 - - uid: 22148 + - uid: 22522 components: - type: Transform - pos: 17.5,10.5 + pos: 53.5,-7.5 parent: 12 - - uid: 22160 + - uid: 22527 components: - type: Transform - pos: 58.5,11.5 + pos: 53.5,-5.5 parent: 12 - uid: 22528 components: - type: Transform pos: 17.5,8.5 parent: 12 + - uid: 22531 + components: + - type: Transform + pos: 53.5,-3.5 + parent: 12 - uid: 22712 components: - type: Transform @@ -50872,11 +50912,36 @@ entities: - type: Transform pos: 41.5,-0.5 parent: 12 + - uid: 23116 + components: + - type: Transform + pos: 47.5,-5.5 + parent: 12 - uid: 23127 components: - type: Transform pos: 56.5,-0.5 parent: 12 + - uid: 23148 + components: + - type: Transform + pos: 51.5,-7.5 + parent: 12 + - uid: 23152 + components: + - type: Transform + pos: 52.5,-8.5 + parent: 12 + - uid: 23157 + components: + - type: Transform + pos: 51.5,-8.5 + parent: 12 + - uid: 23159 + components: + - type: Transform + pos: 43.5,-4.5 + parent: 12 - uid: 23163 components: - type: Transform @@ -51367,11 +51432,6 @@ entities: - type: Transform pos: -37.5,-51.5 parent: 12 - - uid: 23984 - components: - - type: Transform - pos: 54.5,9.5 - parent: 12 - uid: 24478 components: - type: Transform @@ -51422,21 +51482,6 @@ entities: - type: Transform pos: 9.5,65.5 parent: 12 - - uid: 25199 - components: - - type: Transform - pos: 58.5,9.5 - parent: 12 - - uid: 25200 - components: - - type: Transform - pos: 58.5,8.5 - parent: 12 - - uid: 25201 - components: - - type: Transform - pos: 58.5,7.5 - parent: 12 - uid: 25305 components: - type: Transform @@ -51772,21 +51817,6 @@ entities: - type: Transform pos: -56.5,21.5 parent: 12 - - uid: 26101 - components: - - type: Transform - pos: 58.5,-2.5 - parent: 12 - - uid: 26102 - components: - - type: Transform - pos: 59.5,-3.5 - parent: 12 - - uid: 26156 - components: - - type: Transform - pos: 74.5,12.5 - parent: 12 - uid: 26417 components: - type: Transform @@ -51797,11 +51827,6 @@ entities: - type: Transform pos: 54.5,0.5 parent: 12 - - uid: 26452 - components: - - type: Transform - pos: 57.5,-3.5 - parent: 12 - uid: 26464 components: - type: Transform @@ -51842,56 +51867,16 @@ entities: - type: Transform pos: 43.5,5.5 parent: 12 - - uid: 26520 - components: - - type: Transform - pos: 58.5,-3.5 - parent: 12 - uid: 26521 components: - type: Transform pos: 58.5,1.5 parent: 12 - - uid: 26523 - components: - - type: Transform - pos: 80.5,6.5 - parent: 12 - - uid: 26524 - components: - - type: Transform - pos: 70.5,12.5 - parent: 12 - - uid: 26525 - components: - - type: Transform - pos: 72.5,12.5 - parent: 12 - uid: 26543 components: - type: Transform pos: -9.5,-19.5 parent: 12 - - uid: 26551 - components: - - type: Transform - pos: 64.5,-3.5 - parent: 12 - - uid: 26561 - components: - - type: Transform - pos: 47.5,3.5 - parent: 12 - - uid: 26562 - components: - - type: Transform - pos: 80.5,4.5 - parent: 12 - - uid: 26576 - components: - - type: Transform - pos: 54.5,11.5 - parent: 12 - uid: 26583 components: - type: Transform @@ -51902,11 +51887,6 @@ entities: - type: Transform pos: 51.5,8.5 parent: 12 - - uid: 26622 - components: - - type: Transform - pos: 74.5,-2.5 - parent: 12 - uid: 26636 components: - type: Transform @@ -51917,11 +51897,6 @@ entities: - type: Transform pos: 20.5,9.5 parent: 12 - - uid: 26646 - components: - - type: Transform - pos: 56.5,-1.5 - parent: 12 - uid: 26657 components: - type: Transform @@ -51982,31 +51957,11 @@ entities: - type: Transform pos: 44.5,-0.5 parent: 12 - - uid: 26671 - components: - - type: Transform - pos: 70.5,-2.5 - parent: 12 - - uid: 26683 - components: - - type: Transform - pos: 67.5,-2.5 - parent: 12 - - uid: 26684 - components: - - type: Transform - pos: 58.5,-1.5 - parent: 12 - uid: 26690 components: - type: Transform pos: 36.5,3.5 parent: 12 - - uid: 26700 - components: - - type: Transform - pos: 69.5,-2.5 - parent: 12 - uid: 26701 components: - type: Transform @@ -52022,11 +51977,6 @@ entities: - type: Transform pos: 65.5,0.5 parent: 12 - - uid: 26717 - components: - - type: Transform - pos: 68.5,-2.5 - parent: 12 - uid: 26719 components: - type: Transform @@ -52037,21 +51987,11 @@ entities: - type: Transform pos: 65.5,-2.5 parent: 12 - - uid: 26728 - components: - - type: Transform - pos: 66.5,-2.5 - parent: 12 - uid: 26731 components: - type: Transform pos: 58.5,0.5 parent: 12 - - uid: 26732 - components: - - type: Transform - pos: 62.5,4.5 - parent: 12 - uid: 26735 components: - type: Transform @@ -52087,21 +52027,6 @@ entities: - type: Transform pos: 45.5,8.5 parent: 12 - - uid: 26756 - components: - - type: Transform - pos: 62.5,7.5 - parent: 12 - - uid: 26757 - components: - - type: Transform - pos: 62.5,5.5 - parent: 12 - - uid: 26803 - components: - - type: Transform - pos: 62.5,6.5 - parent: 12 - uid: 26805 components: - type: Transform @@ -52477,11 +52402,6 @@ entities: - type: Transform pos: 49.5,-13.5 parent: 12 - - uid: 27210 - components: - - type: Transform - pos: 10.5,18.5 - parent: 12 - uid: 27211 components: - type: Transform @@ -52507,11 +52427,6 @@ entities: - type: Transform pos: 44.5,-13.5 parent: 12 - - uid: 27235 - components: - - type: Transform - pos: 56.5,-2.5 - parent: 12 - uid: 27339 components: - type: Transform @@ -53347,56 +53262,6 @@ entities: - type: Transform pos: -33.5,59.5 parent: 12 - - uid: 28241 - components: - - type: Transform - pos: 11.5,15.5 - parent: 12 - - uid: 28242 - components: - - type: Transform - pos: 12.5,15.5 - parent: 12 - - uid: 28243 - components: - - type: Transform - pos: 13.5,15.5 - parent: 12 - - uid: 28244 - components: - - type: Transform - pos: 14.5,15.5 - parent: 12 - - uid: 28245 - components: - - type: Transform - pos: 15.5,15.5 - parent: 12 - - uid: 28246 - components: - - type: Transform - pos: 6.5,14.5 - parent: 12 - - uid: 28247 - components: - - type: Transform - pos: 6.5,15.5 - parent: 12 - - uid: 28248 - components: - - type: Transform - pos: 7.5,15.5 - parent: 12 - - uid: 28249 - components: - - type: Transform - pos: 9.5,15.5 - parent: 12 - - uid: 28250 - components: - - type: Transform - pos: 8.5,15.5 - parent: 12 - uid: 28430 components: - type: Transform @@ -53677,11 +53542,6 @@ entities: - type: Transform pos: 5.5,-23.5 parent: 12 - - uid: 28677 - components: - - type: Transform - pos: 55.5,-3.5 - parent: 12 - uid: 28723 components: - type: Transform @@ -53782,11 +53642,6 @@ entities: - type: Transform pos: 30.5,-0.5 parent: 12 - - uid: 28897 - components: - - type: Transform - pos: 30.5,-10.5 - parent: 12 - uid: 28898 components: - type: Transform @@ -53817,71 +53672,6 @@ entities: - type: Transform pos: 36.5,2.5 parent: 12 - - uid: 29034 - components: - - type: Transform - pos: 5.5,23.5 - parent: 12 - - uid: 29035 - components: - - type: Transform - pos: 6.5,23.5 - parent: 12 - - uid: 29036 - components: - - type: Transform - pos: 7.5,23.5 - parent: 12 - - uid: 29037 - components: - - type: Transform - pos: 8.5,23.5 - parent: 12 - - uid: 29038 - components: - - type: Transform - pos: 9.5,23.5 - parent: 12 - - uid: 29039 - components: - - type: Transform - pos: 10.5,23.5 - parent: 12 - - uid: 29040 - components: - - type: Transform - pos: 11.5,23.5 - parent: 12 - - uid: 29041 - components: - - type: Transform - pos: 12.5,23.5 - parent: 12 - - uid: 29042 - components: - - type: Transform - pos: 13.5,23.5 - parent: 12 - - uid: 29043 - components: - - type: Transform - pos: 14.5,23.5 - parent: 12 - - uid: 29044 - components: - - type: Transform - pos: 15.5,23.5 - parent: 12 - - uid: 29045 - components: - - type: Transform - pos: 16.5,23.5 - parent: 12 - - uid: 29046 - components: - - type: Transform - pos: 17.5,23.5 - parent: 12 - uid: 29047 components: - type: Transform @@ -53922,21 +53712,6 @@ entities: - type: Transform pos: 45.5,3.5 parent: 12 - - uid: 29186 - components: - - type: Transform - pos: 46.5,3.5 - parent: 12 - - uid: 29187 - components: - - type: Transform - pos: 46.5,4.5 - parent: 12 - - uid: 29190 - components: - - type: Transform - pos: 46.5,5.5 - parent: 12 - uid: 29307 components: - type: Transform @@ -54257,21 +54032,6 @@ entities: - type: Transform pos: -18.5,69.5 parent: 12 - - uid: 29986 - components: - - type: Transform - pos: 47.5,2.5 - parent: 12 - - uid: 29987 - components: - - type: Transform - pos: 48.5,2.5 - parent: 12 - - uid: 29988 - components: - - type: Transform - pos: 49.5,2.5 - parent: 12 - uid: 30022 components: - type: Transform @@ -55177,51 +54937,6 @@ entities: - type: Transform pos: -49.5,27.5 parent: 12 - - uid: 31880 - components: - - type: Transform - pos: 72.5,9.5 - parent: 12 - - uid: 31881 - components: - - type: Transform - pos: 72.5,10.5 - parent: 12 - - uid: 31883 - components: - - type: Transform - pos: 77.5,4.5 - parent: 12 - - uid: 31884 - components: - - type: Transform - pos: 78.5,4.5 - parent: 12 - - uid: 31885 - components: - - type: Transform - pos: 72.5,-1.5 - parent: 12 - - uid: 31886 - components: - - type: Transform - pos: 72.5,-0.5 - parent: 12 - - uid: 31898 - components: - - type: Transform - pos: 60.5,12.5 - parent: 12 - - uid: 31899 - components: - - type: Transform - pos: 59.5,11.5 - parent: 12 - - uid: 31900 - components: - - type: Transform - pos: 59.5,12.5 - parent: 12 - uid: 32051 components: - type: Transform @@ -55252,11 +54967,6 @@ entities: - type: Transform pos: 32.5,-14.5 parent: 12 - - uid: 32057 - components: - - type: Transform - pos: 31.5,-14.5 - parent: 12 - uid: 32062 components: - type: Transform @@ -55372,31 +55082,16 @@ entities: - uid: 28713 components: - type: Transform - rot: -6.283185307179586 rad - pos: 54.496643,-6.643266 + rot: -37.69911184307754 rad + pos: 54.49033,-5.6204934 parent: 12 - proto: CableMV entities: - - uid: 22 - components: - - type: Transform - pos: 62.5,9.5 - parent: 12 - uid: 87 components: - type: Transform pos: 0.5,2.5 parent: 12 - - uid: 206 - components: - - type: Transform - pos: 79.5,14.5 - parent: 12 - - uid: 227 - components: - - type: Transform - pos: 80.5,14.5 - parent: 12 - uid: 278 components: - type: Transform @@ -55447,11 +55142,6 @@ entities: - type: Transform pos: 38.5,60.5 parent: 12 - - uid: 366 - components: - - type: Transform - pos: 66.5,11.5 - parent: 12 - uid: 367 components: - type: Transform @@ -55467,11 +55157,6 @@ entities: - type: Transform pos: 45.5,56.5 parent: 12 - - uid: 465 - components: - - type: Transform - pos: -21.5,-30.5 - parent: 12 - uid: 507 components: - type: Transform @@ -55522,11 +55207,6 @@ entities: - type: Transform pos: 56.5,4.5 parent: 12 - - uid: 904 - components: - - type: Transform - pos: -53.5,43.5 - parent: 12 - uid: 955 components: - type: Transform @@ -55552,11 +55232,6 @@ entities: - type: Transform pos: 50.5,63.5 parent: 12 - - uid: 1059 - components: - - type: Transform - pos: -52.5,43.5 - parent: 12 - uid: 1070 components: - type: Transform @@ -55567,21 +55242,6 @@ entities: - type: Transform pos: 62.5,4.5 parent: 12 - - uid: 1344 - components: - - type: Transform - pos: 64.5,4.5 - parent: 12 - - uid: 1349 - components: - - type: Transform - pos: 57.5,-8.5 - parent: 12 - - uid: 1437 - components: - - type: Transform - pos: -55.5,43.5 - parent: 12 - uid: 1455 components: - type: Transform @@ -55797,11 +55457,6 @@ entities: - type: Transform pos: -40.5,-22.5 parent: 12 - - uid: 1500 - components: - - type: Transform - pos: -54.5,43.5 - parent: 12 - uid: 1503 components: - type: Transform @@ -56032,26 +55687,11 @@ entities: - type: Transform pos: -27.5,-17.5 parent: 12 - - uid: 1975 - components: - - type: Transform - pos: -52.5,40.5 - parent: 12 - - uid: 2018 - components: - - type: Transform - pos: -53.5,40.5 - parent: 12 - uid: 2039 components: - type: Transform pos: 62.5,6.5 parent: 12 - - uid: 2052 - components: - - type: Transform - pos: 62.5,7.5 - parent: 12 - uid: 2105 components: - type: Transform @@ -56067,16 +55707,6 @@ entities: - type: Transform pos: -2.5,-1.5 parent: 12 - - uid: 2119 - components: - - type: Transform - pos: -52.5,42.5 - parent: 12 - - uid: 2120 - components: - - type: Transform - pos: -52.5,41.5 - parent: 12 - uid: 2125 components: - type: Transform @@ -56197,11 +55827,6 @@ entities: - type: Transform pos: 1.5,-5.5 parent: 12 - - uid: 2246 - components: - - type: Transform - pos: 67.5,-2.5 - parent: 12 - uid: 2249 components: - type: Transform @@ -56212,11 +55837,6 @@ entities: - type: Transform pos: 56.5,6.5 parent: 12 - - uid: 2259 - components: - - type: Transform - pos: 72.5,14.5 - parent: 12 - uid: 2263 components: - type: Transform @@ -56227,11 +55847,6 @@ entities: - type: Transform pos: 46.5,56.5 parent: 12 - - uid: 2287 - components: - - type: Transform - pos: 82.5,5.5 - parent: 12 - uid: 2360 components: - type: Transform @@ -56252,11 +55867,6 @@ entities: - type: Transform pos: 45.5,-20.5 parent: 12 - - uid: 2574 - components: - - type: Transform - pos: 80.5,8.5 - parent: 12 - uid: 2581 components: - type: Transform @@ -56287,26 +55897,16 @@ entities: - type: Transform pos: 49.5,56.5 parent: 12 - - uid: 2676 + - uid: 2736 components: - type: Transform - pos: 80.5,9.5 + pos: -56.5,41.5 parent: 12 - uid: 2740 components: - type: Transform pos: -0.5,-35.5 parent: 12 - - uid: 2767 - components: - - type: Transform - pos: -54.5,40.5 - parent: 12 - - uid: 2775 - components: - - type: Transform - pos: -55.5,40.5 - parent: 12 - uid: 2789 components: - type: Transform @@ -56332,10 +55932,10 @@ entities: - type: Transform pos: -57.5,36.5 parent: 12 - - uid: 2859 + - uid: 2844 components: - type: Transform - pos: 60.5,12.5 + pos: -56.5,42.5 parent: 12 - uid: 2860 components: @@ -56352,20 +55952,15 @@ entities: - type: Transform pos: -57.5,39.5 parent: 12 - - uid: 2869 - components: - - type: Transform - pos: 80.5,-0.5 - parent: 12 - uid: 2882 components: - type: Transform pos: 0.5,-40.5 parent: 12 - - uid: 2929 + - uid: 2944 components: - type: Transform - pos: 80.5,0.5 + pos: 59.5,-3.5 parent: 12 - uid: 2946 components: @@ -56382,11 +55977,6 @@ entities: - type: Transform pos: -24.5,-28.5 parent: 12 - - uid: 3018 - components: - - type: Transform - pos: -18.5,-28.5 - parent: 12 - uid: 3035 components: - type: Transform @@ -56407,11 +55997,6 @@ entities: - type: Transform pos: 0.5,-37.5 parent: 12 - - uid: 3131 - components: - - type: Transform - pos: -18.5,-30.5 - parent: 12 - uid: 3160 components: - type: Transform @@ -56597,26 +56182,6 @@ entities: - type: Transform pos: -16.5,-42.5 parent: 12 - - uid: 3237 - components: - - type: Transform - pos: -17.5,-30.5 - parent: 12 - - uid: 3238 - components: - - type: Transform - pos: -16.5,-30.5 - parent: 12 - - uid: 3239 - components: - - type: Transform - pos: -15.5,-30.5 - parent: 12 - - uid: 3240 - components: - - type: Transform - pos: -18.5,-29.5 - parent: 12 - uid: 3242 components: - type: Transform @@ -56767,11 +56332,6 @@ entities: - type: Transform pos: -21.5,-48.5 parent: 12 - - uid: 3375 - components: - - type: Transform - pos: -18.5,-27.5 - parent: 12 - uid: 3470 components: - type: Transform @@ -56782,21 +56342,11 @@ entities: - type: Transform pos: 10.5,-45.5 parent: 12 - - uid: 3486 - components: - - type: Transform - pos: -23.5,-30.5 - parent: 12 - uid: 3510 components: - type: Transform pos: -23.5,-2.5 parent: 12 - - uid: 3517 - components: - - type: Transform - pos: -24.5,-30.5 - parent: 12 - uid: 3591 components: - type: Transform @@ -56812,11 +56362,6 @@ entities: - type: Transform pos: 15.5,7.5 parent: 12 - - uid: 3719 - components: - - type: Transform - pos: -22.5,-30.5 - parent: 12 - uid: 3916 components: - type: Transform @@ -56827,21 +56372,11 @@ entities: - type: Transform pos: -1.5,-1.5 parent: 12 - - uid: 4185 - components: - - type: Transform - pos: 57.5,-3.5 - parent: 12 - uid: 4258 components: - type: Transform pos: 60.5,-24.5 parent: 12 - - uid: 4323 - components: - - type: Transform - pos: 73.5,14.5 - parent: 12 - uid: 4371 components: - type: Transform @@ -56882,31 +56417,6 @@ entities: - type: Transform pos: -15.5,-24.5 parent: 12 - - uid: 4381 - components: - - type: Transform - pos: -15.5,-25.5 - parent: 12 - - uid: 4382 - components: - - type: Transform - pos: -15.5,-26.5 - parent: 12 - - uid: 4383 - components: - - type: Transform - pos: -15.5,-27.5 - parent: 12 - - uid: 4384 - components: - - type: Transform - pos: -15.5,-28.5 - parent: 12 - - uid: 4385 - components: - - type: Transform - pos: -15.5,-29.5 - parent: 12 - uid: 4404 components: - type: Transform @@ -56932,31 +56442,11 @@ entities: - type: Transform pos: 57.5,49.5 parent: 12 - - uid: 4629 - components: - - type: Transform - pos: 59.5,-1.5 - parent: 12 - uid: 4632 components: - type: Transform pos: 56.5,46.5 parent: 12 - - uid: 4663 - components: - - type: Transform - pos: 59.5,-8.5 - parent: 12 - - uid: 4683 - components: - - type: Transform - pos: 74.5,14.5 - parent: 12 - - uid: 4684 - components: - - type: Transform - pos: 80.5,1.5 - parent: 12 - uid: 4686 components: - type: Transform @@ -56997,16 +56487,6 @@ entities: - type: Transform pos: -17.5,-24.5 parent: 12 - - uid: 4736 - components: - - type: Transform - pos: -20.5,-30.5 - parent: 12 - - uid: 4761 - components: - - type: Transform - pos: 79.5,-0.5 - parent: 12 - uid: 4800 components: - type: Transform @@ -57027,20 +56507,15 @@ entities: - type: Transform pos: 30.5,-0.5 parent: 12 - - uid: 4928 - components: - - type: Transform - pos: 79.5,-1.5 - parent: 12 - uid: 4933 components: - type: Transform pos: -11.5,-30.5 parent: 12 - - uid: 4954 + - uid: 4958 components: - type: Transform - pos: 67.5,11.5 + pos: 60.5,6.5 parent: 12 - uid: 4963 components: @@ -57077,11 +56552,6 @@ entities: - type: Transform pos: 57.5,58.5 parent: 12 - - uid: 5064 - components: - - type: Transform - pos: 57.5,-4.5 - parent: 12 - uid: 5077 components: - type: Transform @@ -57092,11 +56562,6 @@ entities: - type: Transform pos: 40.5,4.5 parent: 12 - - uid: 5098 - components: - - type: Transform - pos: 59.5,6.5 - parent: 12 - uid: 5102 components: - type: Transform @@ -57112,31 +56577,11 @@ entities: - type: Transform pos: 50.5,62.5 parent: 12 - - uid: 5125 - components: - - type: Transform - pos: 82.5,12.5 - parent: 12 - - uid: 5127 - components: - - type: Transform - pos: 58.5,-8.5 - parent: 12 - - uid: 5128 - components: - - type: Transform - pos: 65.5,-3.5 - parent: 12 - uid: 5132 components: - type: Transform pos: -1.5,1.5 parent: 12 - - uid: 5245 - components: - - type: Transform - pos: -56.5,48.5 - parent: 12 - uid: 5272 components: - type: Transform @@ -57157,36 +56602,11 @@ entities: - type: Transform pos: -27.5,66.5 parent: 12 - - uid: 5316 - components: - - type: Transform - pos: 77.5,-3.5 - parent: 12 - - uid: 5319 - components: - - type: Transform - pos: 82.5,10.5 - parent: 12 - - uid: 5364 - components: - - type: Transform - pos: 82.5,9.5 - parent: 12 - - uid: 5370 - components: - - type: Transform - pos: 82.5,8.5 - parent: 12 - uid: 5378 components: - type: Transform pos: 33.5,-9.5 parent: 12 - - uid: 5386 - components: - - type: Transform - pos: 82.5,11.5 - parent: 12 - uid: 5405 components: - type: Transform @@ -57197,6 +56617,11 @@ entities: - type: Transform pos: -55.5,46.5 parent: 12 + - uid: 5420 + components: + - type: Transform + pos: 61.5,-1.5 + parent: 12 - uid: 5425 components: - type: Transform @@ -57242,11 +56667,6 @@ entities: - type: Transform pos: -27.5,7.5 parent: 12 - - uid: 5526 - components: - - type: Transform - pos: -56.5,47.5 - parent: 12 - uid: 5537 components: - type: Transform @@ -57417,6 +56837,11 @@ entities: - type: Transform pos: -48.5,56.5 parent: 12 + - uid: 6022 + components: + - type: Transform + pos: 58.5,-3.5 + parent: 12 - uid: 6024 components: - type: Transform @@ -57437,11 +56862,6 @@ entities: - type: Transform pos: 19.5,5.5 parent: 12 - - uid: 6151 - components: - - type: Transform - pos: -53.5,54.5 - parent: 12 - uid: 6157 components: - type: Transform @@ -57542,6 +56962,16 @@ entities: - type: Transform pos: 34.5,-3.5 parent: 12 + - uid: 7130 + components: + - type: Transform + pos: 62.5,-1.5 + parent: 12 + - uid: 7132 + components: + - type: Transform + pos: 63.5,-1.5 + parent: 12 - uid: 7208 components: - type: Transform @@ -57612,55 +57042,15 @@ entities: - type: Transform pos: 43.5,-12.5 parent: 12 - - uid: 7555 - components: - - type: Transform - pos: 77.5,14.5 - parent: 12 - - uid: 7563 - components: - - type: Transform - pos: 76.5,-3.5 - parent: 12 - uid: 7580 components: - type: Transform pos: 13.5,1.5 parent: 12 - - uid: 7586 - components: - - type: Transform - pos: 75.5,-3.5 - parent: 12 - - uid: 7766 - components: - - type: Transform - pos: 67.5,-3.5 - parent: 12 - - uid: 7767 - components: - - type: Transform - pos: 68.5,-3.5 - parent: 12 - - uid: 7768 - components: - - type: Transform - pos: 69.5,-3.5 - parent: 12 - - uid: 7782 - components: - - type: Transform - pos: 69.5,-2.5 - parent: 12 - uid: 7783 components: - type: Transform - pos: 70.5,-2.5 - parent: 12 - - uid: 7786 - components: - - type: Transform - pos: 72.5,-2.5 + pos: 59.5,-1.5 parent: 12 - uid: 7787 components: @@ -57672,20 +57062,10 @@ entities: - type: Transform pos: -38.5,-52.5 parent: 12 - - uid: 7811 - components: - - type: Transform - pos: 73.5,-2.5 - parent: 12 - - uid: 7828 - components: - - type: Transform - pos: 74.5,-2.5 - parent: 12 - - uid: 7834 + - uid: 7807 components: - type: Transform - pos: 75.5,-2.5 + pos: 60.5,-1.5 parent: 12 - uid: 7850 components: @@ -57882,11 +57262,6 @@ entities: - type: Transform pos: 59.5,-27.5 parent: 12 - - uid: 7889 - components: - - type: Transform - pos: 71.5,-2.5 - parent: 12 - uid: 7890 components: - type: Transform @@ -58257,16 +57632,6 @@ entities: - type: Transform pos: 79.5,-33.5 parent: 12 - - uid: 8198 - components: - - type: Transform - pos: 77.5,-2.5 - parent: 12 - - uid: 8199 - components: - - type: Transform - pos: 78.5,-2.5 - parent: 12 - uid: 8225 components: - type: Transform @@ -58277,16 +57642,6 @@ entities: - type: Transform pos: 53.5,63.5 parent: 12 - - uid: 8344 - components: - - type: Transform - pos: 68.5,12.5 - parent: 12 - - uid: 8436 - components: - - type: Transform - pos: 69.5,11.5 - parent: 12 - uid: 9002 components: - type: Transform @@ -58297,35 +57652,15 @@ entities: - type: Transform pos: 54.5,9.5 parent: 12 - - uid: 9005 - components: - - type: Transform - pos: 73.5,-5.5 - parent: 12 - - uid: 9006 - components: - - type: Transform - pos: 72.5,-5.5 - parent: 12 - - uid: 9007 - components: - - type: Transform - pos: 74.5,-5.5 - parent: 12 - - uid: 9046 - components: - - type: Transform - pos: 68.5,-5.5 - parent: 12 - - uid: 9047 + - uid: 9016 components: - type: Transform - pos: 70.5,-5.5 + pos: 64.5,2.5 parent: 12 - - uid: 9052 + - uid: 9017 components: - type: Transform - pos: 71.5,-5.5 + pos: 64.5,6.5 parent: 12 - uid: 9069 components: @@ -58347,26 +57682,16 @@ entities: - type: Transform pos: 30.5,0.5 parent: 12 - - uid: 9173 + - uid: 9184 components: - type: Transform - pos: 69.5,12.5 + pos: -23.5,-29.5 parent: 12 - uid: 9253 components: - type: Transform pos: -39.5,70.5 parent: 12 - - uid: 9298 - components: - - type: Transform - pos: 67.5,12.5 - parent: 12 - - uid: 9306 - components: - - type: Transform - pos: 64.5,7.5 - parent: 12 - uid: 9333 components: - type: Transform @@ -58412,21 +57737,11 @@ entities: - type: Transform pos: 61.5,-23.5 parent: 12 - - uid: 9451 - components: - - type: Transform - pos: 82.5,2.5 - parent: 12 - uid: 9455 components: - type: Transform pos: -39.5,66.5 parent: 12 - - uid: 9459 - components: - - type: Transform - pos: 80.5,7.5 - parent: 12 - uid: 9480 components: - type: Transform @@ -58497,10 +57812,15 @@ entities: - type: Transform pos: -2.5,-13.5 parent: 12 - - uid: 9614 + - uid: 9551 components: - type: Transform - pos: 76.5,14.5 + pos: 62.5,-0.5 + parent: 12 + - uid: 9628 + components: + - type: Transform + pos: 21.5,20.5 parent: 12 - uid: 9629 components: @@ -58517,16 +57837,6 @@ entities: - type: Transform pos: 37.5,-1.5 parent: 12 - - uid: 9707 - components: - - type: Transform - pos: 82.5,1.5 - parent: 12 - - uid: 9708 - components: - - type: Transform - pos: 82.5,0.5 - parent: 12 - uid: 9711 components: - type: Transform @@ -58547,25 +57857,15 @@ entities: - type: Transform pos: 38.5,4.5 parent: 12 - - uid: 9865 - components: - - type: Transform - pos: 62.5,10.5 - parent: 12 - uid: 9866 components: - type: Transform - pos: 62.5,11.5 + pos: 64.5,-1.5 parent: 12 - uid: 9867 components: - type: Transform - pos: 62.5,12.5 - parent: 12 - - uid: 9868 - components: - - type: Transform - pos: 64.5,12.5 + pos: 59.5,6.5 parent: 12 - uid: 9876 components: @@ -58692,11 +57992,6 @@ entities: - type: Transform pos: -13.5,-47.5 parent: 12 - - uid: 9908 - components: - - type: Transform - pos: 65.5,12.5 - parent: 12 - uid: 9909 components: - type: Transform @@ -58812,11 +58107,6 @@ entities: - type: Transform pos: -0.5,-49.5 parent: 12 - - uid: 9956 - components: - - type: Transform - pos: 63.5,12.5 - parent: 12 - uid: 9965 components: - type: Transform @@ -58872,10 +58162,10 @@ entities: - type: Transform pos: -0.5,-18.5 parent: 12 - - uid: 10165 + - uid: 10144 components: - type: Transform - pos: 57.5,7.5 + pos: 52.5,0.5 parent: 12 - uid: 10196 components: @@ -58912,11 +58202,6 @@ entities: - type: Transform pos: -46.5,51.5 parent: 12 - - uid: 10376 - components: - - type: Transform - pos: 82.5,-0.5 - parent: 12 - uid: 10377 components: - type: Transform @@ -59062,21 +58347,6 @@ entities: - type: Transform pos: -2.5,-14.5 parent: 12 - - uid: 10518 - components: - - type: Transform - pos: 82.5,-1.5 - parent: 12 - - uid: 10519 - components: - - type: Transform - pos: 82.5,-2.5 - parent: 12 - - uid: 10549 - components: - - type: Transform - pos: 82.5,-3.5 - parent: 12 - uid: 10550 components: - type: Transform @@ -59087,6 +58357,11 @@ entities: - type: Transform pos: -6.5,27.5 parent: 12 + - uid: 10624 + components: + - type: Transform + pos: 61.5,6.5 + parent: 12 - uid: 10638 components: - type: Transform @@ -59107,25 +58382,15 @@ entities: - type: Transform pos: 40.5,1.5 parent: 12 - - uid: 10841 - components: - - type: Transform - pos: 59.5,-7.5 - parent: 12 - - uid: 10917 - components: - - type: Transform - pos: -3.5,-14.5 - parent: 12 - - uid: 10918 + - uid: 10919 components: - type: Transform - pos: -4.5,-14.5 + pos: -0.5,0.5 parent: 12 - - uid: 10919 + - uid: 10927 components: - type: Transform - pos: -0.5,0.5 + pos: 57.5,8.5 parent: 12 - uid: 10940 components: @@ -59162,11 +58427,6 @@ entities: - type: Transform pos: -47.5,15.5 parent: 12 - - uid: 11203 - components: - - type: Transform - pos: 60.5,6.5 - parent: 12 - uid: 11331 components: - type: Transform @@ -59177,11 +58437,6 @@ entities: - type: Transform pos: 32.5,15.5 parent: 12 - - uid: 11365 - components: - - type: Transform - pos: 69.5,-5.5 - parent: 12 - uid: 11383 components: - type: Transform @@ -59192,16 +58447,6 @@ entities: - type: Transform pos: 21.5,4.5 parent: 12 - - uid: 11450 - components: - - type: Transform - pos: 71.5,14.5 - parent: 12 - - uid: 11452 - components: - - type: Transform - pos: 75.5,14.5 - parent: 12 - uid: 11454 components: - type: Transform @@ -59242,16 +58487,6 @@ entities: - type: Transform pos: 31.5,15.5 parent: 12 - - uid: 12047 - components: - - type: Transform - pos: 75.5,-5.5 - parent: 12 - - uid: 12056 - components: - - type: Transform - pos: 76.5,-5.5 - parent: 12 - uid: 12142 components: - type: Transform @@ -59292,41 +58527,11 @@ entities: - type: Transform pos: 21.5,21.5 parent: 12 - - uid: 12352 - components: - - type: Transform - pos: 22.5,21.5 - parent: 12 - - uid: 12353 - components: - - type: Transform - pos: 22.5,20.5 - parent: 12 - - uid: 12354 - components: - - type: Transform - pos: 22.5,19.5 - parent: 12 - uid: 12355 components: - type: Transform pos: 21.5,19.5 parent: 12 - - uid: 12356 - components: - - type: Transform - pos: 20.5,19.5 - parent: 12 - - uid: 12357 - components: - - type: Transform - pos: 20.5,20.5 - parent: 12 - - uid: 12358 - components: - - type: Transform - pos: 20.5,21.5 - parent: 12 - uid: 12359 components: - type: Transform @@ -59570,32 +58775,12 @@ entities: - uid: 12916 components: - type: Transform - pos: 81.5,-5.5 - parent: 12 - - uid: 12917 - components: - - type: Transform - pos: 82.5,-5.5 + pos: 57.5,7.5 parent: 12 - uid: 12920 components: - type: Transform - pos: 77.5,-5.5 - parent: 12 - - uid: 12929 - components: - - type: Transform - pos: 78.5,-5.5 - parent: 12 - - uid: 12931 - components: - - type: Transform - pos: 79.5,-5.5 - parent: 12 - - uid: 13011 - components: - - type: Transform - pos: 80.5,-5.5 + pos: 65.5,8.5 parent: 12 - uid: 13043 components: @@ -60742,15 +59927,10 @@ entities: - type: Transform pos: 1.5,-14.5 parent: 12 - - uid: 15999 - components: - - type: Transform - pos: -5.5,-14.5 - parent: 12 - uid: 16000 components: - type: Transform - pos: -5.5,-15.5 + pos: -22.5,-29.5 parent: 12 - uid: 16095 components: @@ -61177,10 +60357,15 @@ entities: - type: Transform pos: -1.5,45.5 parent: 12 - - uid: 16356 + - uid: 16361 components: - type: Transform - pos: 82.5,-4.5 + pos: 65.5,0.5 + parent: 12 + - uid: 16368 + components: + - type: Transform + pos: -22.5,-28.5 parent: 12 - uid: 16377 components: @@ -61237,11 +60422,6 @@ entities: - type: Transform pos: -10.5,23.5 parent: 12 - - uid: 16436 - components: - - type: Transform - pos: 59.5,-5.5 - parent: 12 - uid: 16518 components: - type: Transform @@ -61287,11 +60467,6 @@ entities: - type: Transform pos: 65.5,-2.5 parent: 12 - - uid: 16663 - components: - - type: Transform - pos: 66.5,-2.5 - parent: 12 - uid: 16798 components: - type: Transform @@ -62252,11 +61427,6 @@ entities: - type: Transform pos: -51.5,13.5 parent: 12 - - uid: 19462 - components: - - type: Transform - pos: 59.5,7.5 - parent: 12 - uid: 19506 components: - type: Transform @@ -63362,16 +62532,6 @@ entities: - type: Transform pos: -45.5,51.5 parent: 12 - - uid: 20564 - components: - - type: Transform - pos: -47.5,51.5 - parent: 12 - - uid: 20566 - components: - - type: Transform - pos: -47.5,52.5 - parent: 12 - uid: 20567 components: - type: Transform @@ -63387,11 +62547,6 @@ entities: - type: Transform pos: -37.5,51.5 parent: 12 - - uid: 20606 - components: - - type: Transform - pos: 82.5,6.5 - parent: 12 - uid: 20767 components: - type: Transform @@ -63447,11 +62602,6 @@ entities: - type: Transform pos: -8.5,-22.5 parent: 12 - - uid: 20855 - components: - - type: Transform - pos: -53.5,53.5 - parent: 12 - uid: 21085 components: - type: Transform @@ -63602,11 +62752,6 @@ entities: - type: Transform pos: -6.5,32.5 parent: 12 - - uid: 21607 - components: - - type: Transform - pos: 59.5,-6.5 - parent: 12 - uid: 21705 components: - type: Transform @@ -63627,11 +62772,6 @@ entities: - type: Transform pos: 60.5,-23.5 parent: 12 - - uid: 21871 - components: - - type: Transform - pos: 61.5,6.5 - parent: 12 - uid: 21884 components: - type: Transform @@ -63657,16 +62797,6 @@ entities: - type: Transform pos: 32.5,-6.5 parent: 12 - - uid: 22027 - components: - - type: Transform - pos: -54.5,49.5 - parent: 12 - - uid: 22028 - components: - - type: Transform - pos: -53.5,49.5 - parent: 12 - uid: 22030 components: - type: Transform @@ -63682,11 +62812,6 @@ entities: - type: Transform pos: 36.5,-3.5 parent: 12 - - uid: 22079 - components: - - type: Transform - pos: 54.5,14.5 - parent: 12 - uid: 22083 components: - type: Transform @@ -63697,66 +62822,6 @@ entities: - type: Transform pos: -41.5,52.5 parent: 12 - - uid: 22128 - components: - - type: Transform - pos: 63.5,14.5 - parent: 12 - - uid: 22131 - components: - - type: Transform - pos: 65.5,14.5 - parent: 12 - - uid: 22134 - components: - - type: Transform - pos: 70.5,14.5 - parent: 12 - - uid: 22135 - components: - - type: Transform - pos: 62.5,-3.5 - parent: 12 - - uid: 22137 - components: - - type: Transform - pos: 69.5,14.5 - parent: 12 - - uid: 22138 - components: - - type: Transform - pos: 64.5,14.5 - parent: 12 - - uid: 22139 - components: - - type: Transform - pos: 66.5,14.5 - parent: 12 - - uid: 22143 - components: - - type: Transform - pos: 58.5,14.5 - parent: 12 - - uid: 22145 - components: - - type: Transform - pos: 60.5,14.5 - parent: 12 - - uid: 22146 - components: - - type: Transform - pos: 59.5,14.5 - parent: 12 - - uid: 22149 - components: - - type: Transform - pos: 61.5,14.5 - parent: 12 - - uid: 22163 - components: - - type: Transform - pos: 61.5,-3.5 - parent: 12 - uid: 22188 components: - type: Transform @@ -63817,11 +62882,6 @@ entities: - type: Transform pos: -53.5,57.5 parent: 12 - - uid: 22336 - components: - - type: Transform - pos: -53.5,52.5 - parent: 12 - uid: 22338 components: - type: Transform @@ -63842,21 +62902,6 @@ entities: - type: Transform pos: -31.5,70.5 parent: 12 - - uid: 23134 - components: - - type: Transform - pos: 60.5,-3.5 - parent: 12 - - uid: 23174 - components: - - type: Transform - pos: 64.5,-3.5 - parent: 12 - - uid: 23175 - components: - - type: Transform - pos: 63.5,-3.5 - parent: 12 - uid: 23713 components: - type: Transform @@ -63872,21 +62917,6 @@ entities: - type: Transform pos: -56.5,61.5 parent: 12 - - uid: 23897 - components: - - type: Transform - pos: -53.5,50.5 - parent: 12 - - uid: 23951 - components: - - type: Transform - pos: -20.5,-29.5 - parent: 12 - - uid: 24455 - components: - - type: Transform - pos: 49.5,-2.5 - parent: 12 - uid: 24661 components: - type: Transform @@ -63897,11 +62927,6 @@ entities: - type: Transform pos: -51.5,46.5 parent: 12 - - uid: 24688 - components: - - type: Transform - pos: 81.5,14.5 - parent: 12 - uid: 24714 components: - type: Transform @@ -64492,31 +63517,16 @@ entities: - type: Transform pos: -29.5,-42.5 parent: 12 - - uid: 25388 - components: - - type: Transform - pos: -55.5,49.5 - parent: 12 - uid: 25390 components: - type: Transform pos: -53.5,46.5 parent: 12 - - uid: 25398 - components: - - type: Transform - pos: -56.5,49.5 - parent: 12 - uid: 25405 components: - type: Transform pos: -22.5,57.5 parent: 12 - - uid: 25411 - components: - - type: Transform - pos: -53.5,51.5 - parent: 12 - uid: 25441 components: - type: Transform @@ -64617,11 +63627,6 @@ entities: - type: Transform pos: 58.5,-0.5 parent: 12 - - uid: 25538 - components: - - type: Transform - pos: 59.5,-3.5 - parent: 12 - uid: 25539 components: - type: Transform @@ -64652,11 +63657,6 @@ entities: - type: Transform pos: 33.5,12.5 parent: 12 - - uid: 25598 - components: - - type: Transform - pos: 58.5,-3.5 - parent: 12 - uid: 25633 components: - type: Transform @@ -64802,46 +63802,11 @@ entities: - type: Transform pos: 32.5,14.5 parent: 12 - - uid: 25870 - components: - - type: Transform - pos: -20.5,-28.5 - parent: 12 - - uid: 26073 - components: - - type: Transform - pos: -20.5,-27.5 - parent: 12 - uid: 26111 components: - type: Transform pos: 40.5,-10.5 parent: 12 - - uid: 26132 - components: - - type: Transform - pos: 62.5,-5.5 - parent: 12 - - uid: 26133 - components: - - type: Transform - pos: 60.5,-5.5 - parent: 12 - - uid: 26153 - components: - - type: Transform - pos: 64.5,-5.5 - parent: 12 - - uid: 26155 - components: - - type: Transform - pos: 66.5,-5.5 - parent: 12 - - uid: 26162 - components: - - type: Transform - pos: 79.5,2.5 - parent: 12 - uid: 26208 components: - type: Transform @@ -64862,61 +63827,16 @@ entities: - type: Transform pos: -27.5,-27.5 parent: 12 - - uid: 26311 - components: - - type: Transform - pos: 79.5,7.5 - parent: 12 - - uid: 26382 - components: - - type: Transform - pos: 79.5,1.5 - parent: 12 - - uid: 26389 - components: - - type: Transform - pos: 79.5,3.5 - parent: 12 - - uid: 26422 - components: - - type: Transform - pos: 82.5,4.5 - parent: 12 - - uid: 26432 - components: - - type: Transform - pos: 62.5,8.5 - parent: 12 - - uid: 26445 - components: - - type: Transform - pos: 82.5,13.5 - parent: 12 - uid: 26451 components: - type: Transform pos: 57.5,4.5 parent: 12 - - uid: 26455 - components: - - type: Transform - pos: 82.5,3.5 - parent: 12 - - uid: 26462 - components: - - type: Transform - pos: 82.5,7.5 - parent: 12 - uid: 26478 components: - type: Transform pos: 17.5,7.5 parent: 12 - - uid: 26488 - components: - - type: Transform - pos: 82.5,14.5 - parent: 12 - uid: 26512 components: - type: Transform @@ -64942,61 +63862,11 @@ entities: - type: Transform pos: 58.5,4.5 parent: 12 - - uid: 26529 - components: - - type: Transform - pos: 79.5,6.5 - parent: 12 - - uid: 26530 - components: - - type: Transform - pos: 79.5,4.5 - parent: 12 - - uid: 26531 - components: - - type: Transform - pos: 79.5,5.5 - parent: 12 - - uid: 26532 - components: - - type: Transform - pos: 63.5,-5.5 - parent: 12 - - uid: 26533 - components: - - type: Transform - pos: 61.5,-5.5 - parent: 12 - - uid: 26534 - components: - - type: Transform - pos: 65.5,-5.5 - parent: 12 - - uid: 26535 - components: - - type: Transform - pos: 67.5,-5.5 - parent: 12 - uid: 26545 components: - type: Transform pos: 21.5,5.5 parent: 12 - - uid: 26559 - components: - - type: Transform - pos: 79.5,-2.5 - parent: 12 - - uid: 26585 - components: - - type: Transform - pos: 56.5,14.5 - parent: 12 - - uid: 26587 - components: - - type: Transform - pos: 57.5,14.5 - parent: 12 - uid: 26597 components: - type: Transform @@ -65007,41 +63877,6 @@ entities: - type: Transform pos: 17.5,6.5 parent: 12 - - uid: 26645 - components: - - type: Transform - pos: 78.5,14.5 - parent: 12 - - uid: 26654 - components: - - type: Transform - pos: 73.5,11.5 - parent: 12 - - uid: 26669 - components: - - type: Transform - pos: 71.5,11.5 - parent: 12 - - uid: 26675 - components: - - type: Transform - pos: 72.5,11.5 - parent: 12 - - uid: 26677 - components: - - type: Transform - pos: 70.5,11.5 - parent: 12 - - uid: 26678 - components: - - type: Transform - pos: 79.5,11.5 - parent: 12 - - uid: 26681 - components: - - type: Transform - pos: 64.5,8.5 - parent: 12 - uid: 26688 components: - type: Transform @@ -65052,16 +63887,6 @@ entities: - type: Transform pos: 65.5,1.5 parent: 12 - - uid: 26706 - components: - - type: Transform - pos: 77.5,11.5 - parent: 12 - - uid: 26707 - components: - - type: Transform - pos: 64.5,9.5 - parent: 12 - uid: 26708 components: - type: Transform @@ -65082,16 +63907,6 @@ entities: - type: Transform pos: 65.5,9.5 parent: 12 - - uid: 26715 - components: - - type: Transform - pos: 76.5,12.5 - parent: 12 - - uid: 26718 - components: - - type: Transform - pos: 64.5,-0.5 - parent: 12 - uid: 26720 components: - type: Transform @@ -65132,41 +63947,6 @@ entities: - type: Transform pos: 59.5,4.5 parent: 12 - - uid: 26748 - components: - - type: Transform - pos: 77.5,12.5 - parent: 12 - - uid: 26749 - components: - - type: Transform - pos: 75.5,12.5 - parent: 12 - - uid: 26750 - components: - - type: Transform - pos: 75.5,11.5 - parent: 12 - - uid: 26751 - components: - - type: Transform - pos: 74.5,11.5 - parent: 12 - - uid: 26752 - components: - - type: Transform - pos: 79.5,9.5 - parent: 12 - - uid: 26753 - components: - - type: Transform - pos: 78.5,11.5 - parent: 12 - - uid: 26755 - components: - - type: Transform - pos: 79.5,10.5 - parent: 12 - uid: 26761 components: - type: Transform @@ -65182,16 +63962,6 @@ entities: - type: Transform pos: 22.5,5.5 parent: 12 - - uid: 26783 - components: - - type: Transform - pos: 64.5,1.5 - parent: 12 - - uid: 26785 - components: - - type: Transform - pos: 64.5,0.5 - parent: 12 - uid: 26806 components: - type: Transform @@ -65207,11 +63977,6 @@ entities: - type: Transform pos: 63.5,2.5 parent: 12 - - uid: 26829 - components: - - type: Transform - pos: 51.5,1.5 - parent: 12 - uid: 26831 components: - type: Transform @@ -65242,21 +64007,6 @@ entities: - type: Transform pos: 53.5,2.5 parent: 12 - - uid: 26879 - components: - - type: Transform - pos: 53.5,-7.5 - parent: 12 - - uid: 26885 - components: - - type: Transform - pos: 57.5,-7.5 - parent: 12 - - uid: 26899 - components: - - type: Transform - pos: 54.5,-7.5 - parent: 12 - uid: 26900 components: - type: Transform @@ -65267,31 +64017,6 @@ entities: - type: Transform pos: 54.5,-0.5 parent: 12 - - uid: 27056 - components: - - type: Transform - pos: 55.5,-7.5 - parent: 12 - - uid: 27073 - components: - - type: Transform - pos: 62.5,14.5 - parent: 12 - - uid: 27075 - components: - - type: Transform - pos: 55.5,14.5 - parent: 12 - - uid: 27077 - components: - - type: Transform - pos: 67.5,14.5 - parent: 12 - - uid: 27078 - components: - - type: Transform - pos: 68.5,14.5 - parent: 12 - uid: 27113 components: - type: Transform @@ -65307,71 +64032,6 @@ entities: - type: Transform pos: 53.5,-0.5 parent: 12 - - uid: 27118 - components: - - type: Transform - pos: 50.5,-0.5 - parent: 12 - - uid: 27119 - components: - - type: Transform - pos: 50.5,-1.5 - parent: 12 - - uid: 27120 - components: - - type: Transform - pos: 50.5,-3.5 - parent: 12 - - uid: 27121 - components: - - type: Transform - pos: 50.5,-2.5 - parent: 12 - - uid: 27122 - components: - - type: Transform - pos: 51.5,-3.5 - parent: 12 - - uid: 27123 - components: - - type: Transform - pos: 52.5,-3.5 - parent: 12 - - uid: 27124 - components: - - type: Transform - pos: 52.5,-4.5 - parent: 12 - - uid: 27125 - components: - - type: Transform - pos: 52.5,-5.5 - parent: 12 - - uid: 27126 - components: - - type: Transform - pos: 52.5,-6.5 - parent: 12 - - uid: 27127 - components: - - type: Transform - pos: 52.5,-7.5 - parent: 12 - - uid: 27128 - components: - - type: Transform - pos: 56.5,-7.5 - parent: 12 - - uid: 27216 - components: - - type: Transform - pos: 60.5,11.5 - parent: 12 - - uid: 27237 - components: - - type: Transform - pos: 57.5,-6.5 - parent: 12 - uid: 27253 components: - type: Transform @@ -65797,41 +64457,6 @@ entities: - type: Transform pos: 54.5,7.5 parent: 12 - - uid: 28223 - components: - - type: Transform - pos: 55.5,11.5 - parent: 12 - - uid: 28224 - components: - - type: Transform - pos: 56.5,11.5 - parent: 12 - - uid: 28225 - components: - - type: Transform - pos: 57.5,11.5 - parent: 12 - - uid: 28226 - components: - - type: Transform - pos: 58.5,11.5 - parent: 12 - - uid: 28227 - components: - - type: Transform - pos: 58.5,10.5 - parent: 12 - - uid: 28228 - components: - - type: Transform - pos: 58.5,9.5 - parent: 12 - - uid: 28229 - components: - - type: Transform - pos: 58.5,8.5 - parent: 12 - uid: 28424 components: - type: Transform @@ -65897,11 +64522,6 @@ entities: - type: Transform pos: 5.5,-47.5 parent: 12 - - uid: 28886 - components: - - type: Transform - pos: 50.5,0.5 - parent: 12 - uid: 28888 components: - type: Transform @@ -66702,11 +65322,6 @@ entities: - type: Transform pos: -50.5,64.5 parent: 12 - - uid: 29634 - components: - - type: Transform - pos: 58.5,-8.5 - parent: 12 - uid: 29648 components: - type: Transform @@ -66912,21 +65527,6 @@ entities: - type: Transform pos: -11.5,-36.5 parent: 12 - - uid: 29989 - components: - - type: Transform - pos: 49.5,0.5 - parent: 12 - - uid: 29990 - components: - - type: Transform - pos: 48.5,0.5 - parent: 12 - - uid: 29991 - components: - - type: Transform - pos: 47.5,0.5 - parent: 12 - uid: 30246 components: - type: Transform @@ -67222,16 +65822,6 @@ entities: - type: Transform pos: -23.5,-5.5 parent: 12 - - uid: 31904 - components: - - type: Transform - pos: 59.5,11.5 - parent: 12 - - uid: 31905 - components: - - type: Transform - pos: 57.5,-5.5 - parent: 12 - uid: 32041 components: - type: Transform @@ -67342,8 +65932,8 @@ entities: - uid: 28716 components: - type: Transform - rot: -6.283185307179586 rad - pos: 54.49973,-6.4827724 + rot: -37.69911184307754 rad + pos: 54.425102,-5.334914 parent: 12 - proto: CableMVStack1 entities: @@ -67377,6 +65967,12 @@ entities: - type: Transform pos: 12.5,-16.5 parent: 12 + - uid: 7766 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,0.5 + parent: 12 - uid: 7946 components: - type: Transform @@ -67404,12 +66000,6 @@ entities: - type: Transform pos: 13.5,-16.5 parent: 12 - - uid: 29322 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,4.5 - parent: 12 - uid: 30247 components: - type: Transform @@ -67422,12 +66012,6 @@ entities: rot: 3.141592653589793 rad pos: -53.5,-47.5 parent: 12 - - uid: 31897 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,11.5 - parent: 12 - proto: Candle entities: - uid: 13090 @@ -67569,7 +66153,8 @@ entities: - uid: 31575 components: - type: Transform - pos: -12.337029,0.65538275 + rot: -6.283185307179586 rad + pos: -13.663055,0.58543336 parent: 12 - proto: CaptainIDCard entities: @@ -67580,6 +66165,11 @@ entities: parent: 12 - proto: CarbonDioxideCanister entities: + - uid: 22 + components: + - type: Transform + pos: 10.5,12.5 + parent: 12 - uid: 707 components: - type: Transform @@ -68842,6 +67432,12 @@ entities: rot: 3.141592653589793 rad pos: 44.5,38.5 parent: 12 + - uid: 7109 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,42.5 + parent: 12 - uid: 13032 components: - type: Transform @@ -69342,11 +67938,6 @@ entities: - type: Transform pos: 49.5,40.5 parent: 12 - - uid: 13176 - components: - - type: Transform - pos: 50.5,42.5 - parent: 12 - uid: 13177 components: - type: Transform @@ -69357,12 +67948,6 @@ entities: - type: Transform pos: 51.5,42.5 parent: 12 - - uid: 13182 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,42.5 - parent: 12 - uid: 13187 components: - type: Transform @@ -70249,6 +68834,11 @@ entities: rot: 3.141592653589793 rad pos: 3.5,-57.5 parent: 12 + - uid: 465 + components: + - type: Transform + pos: 10.5,28.5 + parent: 12 - uid: 506 components: - type: Transform @@ -70259,21 +68849,6 @@ entities: - type: Transform pos: 54.5,12.5 parent: 12 - - uid: 564 - components: - - type: Transform - pos: 54.5,10.5 - parent: 12 - - uid: 566 - components: - - type: Transform - pos: 54.5,11.5 - parent: 12 - - uid: 567 - components: - - type: Transform - pos: 54.5,9.5 - parent: 12 - uid: 765 components: - type: Transform @@ -70297,12 +68872,24 @@ entities: rot: 3.141592653589793 rad pos: 18.5,10.5 parent: 12 + - uid: 1437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,-7.5 + parent: 12 - uid: 1555 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,2.5 parent: 12 + - uid: 2026 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,25.5 + parent: 12 - uid: 2185 components: - type: Transform @@ -70320,6 +68907,12 @@ entities: rot: 1.5707963267948966 rad pos: -7.5,-36.5 parent: 12 + - uid: 2463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,24.5 + parent: 12 - uid: 2487 components: - type: Transform @@ -70330,11 +68923,6 @@ entities: - type: Transform pos: 87.5,-34.5 parent: 12 - - uid: 2501 - components: - - type: Transform - pos: 2.5,22.5 - parent: 12 - uid: 2675 components: - type: Transform @@ -70369,6 +68957,11 @@ entities: rot: 3.141592653589793 rad pos: -7.5,-34.5 parent: 12 + - uid: 2949 + components: + - type: Transform + pos: 54.5,11.5 + parent: 12 - uid: 2950 components: - type: Transform @@ -70387,6 +68980,12 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,9.5 parent: 12 + - uid: 2970 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,24.5 + parent: 12 - uid: 2988 components: - type: Transform @@ -70405,6 +69004,29 @@ entities: rot: 3.141592653589793 rad pos: 6.5,-22.5 parent: 12 + - uid: 3133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,23.5 + parent: 12 + - uid: 3486 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,24.5 + parent: 12 + - uid: 3623 + components: + - type: Transform + pos: -56.5,48.5 + parent: 12 + - uid: 3913 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,26.5 + parent: 12 - uid: 3914 components: - type: Transform @@ -70417,11 +69039,22 @@ entities: rot: 1.5707963267948966 rad pos: 11.5,10.5 parent: 12 + - uid: 3960 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,27.5 + parent: 12 - uid: 4038 components: - type: Transform pos: -38.5,-52.5 parent: 12 + - uid: 4045 + components: + - type: Transform + pos: 21.5,19.5 + parent: 12 - uid: 4056 components: - type: Transform @@ -70604,6 +69237,11 @@ entities: - type: Transform pos: -7.5,-39.5 parent: 12 + - uid: 4385 + components: + - type: Transform + pos: 54.5,10.5 + parent: 12 - uid: 4593 components: - type: Transform @@ -70649,6 +69287,12 @@ entities: - type: Transform pos: -36.5,-53.5 parent: 12 + - uid: 4766 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,-7.5 + parent: 12 - uid: 4767 components: - type: Transform @@ -70679,6 +69323,11 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,-2.5 parent: 12 + - uid: 4928 + components: + - type: Transform + pos: -56.5,47.5 + parent: 12 - uid: 4950 components: - type: Transform @@ -70691,6 +69340,12 @@ entities: rot: 1.5707963267948966 rad pos: 10.5,10.5 parent: 12 + - uid: 4989 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,22.5 + parent: 12 - uid: 5023 components: - type: Transform @@ -70739,12 +69394,75 @@ entities: rot: 3.141592653589793 rad pos: 6.5,-12.5 parent: 12 + - uid: 5319 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,22.5 + parent: 12 + - uid: 5384 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,-6.5 + parent: 12 - uid: 5419 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,10.5 parent: 12 + - uid: 5506 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,-8.5 + parent: 12 + - uid: 5507 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,-8.5 + parent: 12 + - uid: 5526 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,-8.5 + parent: 12 + - uid: 5527 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,-8.5 + parent: 12 + - uid: 5538 + components: + - type: Transform + pos: 21.5,20.5 + parent: 12 + - uid: 5543 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,-8.5 + parent: 12 + - uid: 5550 + components: + - type: Transform + pos: 20.5,20.5 + parent: 12 + - uid: 5552 + components: + - type: Transform + pos: 21.5,21.5 + parent: 12 + - uid: 5553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,23.5 + parent: 12 - uid: 5556 components: - type: Transform @@ -71320,12 +70038,52 @@ entities: rot: -1.5707963267948966 rad pos: 72.5,-58.5 parent: 12 + - uid: 7112 + components: + - type: Transform + pos: -56.5,49.5 + parent: 12 - uid: 7120 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-37.5 parent: 12 + - uid: 7154 + components: + - type: Transform + pos: 54.5,9.5 + parent: 12 + - uid: 7162 + components: + - type: Transform + pos: 16.5,26.5 + parent: 12 + - uid: 7163 + components: + - type: Transform + pos: 16.5,25.5 + parent: 12 + - uid: 7164 + components: + - type: Transform + pos: 16.5,28.5 + parent: 12 + - uid: 7165 + components: + - type: Transform + pos: 15.5,28.5 + parent: 12 + - uid: 7166 + components: + - type: Transform + pos: 16.5,27.5 + parent: 12 + - uid: 7167 + components: + - type: Transform + pos: 14.5,28.5 + parent: 12 - uid: 7215 components: - type: Transform @@ -71620,6 +70378,11 @@ entities: rot: -1.5707963267948966 rad pos: 82.5,-34.5 parent: 12 + - uid: 7768 + components: + - type: Transform + pos: 65.5,-2.5 + parent: 12 - uid: 7792 components: - type: Transform @@ -71643,6 +70406,16 @@ entities: rot: 1.5707963267948966 rad pos: -4.5,16.5 parent: 12 + - uid: 8440 + components: + - type: Transform + pos: 65.5,-1.5 + parent: 12 + - uid: 8443 + components: + - type: Transform + pos: 65.5,-0.5 + parent: 12 - uid: 8452 components: - type: Transform @@ -71655,6 +70428,11 @@ entities: rot: -1.5707963267948966 rad pos: -9.5,-12.5 parent: 12 + - uid: 8456 + components: + - type: Transform + pos: 65.5,1.5 + parent: 12 - uid: 8490 components: - type: Transform @@ -71667,6 +70445,16 @@ entities: rot: -1.5707963267948966 rad pos: 10.5,-39.5 parent: 12 + - uid: 8709 + components: + - type: Transform + pos: 65.5,3.5 + parent: 12 + - uid: 8732 + components: + - type: Transform + pos: 65.5,2.5 + parent: 12 - uid: 8746 components: - type: Transform @@ -71763,6 +70551,11 @@ entities: rot: 1.5707963267948966 rad pos: 87.5,-35.5 parent: 12 + - uid: 8846 + components: + - type: Transform + pos: 65.5,4.5 + parent: 12 - uid: 8854 components: - type: Transform @@ -71775,12 +70568,52 @@ entities: rot: 1.5707963267948966 rad pos: 10.5,-43.5 parent: 12 + - uid: 8856 + components: + - type: Transform + pos: 65.5,5.5 + parent: 12 + - uid: 8857 + components: + - type: Transform + pos: 65.5,7.5 + parent: 12 + - uid: 8859 + components: + - type: Transform + pos: 65.5,8.5 + parent: 12 + - uid: 8860 + components: + - type: Transform + pos: 65.5,9.5 + parent: 12 + - uid: 8877 + components: + - type: Transform + pos: 65.5,6.5 + parent: 12 + - uid: 8910 + components: + - type: Transform + pos: 65.5,10.5 + parent: 12 + - uid: 8937 + components: + - type: Transform + pos: 65.5,11.5 + parent: 12 - uid: 9066 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-9.5 parent: 12 + - uid: 9222 + components: + - type: Transform + pos: 8.5,28.5 + parent: 12 - uid: 9259 components: - type: Transform @@ -71817,17 +70650,17 @@ entities: rot: 1.5707963267948966 rad pos: 2.5,9.5 parent: 12 - - uid: 9595 + - uid: 9596 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,11.5 + pos: 7.5,9.5 parent: 12 - - uid: 9596 + - uid: 9609 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,9.5 + rot: -1.5707963267948966 rad + pos: 4.5,30.5 parent: 12 - uid: 9625 components: @@ -71841,15 +70674,22 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,-47.5 parent: 12 - - uid: 9742 + - uid: 9658 components: - type: Transform - pos: 1.5,21.5 + pos: 9.5,28.5 parent: 12 - - uid: 9851 + - uid: 9707 components: - type: Transform - pos: 3.5,22.5 + rot: -1.5707963267948966 rad + pos: 4.5,32.5 + parent: 12 + - uid: 9723 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,28.5 parent: 12 - uid: 9968 components: @@ -71863,6 +70703,18 @@ entities: rot: 3.141592653589793 rad pos: 5.5,-8.5 parent: 12 + - uid: 10326 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,-5.5 + parent: 12 + - uid: 10594 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,-5.5 + parent: 12 - uid: 10595 components: - type: Transform @@ -71877,8 +70729,8 @@ entities: - uid: 10818 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,3.5 + rot: -1.5707963267948966 rad + pos: 4.5,31.5 parent: 12 - uid: 10835 components: @@ -71898,6 +70750,12 @@ entities: rot: 3.141592653589793 rad pos: 5.5,8.5 parent: 12 + - uid: 10917 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,22.5 + parent: 12 - uid: 10921 components: - type: Transform @@ -71936,10 +70794,16 @@ entities: - type: Transform pos: 20.5,11.5 parent: 12 - - uid: 10977 + - uid: 10967 components: - type: Transform - pos: 1.5,22.5 + pos: 18.5,24.5 + parent: 12 + - uid: 10978 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,16.5 parent: 12 - uid: 11049 components: @@ -71980,11 +70844,15 @@ entities: rot: 1.5707963267948966 rad pos: 21.5,18.5 parent: 12 - - uid: 11214 + - uid: 11202 components: - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,-2.5 + pos: 13.5,28.5 + parent: 12 + - uid: 11224 + components: + - type: Transform + pos: 65.5,0.5 parent: 12 - uid: 11227 components: @@ -72004,77 +70872,11 @@ entities: rot: 1.5707963267948966 rad pos: -19.5,68.5 parent: 12 - - uid: 11285 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,19.5 - parent: 12 - - uid: 11286 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,20.5 - parent: 12 - - uid: 11287 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,21.5 - parent: 12 - - uid: 11288 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,21.5 - parent: 12 - - uid: 11289 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,21.5 - parent: 12 - - uid: 11290 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,20.5 - parent: 12 - - uid: 11291 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,19.5 - parent: 12 - uid: 11303 components: - type: Transform pos: -2.5,9.5 parent: 12 - - uid: 11305 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,22.5 - parent: 12 - - uid: 11310 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,24.5 - parent: 12 - - uid: 11311 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,25.5 - parent: 12 - - uid: 11312 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,26.5 - parent: 12 - uid: 11345 components: - type: Transform @@ -72200,11 +71002,11 @@ entities: rot: -1.5707963267948966 rad pos: 49.5,12.5 parent: 12 - - uid: 12701 + - uid: 12274 components: - type: Transform rot: -1.5707963267948966 rad - pos: 21.5,19.5 + pos: 4.5,22.5 parent: 12 - uid: 12883 components: @@ -72212,6 +71014,12 @@ entities: rot: 1.5707963267948966 rad pos: 22.5,62.5 parent: 12 + - uid: 13788 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,29.5 + parent: 12 - uid: 14294 components: - type: Transform @@ -72488,35 +71296,10 @@ entities: rot: 3.141592653589793 rad pos: 6.5,-16.5 parent: 12 - - uid: 15676 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,20.5 - parent: 12 - - uid: 15677 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,20.5 - parent: 12 - uid: 15678 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,21.5 - parent: 12 - - uid: 15680 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,20.5 - parent: 12 - - uid: 15681 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,20.5 + pos: 11.5,28.5 parent: 12 - uid: 15682 components: @@ -72553,6 +71336,17 @@ entities: - type: Transform pos: -5.5,33.5 parent: 12 + - uid: 16370 + components: + - type: Transform + pos: 12.5,28.5 + parent: 12 + - uid: 16375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,16.5 + parent: 12 - uid: 16424 components: - type: Transform @@ -72626,16 +71420,6 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,7.5 parent: 12 - - uid: 17973 - components: - - type: Transform - pos: -56.5,48.5 - parent: 12 - - uid: 17974 - components: - - type: Transform - pos: -56.5,49.5 - parent: 12 - uid: 17975 components: - type: Transform @@ -72646,11 +71430,6 @@ entities: - type: Transform pos: -56.5,46.5 parent: 12 - - uid: 17977 - components: - - type: Transform - pos: -56.5,47.5 - parent: 12 - uid: 18069 components: - type: Transform @@ -72841,6 +71620,18 @@ entities: - type: Transform pos: -67.5,53.5 parent: 12 + - uid: 19559 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,-5.5 + parent: 12 + - uid: 19820 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-5.5 + parent: 12 - uid: 19864 components: - type: Transform @@ -73256,6 +72047,12 @@ entities: - type: Transform pos: 41.5,10.5 parent: 12 + - uid: 22339 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-5.5 + parent: 12 - uid: 22470 components: - type: Transform @@ -73271,6 +72068,18 @@ entities: - type: Transform pos: -2.5,34.5 parent: 12 + - uid: 23158 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-5.5 + parent: 12 + - uid: 23161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-5.5 + parent: 12 - uid: 23534 components: - type: Transform @@ -74056,61 +72865,6 @@ entities: - type: Transform pos: -26.5,23.5 parent: 12 - - uid: 25822 - components: - - type: Transform - pos: 1.5,10.5 - parent: 12 - - uid: 25823 - components: - - type: Transform - pos: 1.5,11.5 - parent: 12 - - uid: 25824 - components: - - type: Transform - pos: 1.5,12.5 - parent: 12 - - uid: 25825 - components: - - type: Transform - pos: 1.5,13.5 - parent: 12 - - uid: 25826 - components: - - type: Transform - pos: 1.5,14.5 - parent: 12 - - uid: 25827 - components: - - type: Transform - pos: 1.5,15.5 - parent: 12 - - uid: 25828 - components: - - type: Transform - pos: 1.5,17.5 - parent: 12 - - uid: 25829 - components: - - type: Transform - pos: 1.5,16.5 - parent: 12 - - uid: 25830 - components: - - type: Transform - pos: 1.5,19.5 - parent: 12 - - uid: 25831 - components: - - type: Transform - pos: 1.5,20.5 - parent: 12 - - uid: 25832 - components: - - type: Transform - pos: 1.5,18.5 - parent: 12 - uid: 26236 components: - type: Transform @@ -74135,12 +72889,6 @@ entities: rot: 3.141592653589793 rad pos: 6.5,-11.5 parent: 12 - - uid: 27240 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,1.5 - parent: 12 - uid: 27241 components: - type: Transform @@ -74771,12 +73519,6 @@ entities: rot: 1.5707963267948966 rad pos: 37.5,-15.5 parent: 12 - - uid: 28493 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,11.5 - parent: 12 - uid: 28601 components: - type: Transform @@ -74967,18 +73709,6 @@ entities: - type: Transform pos: 47.5,10.5 parent: 12 - - uid: 28926 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,-1.5 - parent: 12 - - uid: 28927 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,-0.5 - parent: 12 - uid: 28939 components: - type: Transform @@ -74997,12 +73727,6 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,-6.5 parent: 12 - - uid: 28944 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,11.5 - parent: 12 - uid: 29000 components: - type: Transform @@ -75039,100 +73763,12 @@ entities: rot: 3.141592653589793 rad pos: 18.5,22.5 parent: 12 - - uid: 29058 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,23.5 - parent: 12 - - uid: 29059 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,23.5 - parent: 12 - - uid: 29060 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,23.5 - parent: 12 - - uid: 29061 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,23.5 - parent: 12 - - uid: 29062 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,23.5 - parent: 12 - - uid: 29063 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,23.5 - parent: 12 - - uid: 29064 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,23.5 - parent: 12 - - uid: 29065 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,23.5 - parent: 12 - - uid: 29066 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,23.5 - parent: 12 - - uid: 29068 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,23.5 - parent: 12 - - uid: 29070 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,23.5 - parent: 12 - - uid: 29071 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,23.5 - parent: 12 - - uid: 29072 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,23.5 - parent: 12 - uid: 29086 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,0.5 parent: 12 - - uid: 29090 - components: - - type: Transform - pos: 7.5,23.5 - parent: 12 - - uid: 29091 - components: - - type: Transform - pos: 9.5,23.5 - parent: 12 - uid: 29094 components: - type: Transform @@ -75145,24 +73781,6 @@ entities: rot: 1.5707963267948966 rad pos: 36.5,2.5 parent: 12 - - uid: 29103 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,4.5 - parent: 12 - - uid: 29107 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,0.5 - parent: 12 - - uid: 29108 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,2.5 - parent: 12 - uid: 29148 components: - type: Transform @@ -75837,318 +74455,6 @@ entities: rot: 3.141592653589793 rad pos: -16.5,-64.5 parent: 12 - - uid: 31518 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,0.5 - parent: 12 - - uid: 31519 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,1.5 - parent: 12 - - uid: 31742 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,2.5 - parent: 12 - - uid: 31743 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,3.5 - parent: 12 - - uid: 31744 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,4.5 - parent: 12 - - uid: 31745 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,5.5 - parent: 12 - - uid: 31747 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,6.5 - parent: 12 - - uid: 31756 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,7.5 - parent: 12 - - uid: 31757 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,8.5 - parent: 12 - - uid: 31764 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,9.5 - parent: 12 - - uid: 31838 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,10.5 - parent: 12 - - uid: 31839 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,11.5 - parent: 12 - - uid: 31840 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,11.5 - parent: 12 - - uid: 31841 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,11.5 - parent: 12 - - uid: 31842 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,11.5 - parent: 12 - - uid: 31843 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,11.5 - parent: 12 - - uid: 31844 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,11.5 - parent: 12 - - uid: 31845 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,11.5 - parent: 12 - - uid: 31846 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,11.5 - parent: 12 - - uid: 31847 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,11.5 - parent: 12 - - uid: 31848 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,11.5 - parent: 12 - - uid: 31849 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,11.5 - parent: 12 - - uid: 31850 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,11.5 - parent: 12 - - uid: 31851 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,11.5 - parent: 12 - - uid: 31852 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,11.5 - parent: 12 - - uid: 31853 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,10.5 - parent: 12 - - uid: 31854 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,8.5 - parent: 12 - - uid: 31855 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,7.5 - parent: 12 - - uid: 31856 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,6.5 - parent: 12 - - uid: 31857 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,5.5 - parent: 12 - - uid: 31858 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,9.5 - parent: 12 - - uid: 31859 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,4.5 - parent: 12 - - uid: 31860 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,3.5 - parent: 12 - - uid: 31861 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,2.5 - parent: 12 - - uid: 31862 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,0.5 - parent: 12 - - uid: 31863 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,-0.5 - parent: 12 - - uid: 31864 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,-1.5 - parent: 12 - - uid: 31865 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,-2.5 - parent: 12 - - uid: 31866 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,1.5 - parent: 12 - - uid: 31867 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,-2.5 - parent: 12 - - uid: 31868 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,-2.5 - parent: 12 - - uid: 31869 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,-2.5 - parent: 12 - - uid: 31870 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,-2.5 - parent: 12 - - uid: 31871 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,-2.5 - parent: 12 - - uid: 31872 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,-2.5 - parent: 12 - - uid: 31873 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,-2.5 - parent: 12 - - uid: 31874 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,-2.5 - parent: 12 - - uid: 31875 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,-2.5 - parent: 12 - - uid: 31876 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,-2.5 - parent: 12 - - uid: 31877 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,-2.5 - parent: 12 - - uid: 31878 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,-2.5 - parent: 12 - - uid: 31879 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-2.5 - parent: 12 - uid: 32022 components: - type: Transform @@ -76310,6 +74616,12 @@ entities: rot: 1.5707963267948966 rad pos: -17.5,-56.5 parent: 12 + - uid: 3894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,20.5 + parent: 12 - uid: 4264 components: - type: Transform @@ -76327,6 +74639,12 @@ entities: - type: Transform pos: -39.5,60.5 parent: 12 + - uid: 5121 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-29.5 + parent: 12 - uid: 5394 components: - type: Transform @@ -76338,16 +74656,6 @@ entities: rot: -1.5707963267948966 rad pos: 26.5,-21.5 parent: 12 - - uid: 5506 - components: - - type: Transform - pos: 12.5,-23.5 - parent: 12 - - uid: 5507 - components: - - type: Transform - pos: 13.5,-23.5 - parent: 12 - uid: 5532 components: - type: Transform @@ -76376,6 +74684,12 @@ entities: - type: Transform pos: 31.5,-3.5 parent: 12 + - uid: 6151 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-3.5 + parent: 12 - uid: 6266 components: - type: Transform @@ -76486,6 +74800,12 @@ entities: - type: Transform pos: -23.5,-2.5 parent: 12 + - uid: 10897 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-30.5 + parent: 12 - uid: 11124 components: - type: Transform @@ -76606,12 +74926,6 @@ entities: rot: 1.5707963267948966 rad pos: 20.5,28.5 parent: 12 - - uid: 15668 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,19.5 - parent: 12 - uid: 16767 components: - type: Transform @@ -77492,18 +75806,6 @@ entities: rot: -1.5707963267948966 rad pos: -17.5,70.5 parent: 12 - - uid: 26592 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-3.5 - parent: 12 - - uid: 27042 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,10.5 - parent: 12 - uid: 28037 components: - type: Transform @@ -77713,12 +76015,6 @@ entities: rot: 3.141592653589793 rad pos: 45.5,63.5 parent: 12 - - uid: 15672 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.390552,20.748575 - parent: 12 - uid: 22681 components: - type: Transform @@ -77771,12 +76067,6 @@ entities: rot: 1.5707963267948966 rad pos: 57.5,61.5 parent: 12 - - uid: 15687 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.486891,21.672792 - parent: 12 - uid: 32099 components: - type: Transform @@ -77848,24 +76138,12 @@ entities: - type: Transform pos: -22.352177,-50.419205 parent: 12 - - uid: 4077 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.408745,-38.84657 - parent: 12 - uid: 4078 components: - type: Transform rot: 3.141592653589793 rad pos: -20.367077,-38.37782 parent: 12 - - uid: 4079 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.408745,-38.450733 - parent: 12 - uid: 5243 components: - type: Transform @@ -77910,12 +76188,6 @@ entities: - type: Transform pos: 13.537189,37.57953 parent: 12 - - uid: 15667 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.6078722,19.88052 - parent: 12 - uid: 15801 components: - type: Transform @@ -77933,16 +76205,17 @@ entities: rot: 3.141592653589793 rad pos: -33.5,23.5 parent: 12 - - uid: 19634 + - uid: 19349 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,78.5 + rot: 1.5707963267948966 rad + pos: -19.47049,-39.353542 parent: 12 - - uid: 21313 + - uid: 19634 components: - type: Transform - pos: 53.5,-5.5 + rot: -1.5707963267948966 rad + pos: -5.5,78.5 parent: 12 - uid: 22348 components: @@ -77950,6 +76223,11 @@ entities: rot: 1.5707963267948966 rad pos: -22.5,0.5 parent: 12 + - uid: 23130 + components: + - type: Transform + pos: 56.427277,-4.6059856 + parent: 12 - uid: 23441 components: - type: Transform @@ -77974,11 +76252,6 @@ entities: rot: -1.5707963267948966 rad pos: 58.720875,57.492115 parent: 12 - - uid: 26552 - components: - - type: Transform - pos: 55.5,-5.5 - parent: 12 - uid: 27066 components: - type: Transform @@ -78057,6 +76330,12 @@ entities: rot: 1.5707963267948966 rad pos: -41.335243,-36.532413 parent: 12 + - uid: 2665 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,21.5 + parent: 12 - uid: 5970 components: - type: Transform @@ -78068,6 +76347,11 @@ entities: - type: Transform pos: 35.5,-38.5 parent: 12 + - uid: 7521 + components: + - type: Transform + pos: 13.5,-23.5 + parent: 12 - uid: 13864 components: - type: Transform @@ -78544,11 +76828,6 @@ entities: - type: Transform pos: 16.5,12.5 parent: 12 - - uid: 9653 - components: - - type: Transform - pos: 5.5,11.5 - parent: 12 - uid: 9819 components: - type: Transform @@ -78704,11 +76983,6 @@ entities: - type: Transform pos: 14.5,7.5 parent: 12 - - uid: 26693 - components: - - type: Transform - pos: 61.5,8.5 - parent: 12 - uid: 27016 components: - type: Transform @@ -78724,11 +76998,6 @@ entities: - type: Transform pos: 27.5,16.5 parent: 12 - - uid: 28751 - components: - - type: Transform - pos: 62.5,-2.5 - parent: 12 - uid: 28840 components: - type: Transform @@ -78774,11 +77043,6 @@ entities: parent: 12 - proto: ClosetEmergencyN2FilledRandom entities: - - uid: 5121 - components: - - type: Transform - pos: 61.5,9.5 - parent: 12 - uid: 6198 components: - type: Transform @@ -79169,11 +77433,6 @@ entities: - type: Transform pos: -42.5,-53.5 parent: 12 - - uid: 2575 - components: - - type: Transform - pos: 45.5,-5.5 - parent: 12 - uid: 2973 components: - type: Transform @@ -79184,6 +77443,11 @@ entities: - type: Transform pos: -12.5,-3.5 parent: 12 + - uid: 5817 + components: + - type: Transform + pos: -48.5,52.5 + parent: 12 - uid: 6291 components: - type: Transform @@ -79238,6 +77502,16 @@ entities: - type: Transform pos: -25.5,-14.5 parent: 12 + - uid: 11279 + components: + - type: Transform + pos: 5.5,30.5 + parent: 12 + - uid: 11310 + components: + - type: Transform + pos: -4.5,-61.5 + parent: 12 - uid: 11472 components: - type: Transform @@ -79303,6 +77577,11 @@ entities: - type: Transform pos: -0.5,15.5 parent: 12 + - uid: 22146 + components: + - type: Transform + pos: 52.5,-7.5 + parent: 12 - uid: 24277 components: - type: Transform @@ -79456,21 +77735,11 @@ entities: - type: Transform pos: -33.5,-39.5 parent: 12 - - uid: 6259 - components: - - type: Transform - pos: 57.5,2.5 - parent: 12 - uid: 6771 components: - type: Transform pos: 29.5,-6.5 parent: 12 - - uid: 6774 - components: - - type: Transform - pos: 14.5,-14.5 - parent: 12 - uid: 17199 components: - type: Transform @@ -79486,26 +77755,6 @@ entities: - type: Transform pos: -47.5,-38.5 parent: 12 - - uid: 27218 - components: - - type: Transform - pos: 59.5,8.5 - parent: 12 - - uid: 28692 - components: - - type: Transform - pos: 52.5,0.5 - parent: 12 - - uid: 28693 - components: - - type: Transform - pos: 52.5,1.5 - parent: 12 - - uid: 28694 - components: - - type: Transform - pos: 52.5,2.5 - parent: 12 - proto: ClosetSteelBase entities: - uid: 16506 @@ -79574,6 +77823,12 @@ entities: parent: 12 - proto: ClosetWallEmergencyFilledRandom entities: + - uid: 7523 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-4.5 + parent: 12 - uid: 8883 components: - type: Transform @@ -79595,12 +77850,6 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,40.5 parent: 12 - - uid: 28494 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-2.5 - parent: 12 - proto: ClosetWallFireFilledRandom entities: - uid: 21378 @@ -79629,6 +77878,13 @@ entities: - type: Transform pos: 20.5,8.5 parent: 12 +- proto: ClosetWallMaintenanceFilledRandom + entities: + - uid: 22580 + components: + - type: Transform + pos: 47.5,-4.5 + parent: 12 - proto: ClothingBackpackSatchelGenetics entities: - uid: 2696 @@ -79693,8 +77949,7 @@ entities: - uid: 28711 components: - type: Transform - rot: -69.11503837897548 rad - pos: 57.532898,-6.47126 + pos: 52.389435,1.5120246 parent: 12 - proto: ClothingEyesBlindfold entities: @@ -80137,10 +78392,11 @@ entities: parent: 12 - proto: ClothingHeadsetMedicalScience entities: - - uid: 4042 + - uid: 5033 components: - type: Transform - pos: -21.531214,-29.412283 + rot: -119.380520836412 rad + pos: -19.723452,-30.617403 parent: 12 - proto: ClothingMaskBandBlue entities: @@ -80191,6 +78447,12 @@ entities: rot: -6.283185307179586 rad pos: 2.32486,-32.289738 parent: 12 + - uid: 10900 + components: + - type: Transform + rot: -119.380520836412 rad + pos: -19.545881,-30.396193 + parent: 12 - proto: ClothingMaskBreathMedicalSecurity entities: - uid: 31358 @@ -80215,11 +78477,6 @@ entities: parent: 12 - proto: ClothingMaskGasAtmos entities: - - uid: 7168 - components: - - type: Transform - pos: 37.736004,-32.38182 - parent: 12 - uid: 27188 components: - type: Transform @@ -80262,7 +78519,7 @@ entities: - uid: 18303 components: - type: Transform - pos: 54.553955,14.563015 + pos: -4.464142,51.52777 parent: 12 - proto: ClothingNeckCloakMiner entities: @@ -80462,6 +78719,11 @@ entities: rot: -6.283185307179586 rad pos: 42.74899,63.393394 parent: 12 + - uid: 11943 + components: + - type: Transform + pos: -4.4779925,21.516867 + parent: 12 - proto: ClothingOuterFlannelBlue entities: - uid: 30219 @@ -80552,11 +78814,6 @@ entities: - type: Transform pos: -20.351429,-7.5670047 parent: 12 - - uid: 22522 - components: - - type: Transform - pos: 5.585704,30.539377 - parent: 12 - proto: ClothingOuterSuitMonkey entities: - uid: 2751 @@ -80564,18 +78821,6 @@ entities: - type: Transform pos: -7.747349,-54.783165 parent: 12 -- proto: ClothingOuterVestHazard - entities: - - uid: 28761 - components: - - type: Transform - pos: 53.333237,-3.3827062 - parent: 12 - - uid: 28762 - components: - - type: Transform - pos: 53.708237,-3.6222892 - parent: 12 - proto: ClothingOuterWinterChef entities: - uid: 24081 @@ -80703,7 +78948,8 @@ entities: - uid: 29984 components: - type: Transform - pos: 47.687027,-3.4254918 + rot: -12.566370614359172 rad + pos: -0.27628815,17.396 parent: 12 - proto: ClothingUniformJumpskirtBlueElegantDress entities: @@ -80833,12 +79079,6 @@ entities: rot: -1.5707963267948966 rad pos: 35.5,-41.5 parent: 12 - - uid: 4898 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-30.5 - parent: 12 - uid: 4899 components: - type: Transform @@ -80891,6 +79131,12 @@ entities: rot: 1.5707963267948966 rad pos: 49.5,16.5 parent: 12 + - uid: 16376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,17.5 + parent: 12 - uid: 24997 components: - type: Transform @@ -80941,12 +79187,6 @@ entities: rot: 1.5707963267948966 rad pos: -22.5,31.5 parent: 12 - - uid: 25027 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,17.5 - parent: 12 - uid: 25028 components: - type: Transform @@ -81089,6 +79329,11 @@ entities: parent: 12 - proto: ComfyChair entities: + - uid: 887 + components: + - type: Transform + pos: -22.5,-33.5 + parent: 12 - uid: 2526 components: - type: Transform @@ -81146,12 +79391,6 @@ entities: rot: 1.5707963267948966 rad pos: 18.5,30.5 parent: 12 - - uid: 15669 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,19.5 - parent: 12 - uid: 17595 components: - type: Transform @@ -81336,13 +79575,24 @@ entities: - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver - proto: computerBodyScanner entities: - - uid: 1813 + - uid: 10977 components: - type: Transform - pos: -22.5,-27.5 + pos: -20.5,-27.5 parent: 12 - proto: ComputerBroken entities: + - uid: 2305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,20.5 + parent: 12 + - uid: 3691 + components: + - type: Transform + pos: -4.5,22.5 + parent: 12 - uid: 12230 components: - type: Transform @@ -81576,17 +79826,17 @@ entities: parent: 12 - proto: ComputerPowerMonitoring entities: - - uid: 3912 + - uid: 526 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,27.5 + rot: 3.141592653589793 rad + pos: 56.5,-5.5 parent: 12 - - uid: 4387 + - uid: 3912 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-6.5 + rot: 1.5707963267948966 rad + pos: -49.5,27.5 parent: 12 - uid: 4732 components: @@ -81605,6 +79855,12 @@ entities: rot: 3.141592653589793 rad pos: 31.5,-4.5 parent: 12 + - uid: 6325 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,20.5 + parent: 12 - uid: 6685 components: - type: Transform @@ -81696,11 +79952,11 @@ entities: parent: 12 - proto: ComputerRoboticsControl entities: - - uid: 12138 + - uid: 12683 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-30.5 + rot: -1.5707963267948966 rad + pos: -23.5,-28.5 parent: 12 - proto: ComputerSalvageExpedition entities: @@ -81719,6 +79975,12 @@ entities: parent: 12 - proto: ComputerSolarControl entities: + - uid: 499 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,-5.5 + parent: 12 - uid: 9217 components: - type: Transform @@ -81735,12 +79997,6 @@ entities: - type: Transform pos: 34.5,67.5 parent: 12 - - uid: 15446 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-6.5 - parent: 12 - uid: 18157 components: - type: Transform @@ -81865,11 +80121,6 @@ entities: - type: Transform pos: 29.5,27.5 parent: 12 - - uid: 15666 - components: - - type: Transform - pos: -3.5,21.5 - parent: 12 - uid: 15805 components: - type: Transform @@ -81909,46 +80160,29 @@ entities: - type: Transform pos: -19.5,-0.5 parent: 12 -- proto: ContainmentFieldGenerator +- proto: ContainmentFieldGeneratorFlatpack entities: - - uid: 4631 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,8.5 - parent: 12 - - uid: 4633 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 76.5,8.5 - parent: 12 - - uid: 4716 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 76.5,0.5 - parent: 12 - - uid: 11469 + - uid: 2920 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,0.5 - parent: 12 -- proto: ContainmentFieldGeneratorFlatpack - entities: - - uid: 9978 + parent: 2918 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2923 components: - type: Transform - rot: -6.283185307179586 rad - pos: 62.353416,-0.30162263 - parent: 12 - - uid: 10284 + parent: 2918 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2929 components: - type: Transform - rot: -6.283185307179586 rad - pos: 62.62883,-0.55167043 - parent: 12 + parent: 2918 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ConveyorBelt entities: - uid: 2489 @@ -82603,10 +80837,10 @@ entities: parent: 12 - proto: CrateContrabandStorageSecure entities: - - uid: 27117 + - uid: 19457 components: - type: Transform - pos: -37.5,68.5 + pos: -35.5,68.5 parent: 12 - proto: CrateEmergencyExplosive entities: @@ -82736,6 +80970,82 @@ entities: showEnts: False occludes: True ent: null +- proto: CrateEngineeringSingularityContainment + entities: + - uid: 2918 + components: + - type: Transform + pos: 58.5,12.5 + parent: 12 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 2920 + - 2923 + - 2929 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateEngineeringSingularityEmitter + entities: + - uid: 5883 + components: + - type: Transform + pos: 57.5,12.5 + parent: 12 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 5888 + - 5886 + - 5885 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: CrateEngineeringToolbox entities: - uid: 9254 @@ -82827,6 +81137,11 @@ entities: - 0 - 0 - 0 + - uid: 11064 + components: + - type: Transform + pos: -20.5,-30.5 + parent: 12 - uid: 15403 components: - type: Transform @@ -82994,13 +81309,6 @@ entities: - type: Transform pos: -56.5,24.5 parent: 12 -- proto: CrateRadiation - entities: - - uid: 11553 - components: - - type: Transform - pos: 57.5,12.5 - parent: 12 - proto: CrateSecure entities: - uid: 13231 @@ -83168,7 +81476,8 @@ entities: - uid: 29985 components: - type: Transform - pos: 47.436977,-3.6918468 + rot: -12.566370614359172 rad + pos: -0.6350524,17.341604 parent: 12 - proto: Crematorium entities: @@ -83915,13 +82224,6 @@ entities: - type: Transform pos: 40.5,-38.5 parent: 12 -- proto: DefaultStationBeaconTEG - entities: - - uid: 19542 - components: - - type: Transform - pos: 10.5,17.5 - parent: 12 - proto: DefaultStationBeaconTelecoms entities: - uid: 21869 @@ -84027,6 +82329,18 @@ entities: - type: Transform pos: -30.5,41.5 parent: 12 +- proto: DeskBell + entities: + - uid: 16520 + components: + - type: Transform + pos: 27.517546,53.33378 + parent: 12 + - uid: 19350 + components: + - type: Transform + pos: -18.443525,-21.50596 + parent: 12 - proto: DiseaseDiagnoser entities: - uid: 2774 @@ -84084,6 +82398,11 @@ entities: rot: 1.5707963267948966 rad pos: -30.5,-24.5 parent: 12 + - uid: 2900 + components: + - type: Transform + pos: 51.5,-5.5 + parent: 12 - uid: 3620 components: - type: Transform @@ -84166,6 +82485,11 @@ entities: rot: 3.141592653589793 rad pos: -16.5,-27.5 parent: 12 + - uid: 4039 + components: + - type: Transform + pos: 21.5,20.5 + parent: 12 - uid: 4136 components: - type: Transform @@ -84314,6 +82638,12 @@ entities: rot: -1.5707963267948966 rad pos: 58.5,-40.5 parent: 12 + - uid: 8474 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,-8.5 + parent: 12 - uid: 8903 components: - type: Transform @@ -84338,6 +82668,28 @@ entities: rot: 1.5707963267948966 rad pos: 40.5,-0.5 parent: 12 + - uid: 9457 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,28.5 + parent: 12 + - uid: 9527 + components: + - type: Transform + pos: 16.5,28.5 + parent: 12 + - uid: 9623 + components: + - type: Transform + pos: 18.5,24.5 + parent: 12 + - uid: 9670 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,24.5 + parent: 12 - uid: 9674 components: - type: Transform @@ -84520,11 +82872,6 @@ entities: - type: Transform pos: 44.5,21.5 parent: 12 - - uid: 12577 - components: - - type: Transform - pos: 21.5,19.5 - parent: 12 - uid: 12664 components: - type: Transform @@ -84535,17 +82882,6 @@ entities: - type: Transform pos: 38.5,28.5 parent: 12 - - uid: 12672 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,19.5 - parent: 12 - - uid: 12673 - components: - - type: Transform - pos: 20.5,20.5 - parent: 12 - uid: 12677 components: - type: Transform @@ -84734,6 +83070,12 @@ entities: rot: 3.141592653589793 rad pos: -47.5,28.5 parent: 12 + - uid: 17773 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-30.5 + parent: 12 - uid: 18671 components: - type: Transform @@ -84758,6 +83100,12 @@ entities: rot: -1.5707963267948966 rad pos: 22.5,9.5 parent: 12 + - uid: 19819 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-5.5 + parent: 12 - uid: 20076 components: - type: Transform @@ -85132,12 +83480,6 @@ entities: rot: 3.141592653589793 rad pos: 30.5,0.5 parent: 12 - - uid: 27308 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-4.5 - parent: 12 - uid: 27387 components: - type: Transform @@ -85232,17 +83574,6 @@ entities: rot: -1.5707963267948966 rad pos: 40.5,-1.5 parent: 12 - - uid: 29031 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,23.5 - parent: 12 - - uid: 29032 - components: - - type: Transform - pos: 18.5,23.5 - parent: 12 - uid: 29033 components: - type: Transform @@ -85426,12 +83757,6 @@ entities: rot: 1.5707963267948966 rad pos: -31.5,-27.5 parent: 12 - - uid: 1927 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-24.5 - parent: 12 - uid: 3840 components: - type: Transform @@ -85832,12 +84157,24 @@ entities: rot: -1.5707963267948966 rad pos: -36.5,-34.5 parent: 12 + - uid: 908 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,28.5 + parent: 12 - uid: 910 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,7.5 parent: 12 + - uid: 1055 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,28.5 + parent: 12 - uid: 1084 components: - type: Transform @@ -86068,26 +84405,6 @@ entities: rot: 3.141592653589793 rad pos: -42.5,-28.5 parent: 12 - - uid: 1915 - components: - - type: Transform - pos: -26.5,-28.5 - parent: 12 - - uid: 1916 - components: - - type: Transform - pos: -26.5,-27.5 - parent: 12 - - uid: 1917 - components: - - type: Transform - pos: -26.5,-26.5 - parent: 12 - - uid: 1918 - components: - - type: Transform - pos: -26.5,-25.5 - parent: 12 - uid: 1920 components: - type: Transform @@ -86130,6 +84447,12 @@ entities: rot: 3.141592653589793 rad pos: -27.5,-23.5 parent: 12 + - uid: 1927 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,28.5 + parent: 12 - uid: 1928 components: - type: Transform @@ -86207,6 +84530,12 @@ entities: rot: 3.141592653589793 rad pos: 30.5,3.5 parent: 12 + - uid: 3033 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-4.5 + parent: 12 - uid: 3115 components: - type: Transform @@ -86631,6 +84960,12 @@ entities: rot: 1.5707963267948966 rad pos: 53.5,49.5 parent: 12 + - uid: 4077 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,28.5 + parent: 12 - uid: 4133 components: - type: Transform @@ -86751,6 +85086,11 @@ entities: rot: -1.5707963267948966 rad pos: 32.5,-26.5 parent: 12 + - uid: 4754 + components: + - type: Transform + pos: 16.5,25.5 + parent: 12 - uid: 4760 components: - type: Transform @@ -86822,6 +85162,12 @@ entities: - type: Transform pos: 20.5,-13.5 parent: 12 + - uid: 5127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-5.5 + parent: 12 - uid: 5323 components: - type: Transform @@ -87100,6 +85446,12 @@ entities: rot: 3.141592653589793 rad pos: 21.5,-28.5 parent: 12 + - uid: 7170 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,28.5 + parent: 12 - uid: 7219 components: - type: Transform @@ -87154,6 +85506,12 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,-26.5 parent: 12 + - uid: 7555 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,28.5 + parent: 12 - uid: 8286 components: - type: Transform @@ -87655,12 +86013,6 @@ entities: rot: 3.141592653589793 rad pos: 48.5,-15.5 parent: 12 - - uid: 9041 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-4.5 - parent: 12 - uid: 9258 components: - type: Transform @@ -87829,6 +86181,82 @@ entities: rot: -1.5707963267948966 rad pos: -14.5,-27.5 parent: 12 + - uid: 9411 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,19.5 + parent: 12 + - uid: 9432 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-24.5 + parent: 12 + - uid: 9450 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,9.5 + parent: 12 + - uid: 9451 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,9.5 + parent: 12 + - uid: 9453 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,9.5 + parent: 12 + - uid: 9454 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,9.5 + parent: 12 + - uid: 9468 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,28.5 + parent: 12 + - uid: 9481 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,24.5 + parent: 12 + - uid: 9491 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,28.5 + parent: 12 + - uid: 9501 + components: + - type: Transform + pos: 18.5,23.5 + parent: 12 + - uid: 9502 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,28.5 + parent: 12 + - uid: 9520 + components: + - type: Transform + pos: 16.5,27.5 + parent: 12 + - uid: 9529 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,28.5 + parent: 12 - uid: 9611 components: - type: Transform @@ -87846,6 +86274,12 @@ entities: rot: 1.5707963267948966 rad pos: 31.5,54.5 parent: 12 + - uid: 9731 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,9.5 + parent: 12 - uid: 9774 components: - type: Transform @@ -87959,6 +86393,11 @@ entities: rot: 3.141592653589793 rad pos: 23.5,-26.5 parent: 12 + - uid: 9995 + components: + - type: Transform + pos: 16.5,26.5 + parent: 12 - uid: 10255 components: - type: Transform @@ -88138,6 +86577,36 @@ entities: rot: -1.5707963267948966 rad pos: -24.5,-3.5 parent: 12 + - uid: 10618 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-5.5 + parent: 12 + - uid: 10628 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-5.5 + parent: 12 + - uid: 10634 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-5.5 + parent: 12 + - uid: 10637 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-5.5 + parent: 12 + - uid: 10701 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,28.5 + parent: 12 - uid: 10825 components: - type: Transform @@ -88233,36 +86702,6 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,9.5 parent: 12 - - uid: 10966 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,9.5 - parent: 12 - - uid: 10967 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,9.5 - parent: 12 - - uid: 10968 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,9.5 - parent: 12 - - uid: 10969 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,9.5 - parent: 12 - - uid: 10970 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,9.5 - parent: 12 - uid: 10971 components: - type: Transform @@ -88378,6 +86817,12 @@ entities: rot: 1.5707963267948966 rad pos: 22.5,-17.5 parent: 12 + - uid: 11281 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,-7.5 + parent: 12 - uid: 11398 components: - type: Transform @@ -88401,6 +86846,12 @@ entities: rot: 1.5707963267948966 rad pos: 36.5,11.5 parent: 12 + - uid: 11477 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-5.5 + parent: 12 - uid: 11492 components: - type: Transform @@ -88700,31 +87151,6 @@ entities: - type: Transform pos: 4.5,29.5 parent: 12 - - uid: 12681 - components: - - type: Transform - pos: 4.5,28.5 - parent: 12 - - uid: 12682 - components: - - type: Transform - pos: 4.5,27.5 - parent: 12 - - uid: 12683 - components: - - type: Transform - pos: 4.5,26.5 - parent: 12 - - uid: 12684 - components: - - type: Transform - pos: 4.5,25.5 - parent: 12 - - uid: 12685 - components: - - type: Transform - pos: 4.5,24.5 - parent: 12 - uid: 12700 components: - type: Transform @@ -90171,6 +88597,12 @@ entities: rot: 3.141592653589793 rad pos: 43.5,-23.5 parent: 12 + - uid: 19428 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,20.5 + parent: 12 - uid: 19539 components: - type: Transform @@ -90183,6 +88615,12 @@ entities: rot: 3.141592653589793 rad pos: 42.5,-2.5 parent: 12 + - uid: 19815 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,-6.5 + parent: 12 - uid: 19843 components: - type: Transform @@ -90397,6 +88835,12 @@ entities: rot: 1.5707963267948966 rad pos: -15.5,44.5 parent: 12 + - uid: 20187 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,-8.5 + parent: 12 - uid: 20188 components: - type: Transform @@ -90980,6 +89424,12 @@ entities: rot: 3.141592653589793 rad pos: -35.5,41.5 parent: 12 + - uid: 20562 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-8.5 + parent: 12 - uid: 20885 components: - type: Transform @@ -91204,6 +89654,12 @@ entities: - type: Transform pos: -9.5,45.5 parent: 12 + - uid: 22537 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-5.5 + parent: 12 - uid: 22546 components: - type: Transform @@ -91756,6 +90212,18 @@ entities: rot: -1.5707963267948966 rad pos: 38.5,-26.5 parent: 12 + - uid: 23141 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-8.5 + parent: 12 + - uid: 23142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-8.5 + parent: 12 - uid: 23425 components: - type: Transform @@ -93116,84 +91584,6 @@ entities: - type: Transform pos: 18.5,22.5 parent: 12 - - uid: 29018 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,23.5 - parent: 12 - - uid: 29019 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,23.5 - parent: 12 - - uid: 29020 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,23.5 - parent: 12 - - uid: 29021 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,23.5 - parent: 12 - - uid: 29022 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,23.5 - parent: 12 - - uid: 29023 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,23.5 - parent: 12 - - uid: 29024 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,23.5 - parent: 12 - - uid: 29025 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,23.5 - parent: 12 - - uid: 29026 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,23.5 - parent: 12 - - uid: 29027 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,23.5 - parent: 12 - - uid: 29028 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,23.5 - parent: 12 - - uid: 29029 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,23.5 - parent: 12 - - uid: 29030 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,23.5 - parent: 12 - uid: 29099 components: - type: Transform @@ -93383,36 +91773,6 @@ entities: rot: -1.5707963267948966 rad pos: 29.5,-16.5 parent: 12 - - uid: 29371 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-14.5 - parent: 12 - - uid: 29373 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-13.5 - parent: 12 - - uid: 29374 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-12.5 - parent: 12 - - uid: 29375 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-11.5 - parent: 12 - - uid: 29376 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-10.5 - parent: 12 - uid: 29377 components: - type: Transform @@ -94058,6 +92418,12 @@ entities: parent: 12 - proto: DisposalPipeBroken entities: + - uid: 2704 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-31.5 + parent: 12 - uid: 4901 components: - type: Transform @@ -94177,12 +92543,6 @@ entities: rot: 3.141592653589793 rad pos: -42.5,-39.5 parent: 12 - - uid: 1856 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-29.5 - parent: 12 - uid: 1857 components: - type: Transform @@ -94199,6 +92559,12 @@ entities: - type: Transform pos: -27.5,-18.5 parent: 12 + - uid: 2031 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-30.5 + parent: 12 - uid: 3387 components: - type: Transform @@ -94344,12 +92710,6 @@ entities: rot: 1.5707963267948966 rad pos: -21.5,-21.5 parent: 12 - - uid: 9077 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-4.5 - parent: 12 - uid: 9111 components: - type: Transform @@ -94385,6 +92745,12 @@ entities: rot: -1.5707963267948966 rad pos: -26.5,-2.5 parent: 12 + - uid: 10915 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-8.5 + parent: 12 - uid: 12285 components: - type: Transform @@ -94708,11 +93074,6 @@ entities: - type: Transform pos: -27.5,-18.5 parent: 12 - - uid: 1850 - components: - - type: Transform - pos: -26.5,-29.5 - parent: 12 - uid: 1851 components: - type: Transform @@ -94783,6 +93144,11 @@ entities: - type: Transform pos: -23.5,52.5 parent: 12 + - uid: 5110 + components: + - type: Transform + pos: 56.5,-8.5 + parent: 12 - uid: 6203 components: - type: Transform @@ -94803,11 +93169,6 @@ entities: - type: Transform pos: 55.5,6.5 parent: 12 - - uid: 7794 - components: - - type: Transform - pos: 45.5,-4.5 - parent: 12 - uid: 8346 components: - type: Transform @@ -95573,6 +93934,25 @@ entities: rot: -12.566370614359172 rad pos: 57.68418,56.94676 parent: 12 +- proto: DrinkMopwataBottleRandom + entities: + - uid: 2120 + components: + - type: Transform + pos: 34.4878,-30.348785 + parent: 12 + - uid: 25532 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: 38.32821,-31.26264 + parent: 12 + - uid: 25534 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: 38.66251,-31.572699 + parent: 12 - proto: DrinkMugBlue entities: - uid: 30236 @@ -95778,7 +94158,8 @@ entities: - uid: 27129 components: - type: Transform - pos: 51.402184,-9.558559 + rot: -6.283185307179586 rad + pos: 27.46012,19.431234 parent: 12 - type: GasTank toggleActionEntity: 27130 @@ -95790,6 +94171,17 @@ entities: - 27130 - proto: EmergencyLight entities: + - uid: 11 + components: + - type: Transform + pos: 60.5,12.5 + parent: 12 + - uid: 274 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-4.5 + parent: 12 - uid: 345 components: - type: Transform @@ -96412,6 +94804,11 @@ entities: - type: Transform pos: -32.5,30.5 parent: 12 + - uid: 22336 + components: + - type: Transform + pos: 47.5,-0.5 + parent: 12 - uid: 25296 components: - type: Transform @@ -96590,18 +94987,6 @@ entities: rot: -1.5707963267948966 rad pos: 31.5,4.5 parent: 12 - - uid: 30454 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-1.5 - parent: 12 - - uid: 30457 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-6.5 - parent: 12 - uid: 30468 components: - type: Transform @@ -96613,17 +94998,6 @@ entities: rot: 3.141592653589793 rad pos: 52.5,4.5 parent: 12 - - uid: 30489 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,10.5 - parent: 12 - - uid: 30491 - components: - - type: Transform - pos: 72.5,12.5 - parent: 12 - uid: 30988 components: - type: Transform @@ -96648,23 +95022,6 @@ entities: rot: 1.5707963267948966 rad pos: 32.5,14.5 parent: 12 - - uid: 31511 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,4.5 - parent: 12 - - uid: 31512 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,-3.5 - parent: 12 - - uid: 31513 - components: - - type: Transform - pos: 61.5,6.5 - parent: 12 - uid: 31514 components: - type: Transform @@ -96708,68 +95065,29 @@ entities: - type: Transform pos: -23.471848,-42.228195 parent: 12 -- proto: Emitter +- proto: EmitterFlatpack entities: - - uid: 3019 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,8.5 - parent: 12 - - uid: 8420 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,0.5 - parent: 12 - - uid: 8435 - components: - - type: Transform - pos: 68.5,12.5 - parent: 12 - - uid: 8972 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,-3.5 - parent: 12 - - uid: 9169 - components: - - type: Transform - pos: 76.5,12.5 - parent: 12 - - uid: 9174 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,-3.5 - parent: 12 - - uid: 9222 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,0.5 - parent: 12 - - uid: 9409 + - uid: 5885 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,8.5 - parent: 12 -- proto: EmitterFlatpack - entities: - - uid: 9994 + parent: 5883 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5886 components: - type: Transform - rot: -6.283185307179586 rad - pos: 61.784466,-0.28712702 - parent: 12 - - uid: 9995 + parent: 5883 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5888 components: - type: Transform - rot: -6.283185307179586 rad - pos: 61.991028,-0.5770376 - parent: 12 + parent: 5883 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: EncryptionKeyCommon entities: - uid: 22253 @@ -96800,10 +95118,10 @@ entities: parent: 12 - proto: ExosuitFabricator entities: - - uid: 1783 + - uid: 12356 components: - type: Transform - pos: -23.5,-29.5 + pos: -25.5,-31.5 parent: 12 - proto: ExtendedEmergencyNitrogenTankFilled entities: @@ -97133,6 +95451,14 @@ entities: - type: FaxMachine name: Cargo destinationAddress: Cargo + - uid: 11206 + components: + - type: Transform + pos: -23.5,-39.5 + parent: 12 + - type: FaxMachine + name: Medical + destinationAddress: Medical - uid: 13313 components: - type: Transform @@ -97181,14 +95507,6 @@ entities: - type: FaxMachine name: Court destinationAddress: Court - - uid: 26276 - components: - - type: Transform - pos: -18.5,-38.5 - parent: 12 - - type: FaxMachine - name: Medical - destinationAddress: Medical - uid: 26277 components: - type: Transform @@ -97670,11 +95988,6 @@ entities: - type: Transform pos: -28.658644,23.554457 parent: 12 - - uid: 23664 - components: - - type: Transform - pos: 49.010647,46.51752 - parent: 12 - proto: FireExtinguisherMini entities: - uid: 29005 @@ -98027,16 +96340,7 @@ entities: - type: DeviceNetwork deviceLists: - 27311 - - 27314 - - uid: 2021 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-3.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 27311 + - 9142 - uid: 2034 components: - type: Transform @@ -98137,6 +96441,7 @@ entities: deviceLists: - 23931 - 9972 + - 5098 - uid: 2084 components: - type: Transform @@ -98179,16 +96484,14 @@ entities: - type: DeviceNetwork deviceLists: - 7342 - - uid: 2359 + - uid: 2516 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,7.5 + pos: 4.5,21.5 parent: 12 - type: DeviceNetwork deviceLists: - - 27314 - - 27313 + - 12273 - uid: 2613 components: - type: Transform @@ -98240,14 +96543,6 @@ entities: - type: Transform pos: 9.5,-42.5 parent: 12 - - uid: 3954 - components: - - type: Transform - pos: 6.5,12.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 31894 - uid: 3986 components: - type: Transform @@ -98475,6 +96770,15 @@ entities: deviceLists: - 7342 - 32066 + - uid: 5030 + components: + - type: Transform + pos: -22.5,-29.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 5098 + - 5109 - uid: 5232 components: - type: Transform @@ -98569,6 +96873,14 @@ entities: deviceLists: - 23937 - 2852 + - uid: 6735 + components: + - type: Transform + pos: 0.5,16.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 12273 - uid: 6783 components: - type: Transform @@ -99074,6 +97386,15 @@ entities: deviceLists: - 2614 - 28360 + - uid: 9482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,-9.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 28373 - uid: 9513 components: - type: Transform @@ -99150,6 +97471,14 @@ entities: deviceLists: - 448 - 4906 + - uid: 11314 + components: + - type: Transform + pos: -21.5,-32.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 5109 - uid: 11460 components: - type: Transform @@ -99165,12 +97494,6 @@ entities: - type: Transform pos: -49.5,65.5 parent: 12 - - uid: 11633 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,29.5 - parent: 12 - uid: 11858 components: - type: Transform @@ -100650,6 +98973,14 @@ entities: rot: 1.5707963267948966 rad pos: -58.5,-18.5 parent: 12 + - uid: 22142 + components: + - type: Transform + pos: 53.5,-6.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 27311 - uid: 22246 components: - type: Transform @@ -101149,24 +99480,6 @@ entities: - type: DeviceNetwork deviceLists: - 27296 - - uid: 27309 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,11.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 27313 - - uid: 27310 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,7.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 27314 - uid: 27449 components: - type: Transform @@ -101306,22 +99619,11 @@ entities: - type: DeviceNetwork deviceLists: - 9972 - - uid: 29870 - components: - - type: Transform - pos: 7.5,20.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 31894 - uid: 29872 components: - type: Transform pos: 15.5,13.5 parent: 12 - - type: DeviceNetwork - deviceLists: - - 31894 - uid: 29981 components: - type: Transform @@ -101698,6 +100000,13 @@ entities: parent: 12 - type: Fixtures fixtures: {} + - uid: 11212 + components: + - type: Transform + pos: -20.5,-29.5 + parent: 12 + - type: Fixtures + fixtures: {} - uid: 11948 components: - type: Transform @@ -101743,14 +100052,6 @@ entities: parent: 12 - type: Fixtures fixtures: {} - - uid: 25136 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-28.5 - parent: 12 - - type: Fixtures - fixtures: {} - uid: 25986 components: - type: Transform @@ -102154,8 +100455,8 @@ entities: - uid: 24446 components: - type: Transform - rot: -12.566370614359172 rad - pos: 55.57415,5.497829 + rot: -6.283185307179586 rad + pos: 55.676666,5.3604836 parent: 12 - proto: FoodBoxDonkpocketStonk entities: @@ -102179,6 +100480,11 @@ entities: parent: 12 - proto: FoodBreadMoldySlice entities: + - uid: 3240 + components: + - type: Transform + pos: -3.51239,22.532377 + parent: 12 - uid: 31123 components: - type: Transform @@ -102552,6 +100858,11 @@ entities: parent: 12 - proto: FoodPlateSmallTrash entities: + - uid: 2664 + components: + - type: Transform + pos: -3.5,22.5 + parent: 12 - uid: 31120 components: - type: Transform @@ -102645,6 +100956,11 @@ entities: parent: 12 - proto: FoodTinPeachesMaint entities: + - uid: 19822 + components: + - type: Transform + pos: 50.425446,1.6118504 + parent: 12 - uid: 21597 components: - type: Transform @@ -102736,11 +101052,6 @@ entities: - type: Transform pos: 33.83867,-19.804056 parent: 12 - - uid: 7163 - components: - - type: Transform - pos: 37.752647,-30.522448 - parent: 12 - proto: GasFilter entities: - uid: 2802 @@ -102754,18 +101065,6 @@ entities: - type: Transform pos: -47.5,44.5 parent: 12 -- proto: GasFilterFlipped - entities: - - uid: 7154 - components: - - type: MetaData - name: waste gas filter - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-32.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - proto: GasMinerCarbonDioxide entities: - uid: 5478 @@ -102808,16 +101107,6 @@ entities: rot: 3.141592653589793 rad pos: 1.5,-19.5 parent: 12 - - uid: 19563 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,15.5 - parent: 12 - - type: GasMixer - targetPressure: 4500 - - type: AtmosPipeColor - color: '#FFA500FF' - uid: 21523 components: - type: Transform @@ -102826,18 +101115,6 @@ entities: parent: 12 - proto: GasMixerFlipped entities: - - uid: 7150 - components: - - type: MetaData - name: air gas mixer - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-31.5 - parent: 12 - - type: GasMixer - inletTwoConcentration: 0.22000003 - inletOneConcentration: 0.78 - targetPressure: 4500 - uid: 18248 components: - type: Transform @@ -102922,14 +101199,16 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,3.5 parent: 12 - - uid: 12686 + - uid: 11205 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,15.5 + pos: 9.5,21.5 + parent: 12 + - uid: 11285 + components: + - type: Transform + pos: 16.5,21.5 parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - uid: 19263 components: - type: Transform @@ -102937,6 +101216,16 @@ entities: parent: 12 - proto: GasPassiveVent entities: + - uid: 1705 + components: + - type: Transform + pos: 6.5,21.5 + parent: 12 + - uid: 1717 + components: + - type: Transform + pos: 13.5,21.5 + parent: 12 - uid: 2257 components: - type: Transform @@ -102987,14 +101276,12 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 6732 + - uid: 7131 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-61.5 + rot: -1.5707963267948966 rad + pos: -0.5,19.5 parent: 12 - - type: AtmosPipeColor - color: '#5D782EFF' - uid: 7255 components: - type: Transform @@ -103240,6 +101527,13 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 1779 + components: + - type: Transform + pos: 16.5,28.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2086 components: - type: Transform @@ -103259,14 +101553,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2508 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#00FFFFFF' - uid: 2631 components: - type: Transform @@ -103282,6 +101568,29 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 2690 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,5.5 + parent: 12 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 2733 + components: + - type: Transform + pos: 12.5,5.5 + parent: 12 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 2734 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-0.5 + parent: 12 + - type: AtmosPipeColor + color: '#947507FF' - uid: 2758 components: - type: Transform @@ -103382,7 +101691,7 @@ entities: pos: -12.5,-59.5 parent: 12 - type: AtmosPipeColor - color: '#5D782EFF' + color: '#947507FF' - uid: 3544 components: - type: Transform @@ -103509,22 +101818,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 3691 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 3702 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - uid: 3720 components: - type: Transform @@ -103636,14 +101929,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 4528 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-3.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 4589 components: - type: Transform @@ -103714,6 +101999,21 @@ entities: - type: Transform pos: -45.5,-18.5 parent: 12 + - uid: 5158 + components: + - type: Transform + pos: -20.5,-29.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5187 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-30.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5219 components: - type: Transform @@ -103785,13 +102085,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5420 + - uid: 5417 components: - type: Transform - pos: 8.5,11.5 + rot: 3.141592653589793 rad + pos: 3.5,7.5 parent: 12 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#947507FF' - uid: 5427 components: - type: Transform @@ -103848,6 +102149,13 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 5815 + components: + - type: Transform + pos: 6.5,7.5 + parent: 12 + - type: AtmosPipeColor + color: '#947507FF' - uid: 6220 components: - type: Transform @@ -103900,31 +102208,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7151 + - uid: 7168 components: - type: Transform - pos: 38.5,-30.5 + rot: 3.141592653589793 rad + pos: 16.5,24.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7153 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-32.5 - parent: 12 - - uid: 7155 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-32.5 - parent: 12 - - uid: 7160 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-32.5 - parent: 12 - uid: 7189 components: - type: Transform @@ -104126,14 +102417,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 8713 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-13.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 8793 components: - type: Transform @@ -104155,6 +102438,14 @@ entities: - type: Transform pos: 25.5,2.5 parent: 12 + - uid: 9090 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,-13.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 9128 components: - type: Transform @@ -104171,35 +102462,33 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9509 + - uid: 9414 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-47.5 + pos: 18.5,24.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9511 + - uid: 9456 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-24.5 + pos: 1.5,9.5 parent: 12 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9529 + color: '#990000FF' + - uid: 9509 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,9.5 + rot: -1.5707963267948966 rad + pos: 10.5,-47.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9536 + - uid: 9511 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,11.5 + rot: -1.5707963267948966 rad + pos: 43.5,-24.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' @@ -104211,14 +102500,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9603 + - uid: 9621 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,14.5 + pos: 1.5,9.5 parent: 12 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0055CCFF' - uid: 9626 components: - type: Transform @@ -104226,14 +102515,13 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9636 + - uid: 9627 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,17.5 + pos: 21.5,20.5 parent: 12 - type: AtmosPipeColor - color: '#00FFFFFF' + color: '#0055CCFF' - uid: 9755 components: - type: Transform @@ -104242,6 +102530,13 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 9855 + components: + - type: Transform + pos: 61.5,2.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 9860 components: - type: Transform @@ -104294,26 +102589,26 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 10873 + - uid: 10346 components: - type: Transform - pos: 22.5,-14.5 + rot: -1.5707963267948966 rad + pos: -5.5,-59.5 parent: 12 - type: AtmosPipeColor - color: '#990000FF' - - uid: 10890 + color: '#947507FF' + - uid: 10376 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,17.5 + rot: 1.5707963267948966 rad + pos: 57.5,5.5 parent: 12 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 10900 + color: '#990000FF' + - uid: 10873 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,0.5 + pos: 22.5,-14.5 parent: 12 - type: AtmosPipeColor color: '#990000FF' @@ -104356,29 +102651,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11279 - components: - - type: Transform - pos: 18.5,16.5 - parent: 12 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11307 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,14.5 - parent: 12 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11326 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,19.5 - parent: 12 - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 11473 components: - type: Transform @@ -104402,14 +102674,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 12671 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,23.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 12728 components: - type: Transform @@ -104538,6 +102802,22 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 12931 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,20.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13011 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,20.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 13104 components: - type: Transform @@ -104661,6 +102941,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 15007 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,1.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 15413 components: - type: Transform @@ -104966,22 +103254,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 19461 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,6.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19560 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,15.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - uid: 19964 components: - type: Transform @@ -105186,13 +103458,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 22289 - components: - - type: Transform - pos: 1.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 22316 components: - type: Transform @@ -105440,21 +103705,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23125 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-8.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23133 - components: - - type: Transform - pos: 61.5,-8.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 23135 components: - type: Transform @@ -105463,28 +103713,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23170 - components: - - type: Transform - pos: 21.5,19.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23171 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,19.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23172 - components: - - type: Transform - pos: 20.5,20.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 23194 components: - type: Transform @@ -105763,14 +103991,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26202 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,16.5 - parent: 12 - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 26253 components: - type: Transform @@ -105809,14 +104029,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26438 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - uid: 26442 components: - type: Transform @@ -105825,30 +104037,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 26784 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,2.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26810 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 26948 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,1.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 26985 components: - type: Transform @@ -105864,36 +104052,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 27014 - components: - - type: Transform - pos: 52.5,-3.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 27015 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-3.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 27219 - components: - - type: Transform - pos: 11.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 27224 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,25.5 - parent: 12 - - type: AtmosPipeColor - color: '#00FFFFFF' - uid: 27273 components: - type: Transform @@ -105957,20 +104115,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 28828 - components: - - type: Transform - pos: 57.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 29052 - components: - - type: Transform - pos: 18.5,23.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 29053 components: - type: Transform @@ -105979,37 +104123,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 29144 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-8.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29145 - components: - - type: Transform - pos: 51.5,-5.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29146 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-5.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29151 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-8.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 29260 components: - type: Transform @@ -106591,6 +104704,14 @@ entities: - type: Transform pos: -42.5,-45.5 parent: 12 + - uid: 1056 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,28.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 1093 components: - type: Transform @@ -107751,6 +105872,38 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 1776 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,28.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1809 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,28.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1811 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,9.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1812 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,9.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 1860 components: - type: Transform @@ -107759,6 +105912,22 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 1983 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,28.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1984 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,28.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2072 components: - type: Transform @@ -107840,6 +106009,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 2359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,5.5 + parent: 12 + - type: AtmosPipeColor + color: '#947507FF' - uid: 2448 components: - type: Transform @@ -107855,20 +106032,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2516 - components: - - type: Transform - pos: 7.5,26.5 - parent: 12 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 2610 - components: - - type: Transform - pos: 7.5,27.5 - parent: 12 - - type: AtmosPipeColor - color: '#00FFFFFF' - uid: 2615 components: - type: Transform @@ -107885,6 +106048,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 2676 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,7.5 + parent: 12 + - type: AtmosPipeColor + color: '#947507FF' - uid: 2677 components: - type: Transform @@ -107893,6 +106064,20 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 2691 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,7.5 + parent: 12 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 2692 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,19.5 + parent: 12 - uid: 2697 components: - type: Transform @@ -107901,6 +106086,36 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 2720 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-1.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2735 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,20.5 + parent: 12 + - uid: 2767 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,-1.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2775 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-1.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 2806 components: - type: Transform @@ -107938,6 +106153,12 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 2859 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,19.5 + parent: 12 - uid: 2864 components: - type: Transform @@ -107946,6 +106167,12 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 2872 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,20.5 + parent: 12 - uid: 2885 components: - type: Transform @@ -107960,6 +106187,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 2902 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,-1.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 2906 components: - type: Transform @@ -107968,6 +106203,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 2907 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,-1.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 2955 components: - type: Transform @@ -107989,18 +106232,11 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 2977 + - uid: 3009 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 3003 - components: - - type: Transform - pos: 6.5,12.5 + pos: 2.5,20.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' @@ -108019,6 +106255,12 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 3018 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,19.5 + parent: 12 - uid: 3079 components: - type: Transform @@ -108042,6 +106284,20 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 3205 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,20.5 + parent: 12 + - uid: 3239 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,5.5 + parent: 12 + - type: AtmosPipeColor + color: '#947507FF' - uid: 3464 components: - type: Transform @@ -108050,6 +106306,12 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 3468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,20.5 + parent: 12 - uid: 3474 components: - type: Transform @@ -108137,7 +106399,7 @@ entities: pos: -11.5,-59.5 parent: 12 - type: AtmosPipeColor - color: '#5D782EFF' + color: '#947507FF' - uid: 3504 components: - type: Transform @@ -108145,15 +106407,7 @@ entities: pos: -9.5,-59.5 parent: 12 - type: AtmosPipeColor - color: '#5D782EFF' - - uid: 3506 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-59.5 - parent: 12 - - type: AtmosPipeColor - color: '#5D782EFF' + color: '#947507FF' - uid: 3507 components: - type: Transform @@ -108161,7 +106415,7 @@ entities: pos: -7.5,-59.5 parent: 12 - type: AtmosPipeColor - color: '#5D782EFF' + color: '#947507FF' - uid: 3508 components: - type: Transform @@ -108169,14 +106423,14 @@ entities: pos: -6.5,-59.5 parent: 12 - type: AtmosPipeColor - color: '#5D782EFF' + color: '#947507FF' - uid: 3509 components: - type: Transform pos: -5.5,-58.5 parent: 12 - type: AtmosPipeColor - color: '#5D782EFF' + color: '#947507FF' - uid: 3515 components: - type: Transform @@ -108686,13 +106940,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3623 - components: - - type: Transform - pos: 49.5,-1.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3637 components: - type: Transform @@ -109158,14 +107405,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 3710 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,5.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - uid: 3714 components: - type: Transform @@ -109532,14 +107771,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3913 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,11.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3940 components: - type: Transform @@ -109547,14 +107778,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 3948 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,8.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - uid: 3955 components: - type: Transform @@ -109571,6 +107794,21 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 4042 + components: + - type: Transform + pos: 21.5,19.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4055 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,20.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 4074 components: - type: Transform @@ -109643,14 +107881,13 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4386 + - uid: 4383 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,7.5 + pos: 12.5,2.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' + color: '#947507FF' - uid: 4390 components: - type: Transform @@ -109721,14 +107958,6 @@ entities: rot: 1.5707963267948966 rad pos: 22.5,-10.5 parent: 12 - - uid: 4561 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,6.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - uid: 4563 components: - type: Transform @@ -109906,6 +108135,22 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 4727 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,23.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4736 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,26.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 4746 components: - type: Transform @@ -109914,6 +108159,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 4756 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,24.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 4762 components: - type: Transform @@ -110352,6 +108605,12 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 4929 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,19.5 + parent: 12 - uid: 4937 components: - type: Transform @@ -110529,6 +108788,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 5128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-29.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5136 components: - type: Transform @@ -110537,6 +108804,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 5142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-28.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5168 components: - type: Transform @@ -111029,14 +109304,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5380 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-60.5 - parent: 12 - - type: AtmosPipeColor - color: '#5D782EFF' - uid: 5383 components: - type: Transform @@ -111045,6 +109312,13 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 5386 + components: + - type: Transform + pos: 12.5,4.5 + parent: 12 + - type: AtmosPipeColor + color: '#947507FF' - uid: 5387 components: - type: Transform @@ -111061,6 +109335,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 5390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,5.5 + parent: 12 + - type: AtmosPipeColor + color: '#947507FF' - uid: 5399 components: - type: Transform @@ -111085,6 +109367,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 5407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,5.5 + parent: 12 + - type: AtmosPipeColor + color: '#947507FF' - uid: 5408 components: - type: Transform @@ -111101,6 +109391,22 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 5416 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,6.5 + parent: 12 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 5418 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,5.5 + parent: 12 + - type: AtmosPipeColor + color: '#947507FF' - uid: 5422 components: - type: Transform @@ -111218,6 +109524,13 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 5595 + components: + - type: Transform + pos: 12.5,1.5 + parent: 12 + - type: AtmosPipeColor + color: '#947507FF' - uid: 5634 components: - type: Transform @@ -111274,46 +109587,6 @@ entities: rot: 1.5707963267948966 rad pos: 22.5,-7.5 parent: 12 - - uid: 5883 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5885 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,7.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5886 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,6.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5888 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5891 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,6.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 5937 components: - type: Transform @@ -111613,6 +109886,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 6846 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,9.5 + parent: 12 + - type: AtmosPipeColor + color: '#947507FF' - uid: 6854 components: - type: Transform @@ -112419,54 +110700,38 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7119 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-14.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7130 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-28.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7131 + - uid: 7115 components: - type: Transform rot: 3.141592653589793 rad - pos: 35.5,-28.5 + pos: 3.5,8.5 parent: 12 - type: AtmosPipeColor - color: '#990000FF' - - uid: 7132 + color: '#947507FF' + - uid: 7117 components: - type: Transform rot: 3.141592653589793 rad - pos: 35.5,-29.5 + pos: 3.5,10.5 parent: 12 - type: AtmosPipeColor - color: '#990000FF' - - uid: 7133 + color: '#947507FF' + - uid: 7119 components: - type: Transform rot: 3.141592653589793 rad - pos: 35.5,-30.5 + pos: 42.5,-14.5 parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 7134 + - uid: 7136 components: - type: Transform rot: 3.141592653589793 rad - pos: 37.5,-29.5 + pos: 3.5,11.5 parent: 12 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#947507FF' - uid: 7137 components: - type: Transform @@ -112519,7 +110784,33 @@ entities: components: - type: Transform rot: 3.141592653589793 rad - pos: 37.5,-27.5 + pos: 3.5,12.5 + parent: 12 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 7147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,19.5 + parent: 12 + - uid: 7148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,19.5 + parent: 12 + - uid: 7149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,19.5 + parent: 12 + - uid: 7169 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,28.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' @@ -112854,6 +111145,21 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 7546 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,0.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7548 + components: + - type: Transform + pos: 4.5,24.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 7566 components: - type: Transform @@ -112921,6 +111227,22 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,68.5 parent: 12 + - uid: 8198 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,1.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8199 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,-1.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 8241 components: - type: Transform @@ -114092,6 +112414,13 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 8972 + components: + - type: Transform + pos: 12.5,0.5 + parent: 12 + - type: AtmosPipeColor + color: '#947507FF' - uid: 8981 components: - type: Transform @@ -114127,6 +112456,30 @@ entities: rot: 1.5707963267948966 rad pos: 21.5,-3.5 parent: 12 + - uid: 9406 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-29.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,28.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9412 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,28.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 9417 components: - type: Transform @@ -114172,14 +112525,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 9454 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,19.5 - parent: 12 - - type: AtmosPipeColor - color: '#00FFFFFF' - uid: 9463 components: - type: Transform @@ -114265,29 +112610,29 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9501 + - uid: 9517 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,19.5 + pos: -12.5,-54.5 parent: 12 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 9515 + color: '#990000FF' + - uid: 9530 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-1.5 + rot: -1.5707963267948966 rad + pos: -25.5,-29.5 parent: 12 - type: AtmosPipeColor - color: '#990000FF' - - uid: 9517 + color: '#0055CCFF' + - uid: 9532 components: - type: Transform - pos: -12.5,-54.5 + rot: -1.5707963267948966 rad + pos: -24.5,-29.5 parent: 12 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 9535 components: - type: Transform @@ -114304,6 +112649,22 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 9564 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-28.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9565 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,28.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 9566 components: - type: Transform @@ -114311,6 +112672,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 9576 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,16.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 9582 components: - type: Transform @@ -114318,13 +112687,13 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 9601 + - uid: 9592 components: - type: Transform - pos: 11.5,15.5 + pos: 8.5,11.5 parent: 12 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0055CCFF' - uid: 9607 components: - type: Transform @@ -114333,11 +112702,19 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9623 + - uid: 9616 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,23.5 + rot: 3.141592653589793 rad + pos: 1.5,14.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9618 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,27.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' @@ -114349,13 +112726,22 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9655 + - uid: 9634 components: - type: Transform - pos: 9.5,20.5 + rot: 3.141592653589793 rad + pos: 1.5,10.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9639 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,-0.5 parent: 12 - type: AtmosPipeColor - color: '#00FFFFFF' + color: '#990000FF' - uid: 9685 components: - type: Transform @@ -114469,6 +112855,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 9701 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,19.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 9705 components: - type: Transform @@ -114477,6 +112871,61 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 9708 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,17.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9710 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,15.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9713 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,28.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9716 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,11.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9718 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,18.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9726 + components: + - type: Transform + pos: 4.5,22.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9747 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,9.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 9753 components: - type: Transform @@ -114522,22 +112971,21 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9857 + - uid: 9851 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-38.5 + pos: 4.5,21.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9864 + - uid: 9857 components: - type: Transform rot: -1.5707963267948966 rad - pos: 16.5,16.5 + pos: 11.5,-38.5 parent: 12 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0055CCFF' - uid: 9959 components: - type: Transform @@ -115018,6 +113466,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 10381 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-0.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10392 components: - type: Transform @@ -115034,6 +113490,30 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 10518 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-27.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10519 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-26.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10549 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,20.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10551 components: - type: Transform @@ -115042,6 +113522,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 10622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,28.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10693 components: - type: Transform @@ -115066,28 +113554,22 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10885 + - uid: 10794 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,11.5 + rot: 3.141592653589793 rad + pos: 4.5,23.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10891 - components: - - type: Transform - pos: 9.5,24.5 - parent: 12 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 10897 + - uid: 10885 components: - type: Transform - pos: 7.5,24.5 + rot: 1.5707963267948966 rad + pos: 33.5,11.5 parent: 12 - type: AtmosPipeColor - color: '#00FFFFFF' + color: '#0055CCFF' - uid: 10898 components: - type: Transform @@ -115119,14 +113601,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 10984 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,23.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 11008 components: - type: Transform @@ -115157,13 +113631,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11040 + - uid: 11043 components: - type: Transform - pos: 7.5,25.5 + rot: 3.141592653589793 rad + pos: 1.5,13.5 parent: 12 - type: AtmosPipeColor - color: '#00FFFFFF' + color: '#0055CCFF' - uid: 11071 components: - type: Transform @@ -115537,108 +114012,30 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11212 + - uid: 11322 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,14.5 - parent: 12 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11215 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,14.5 - parent: 12 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11216 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,14.5 - parent: 12 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11223 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,15.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 11224 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,15.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 11225 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,15.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 11232 - components: - - type: Transform - pos: 49.5,-3.5 + pos: 13.5,-0.5 parent: 12 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11275 + color: '#947507FF' + - uid: 11323 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,18.5 - parent: 12 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 11281 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,26.5 - parent: 12 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 11304 - components: - - type: Transform - pos: 11.5,26.5 + pos: 14.5,-0.5 parent: 12 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 11309 + color: '#947507FF' + - uid: 11344 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,15.5 - parent: 12 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11325 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,23.5 + pos: 1.5,12.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11330 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,22.5 - parent: 12 - - type: AtmosPipeColor - color: '#00FFFFFF' - uid: 11370 components: - type: Transform @@ -115647,14 +114044,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 11371 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-3.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 11372 components: - type: Transform @@ -115662,14 +114051,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 11380 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-3.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 11382 components: - type: Transform @@ -115726,6 +114107,13 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 11510 + components: + - type: Transform + pos: 12.5,3.5 + parent: 12 + - type: AtmosPipeColor + color: '#947507FF' - uid: 11592 components: - type: Transform @@ -115917,14 +114305,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 12276 + - uid: 12357 components: - type: Transform rot: -1.5707963267948966 rad - pos: 15.5,16.5 + pos: -21.5,-29.5 parent: 12 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0055CCFF' - uid: 12370 components: - type: Transform @@ -115940,84 +114328,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 12674 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,17.5 - parent: 12 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12675 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,14.5 - parent: 12 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12676 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,14.5 - parent: 12 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12690 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,23.5 - parent: 12 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 12691 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,20.5 - parent: 12 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 12692 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,21.5 - parent: 12 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 12693 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,22.5 - parent: 12 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 12694 - components: - - type: Transform - pos: 9.5,19.5 - parent: 12 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 12695 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,21.5 - parent: 12 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 12696 - components: - - type: Transform - pos: 9.5,23.5 - parent: 12 - - type: AtmosPipeColor - color: '#00FFFFFF' - uid: 12741 components: - type: Transform @@ -116853,6 +115163,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 13009 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,-13.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 13015 components: - type: Transform @@ -116892,6 +115210,22 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 13168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-11.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13176 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-0.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 13225 components: - type: Transform @@ -117683,14 +116017,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 15007 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-8.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 15407 components: - type: Transform @@ -118284,6 +116610,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 16180 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-28.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 16315 components: - type: Transform @@ -118291,6 +116625,22 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 16350 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,25.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16533 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-28.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 16548 components: - type: Transform @@ -118631,22 +116981,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 16658 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-3.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16659 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-3.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 16675 components: - type: Transform @@ -120455,19 +118789,19 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 19175 + - uid: 19162 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,8.5 + rot: -1.5707963267948966 rad + pos: -22.5,-28.5 parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 19185 + - uid: 19163 components: - type: Transform rot: 3.141592653589793 rad - pos: 57.5,7.5 + pos: -24.5,-29.5 parent: 12 - type: AtmosPipeColor color: '#990000FF' @@ -120486,14 +118820,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 19311 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,6.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 19380 components: - type: Transform @@ -120682,14 +119008,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 19428 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,14.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - uid: 19433 components: - type: Transform @@ -120714,22 +119032,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 19436 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,6.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19459 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,8.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 19541 components: - type: Transform @@ -120746,14 +119048,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19562 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,19.5 - parent: 12 - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 19816 components: - type: Transform @@ -120762,13 +119056,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 19823 - components: - - type: Transform - pos: 14.5,20.5 - parent: 12 - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 19831 components: - type: Transform @@ -123027,14 +121314,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 21332 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,15.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - uid: 21773 components: - type: Transform @@ -123510,13 +121789,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 22066 - components: - - type: Transform - pos: 56.5,-1.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 22093 components: - type: Transform @@ -123665,14 +121937,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 22339 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,2.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - uid: 22555 components: - type: Transform @@ -125356,30 +123620,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23141 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-8.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23142 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-8.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23143 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-3.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 23146 components: - type: Transform @@ -125394,13 +123634,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23148 - components: - - type: Transform - pos: 4.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 23149 components: - type: Transform @@ -125422,13 +123655,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23152 - components: - - type: Transform - pos: 4.5,24.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 23156 components: - type: Transform @@ -125437,10 +123663,11 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23162 + - uid: 23160 components: - type: Transform - pos: 57.5,-7.5 + rot: 1.5707963267948966 rad + pos: 52.5,-1.5 parent: 12 - type: AtmosPipeColor color: '#990000FF' @@ -125460,14 +123687,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23173 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,3.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - uid: 23178 components: - type: Transform @@ -126451,7 +124670,7 @@ entities: pos: -10.5,-60.5 parent: 12 - type: AtmosPipeColor - color: '#5D782EFF' + color: '#947507FF' - uid: 24496 components: - type: Transform @@ -126537,6 +124756,38 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 25389 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,-1.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 25398 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-1.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 25400 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-1.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 25411 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-1.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 25413 components: - type: Transform @@ -126556,27 +124807,51 @@ entities: - uid: 25442 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,18.5 + rot: 1.5707963267948966 rad + pos: 44.5,-1.5 parent: 12 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 25532 + color: '#990000FF' + - uid: 25527 components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,-0.5 + pos: 51.5,-1.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 25534 + color: '#990000FF' + - uid: 25528 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,4.5 + rot: 1.5707963267948966 rad + pos: 53.5,-1.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 25529 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-1.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 25530 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-1.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 25546 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-1.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' + color: '#990000FF' - uid: 25569 components: - type: Transform @@ -126710,22 +124985,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 26201 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,15.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 26205 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,17.5 - parent: 12 - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 26315 components: - type: Transform @@ -126980,14 +125239,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26519 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,2.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 26539 components: - type: Transform @@ -127023,22 +125274,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26642 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,0.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 26647 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,1.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - uid: 26650 components: - type: Transform @@ -127095,20 +125330,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 26712 - components: - - type: Transform - pos: 62.5,5.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26713 - components: - - type: Transform - pos: 62.5,3.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 26726 components: - type: Transform @@ -127117,41 +125338,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26739 - components: - - type: Transform - pos: 62.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26763 - components: - - type: Transform - pos: 62.5,8.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26781 - components: - - type: Transform - pos: 62.5,4.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26794 - components: - - type: Transform - pos: 62.5,7.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26795 - components: - - type: Transform - pos: 62.5,10.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 26849 components: - type: Transform @@ -127184,21 +125370,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26946 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,1.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 26947 - components: - - type: Transform - pos: 50.5,0.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 26955 components: - type: Transform @@ -127290,84 +125461,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26995 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-12.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 26996 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-11.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 26997 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-10.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 26998 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-9.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 27008 - components: - - type: Transform - pos: 52.5,-5.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 27009 - components: - - type: Transform - pos: 52.5,-4.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 27010 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,-3.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 27011 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-2.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 27012 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-1.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 27013 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 27034 components: - type: Transform @@ -127416,27 +125509,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 27221 - components: - - type: Transform - pos: 9.5,26.5 - parent: 12 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 27223 - components: - - type: Transform - pos: 10.5,14.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 27225 - components: - - type: Transform - pos: 9.5,14.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - uid: 27256 components: - type: Transform @@ -127571,30 +125643,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 28234 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,10.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 28235 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,11.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 28236 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,12.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - uid: 28353 components: - type: Transform @@ -127726,38 +125774,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 28829 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 28830 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 28831 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 28832 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 28929 components: - type: Transform @@ -127765,86 +125781,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 29006 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,23.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29007 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,23.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29008 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,23.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29009 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,23.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29010 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,23.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29011 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,23.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29012 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,23.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29013 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,23.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29014 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,23.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29015 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,23.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 29050 components: - type: Transform @@ -127861,13 +125797,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 29085 - components: - - type: Transform - pos: 49.5,-2.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 29119 components: - type: Transform @@ -127884,91 +125813,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 29137 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-5.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29138 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29139 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-7.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29140 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-8.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29141 - components: - - type: Transform - pos: 53.5,-9.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29142 - components: - - type: Transform - pos: 53.5,-10.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29147 - components: - - type: Transform - pos: 49.5,-4.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29152 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-8.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29153 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-8.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29154 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-7.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29159 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-2.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 29162 components: - type: Transform @@ -129605,28 +127449,13 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2878 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,25.5 - parent: 12 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 3015 - components: - - type: Transform - pos: 9.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#00FFFFFF' - uid: 3241 components: - type: Transform pos: -10.5,-59.5 parent: 12 - type: AtmosPipeColor - color: '#5D782EFF' + color: '#947507FF' - uid: 3297 components: - type: Transform @@ -129973,14 +127802,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4965 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-13.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 5003 components: - type: Transform @@ -130119,14 +127940,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 5390 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-59.5 - parent: 12 - - type: AtmosPipeColor - color: '#5D782EFF' - uid: 5392 components: - type: Transform @@ -130181,21 +127994,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6183 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,5.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6261 - components: - - type: Transform - pos: 56.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 6751 components: - type: Transform @@ -130301,20 +128099,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 7135 - components: - - type: Transform - pos: 35.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7136 - components: - - type: Transform - pos: 37.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 7138 components: - type: Transform @@ -130331,14 +128115,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 7146 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-30.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 7184 components: - type: Transform @@ -130473,6 +128249,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 8293 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,0.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 8505 components: - type: Transform @@ -130681,6 +128465,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 9140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,-1.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 9399 components: - type: Transform @@ -130720,13 +128512,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9578 - components: - - type: Transform - pos: 13.5,15.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - uid: 9587 components: - type: Transform @@ -130743,6 +128528,28 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 9601 + components: + - type: Transform + pos: 5.5,9.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9643 + components: + - type: Transform + pos: -8.5,-59.5 + parent: 12 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 9734 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,28.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 9735 components: - type: Transform @@ -130751,6 +128558,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 9749 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-1.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 9955 components: - type: Transform @@ -130839,6 +128654,22 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 10795 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-29.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10807 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-28.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 10813 components: - type: Transform @@ -130910,14 +128741,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 11043 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,25.5 - parent: 12 - - type: AtmosPipeColor - color: '#00FFFFFF' - uid: 11065 components: - type: Transform @@ -130990,14 +128813,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11324 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,19.5 - parent: 12 - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 11971 components: - type: Transform @@ -131030,13 +128845,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 12265 - components: - - type: Transform - pos: 10.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#00FFFFFF' - uid: 12411 components: - type: Transform @@ -131044,37 +128852,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 12688 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,18.5 - parent: 12 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 12689 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,19.5 - parent: 12 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 12697 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-11.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12699 - components: - - type: Transform - pos: 49.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 12740 components: - type: Transform @@ -131167,6 +128944,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 13182 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,-0.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 13270 components: - type: Transform @@ -131334,14 +129119,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15131 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 15252 components: - type: Transform @@ -131875,14 +129652,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 19822 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,19.5 - parent: 12 - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 19852 components: - type: Transform @@ -132480,22 +130249,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26727 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,6.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26944 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,1.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 27292 components: - type: Transform @@ -132565,13 +130318,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 29143 - components: - - type: Transform - pos: 53.5,-8.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 29268 components: - type: Transform @@ -132753,12 +130499,23 @@ entities: rot: 3.141592653589793 rad pos: 40.5,-21.5 parent: 12 + - uid: 2654 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,19.5 + parent: 12 - uid: 2785 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-62.5 parent: 12 + - uid: 2956 + components: + - type: Transform + pos: 5.5,12.5 + parent: 12 - uid: 4630 components: - type: Transform @@ -132771,60 +130528,11 @@ entities: rot: 3.141592653589793 rad pos: -22.5,52.5 parent: 12 - - uid: 7149 - components: - - type: MetaData - name: waste connector port - - type: Transform - pos: 34.5,-30.5 - parent: 12 - - uid: 7152 - components: - - type: MetaData - name: air connector port - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-32.5 - parent: 12 - - uid: 7157 - components: - - type: MetaData - name: oxygen connector port - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-31.5 - parent: 12 - - uid: 7159 - components: - - type: MetaData - name: nitrogen connector port - - type: Transform - pos: 36.5,-30.5 - parent: 12 - - uid: 7164 - components: - - type: MetaData - name: filtered gas connector port - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-32.5 - parent: 12 - - uid: 9038 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,18.5 - parent: 12 - uid: 9059 components: - type: Transform pos: 26.5,-14.5 parent: 12 - - uid: 9617 - components: - - type: Transform - pos: 13.5,21.5 - parent: 12 - uid: 9813 components: - type: Transform @@ -132843,27 +130551,24 @@ entities: rot: 3.141592653589793 rad pos: 2.5,-20.5 parent: 12 - - uid: 10980 + - uid: 10876 components: - type: Transform rot: 3.141592653589793 rad - pos: 10.5,13.5 + pos: -8.5,-60.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' + color: '#947507FF' - uid: 11018 components: - type: Transform pos: 25.5,-14.5 parent: 12 - - uid: 11280 + - uid: 11246 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,13.5 + pos: 6.5,12.5 parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - uid: 13515 components: - type: Transform @@ -133109,36 +130814,6 @@ entities: rot: -1.5707963267948966 rad pos: 20.5,-1.5 parent: 12 - - uid: 7147 - components: - - type: MetaData - name: air gas pump out - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-31.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7148 - components: - - type: MetaData - name: waste filter gas pump - - type: Transform - pos: 34.5,-31.5 - parent: 12 - - type: GasPressurePump - targetPressure: 4500 - - uid: 7156 - components: - - type: MetaData - name: ' air gas pump in' - - type: Transform - pos: 38.5,-31.5 - parent: 12 - - type: GasPressurePump - targetPressure: 4500 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 7212 components: - type: Transform @@ -133165,25 +130840,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 10978 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,18.5 - parent: 12 - - type: GasPressurePump - targetPressure: 4500 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 11328 - components: - - type: Transform - pos: 13.5,20.5 - parent: 12 - - type: GasPressurePump - targetPressure: 4500 - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 12050 components: - type: Transform @@ -133211,16 +130867,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 23130 - components: - - type: MetaData - name: TEG pump - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - uid: 26418 components: - type: Transform @@ -133245,19 +130891,11 @@ entities: targetTemperature: 100 - type: ApcPowerReceiver powerDisabled: False - - uid: 7383 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,19.5 - parent: 12 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 11327 + - uid: 2960 components: - type: Transform rot: 3.141592653589793 rad - pos: 12.5,13.5 + pos: 5.5,11.5 parent: 12 - uid: 18270 components: @@ -133286,6 +130924,12 @@ entities: targetTemperature: 243.15 - proto: GasThermoMachineHeater entities: + - uid: 2022 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,11.5 + parent: 12 - uid: 3979 components: - type: Transform @@ -133296,12 +130940,6 @@ entities: - type: Transform pos: 12.5,-2.5 parent: 12 - - uid: 9732 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,13.5 - parent: 12 - uid: 15784 components: - type: Transform @@ -133310,13 +130948,6 @@ entities: parent: 12 - type: GasThermoMachine targetTemperature: 330 - - uid: 26204 - components: - - type: Transform - pos: 14.5,21.5 - parent: 12 - - type: AtmosPipeColor - color: '#FF0000FF' - proto: GasValve entities: - uid: 4780 @@ -133326,13 +130957,6 @@ entities: parent: 12 - type: GasValve open: False - - uid: 7158 - components: - - type: Transform - pos: 35.5,-31.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 13519 components: - type: Transform @@ -133397,13 +131021,6 @@ entities: - 28343 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1058 - components: - - type: Transform - pos: 62.5,11.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 1134 components: - type: Transform @@ -133482,18 +131099,6 @@ entities: - 9972 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1267 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-28.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 9972 - - 2089 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 1305 components: - type: Transform @@ -133889,25 +131494,48 @@ entities: - 7342 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9479 + - uid: 9052 components: - type: Transform rot: 3.141592653589793 rad - pos: 29.5,-10.5 + pos: 61.5,-0.5 parent: 12 - type: DeviceNetwork deviceLists: - - 1288 + - 8420 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9560 + - uid: 9434 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-30.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 5098 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9436 components: - type: Transform - pos: 6.5,13.5 + rot: -1.5707963267948966 rad + pos: -19.5,-30.5 parent: 12 - type: DeviceNetwork deviceLists: - - 31894 + - 5109 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9479 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-10.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 1288 - type: AtmosPipeColor color: '#0055CCFF' - uid: 9717 @@ -133917,7 +131545,7 @@ entities: parent: 12 - type: DeviceNetwork deviceLists: - - 27314 + - 9142 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10005 @@ -134002,12 +131630,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11373 + - uid: 11341 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-3.5 + pos: 8.5,12.5 parent: 12 + - type: DeviceNetwork + deviceLists: + - 12273 - type: AtmosPipeColor color: '#0055CCFF' - uid: 11462 @@ -134444,16 +132074,6 @@ entities: - 23804 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19188 - components: - - type: Transform - pos: 58.5,10.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 27313 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 19393 components: - type: Transform @@ -135496,18 +133116,6 @@ entities: - 2629 - type: AtmosPipeColor color: '#990000FF' - - uid: 1268 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-28.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 9972 - - 2089 - - type: AtmosPipeColor - color: '#990000FF' - uid: 1275 components: - type: Transform @@ -135569,7 +133177,7 @@ entities: deviceLists: - 9974 - type: AtmosPipeColor - color: '#5D782EFF' + color: '#947507FF' - uid: 2760 components: - type: Transform @@ -135712,7 +133320,7 @@ entities: pos: -5.5,-57.5 parent: 12 - type: AtmosPipeColor - color: '#5D782EFF' + color: '#947507FF' - uid: 5344 components: - type: Transform @@ -135731,7 +133339,7 @@ entities: parent: 12 - type: DeviceNetwork deviceLists: - - 27314 + - 9142 - type: AtmosPipeColor color: '#990000FF' - uid: 6083 @@ -135899,6 +133507,17 @@ entities: - 7342 - type: AtmosPipeColor color: '#990000FF' + - uid: 9449 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-30.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 5098 + - type: AtmosPipeColor + color: '#990000FF' - uid: 9485 components: - type: Transform @@ -135917,7 +133536,7 @@ entities: parent: 12 - type: DeviceNetwork deviceLists: - - 31894 + - 12273 - type: AtmosPipeColor color: '#990000FF' - uid: 10006 @@ -135962,7 +133581,7 @@ entities: deviceLists: - 9974 - type: AtmosPipeColor - color: '#5D782EFF' + color: '#947507FF' - uid: 10512 components: - type: Transform @@ -135982,6 +133601,28 @@ entities: - 8971 - type: AtmosPipeColor color: '#990000FF' + - uid: 11209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-28.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 5109 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11225 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,-1.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 8420 + - type: AtmosPipeColor + color: '#990000FF' - uid: 11273 components: - type: Transform @@ -136322,16 +133963,6 @@ entities: - 4418 - type: AtmosPipeColor color: '#990000FF' - - uid: 19292 - components: - - type: Transform - pos: 57.5,10.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 27313 - - type: AtmosPipeColor - color: '#990000FF' - uid: 19392 components: - type: Transform @@ -137077,29 +134708,36 @@ entities: - 7822 - proto: GasVolumePump entities: - - uid: 11329 + - uid: 2869 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,17.5 + pos: 6.5,18.5 parent: 12 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 19294 + - uid: 3019 + components: + - type: Transform + pos: 13.5,18.5 + parent: 12 + - uid: 3237 components: - type: Transform rot: 3.141592653589793 rad - pos: 13.5,13.5 + pos: 16.5,18.5 parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 26203 + - uid: 4382 components: - type: Transform - pos: 11.5,16.5 + rot: 3.141592653589793 rad + pos: 9.5,18.5 + parent: 12 + - uid: 7146 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,13.5 parent: 12 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#947507FF' - proto: Gauze entities: - uid: 13825 @@ -137115,10 +134753,27 @@ entities: parent: 12 - proto: Girder entities: - - uid: 5957 + - uid: 1059 components: - type: Transform - pos: 44.5,-5.5 + rot: 3.141592653589793 rad + pos: 49.5,-4.5 + parent: 12 + - uid: 7155 + components: + - type: Transform + pos: 46.5,0.5 + parent: 12 + - uid: 10918 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-62.5 + parent: 12 + - uid: 10969 + components: + - type: Transform + pos: -48.5,51.5 parent: 12 - uid: 11535 components: @@ -137148,6 +134803,17 @@ entities: rot: 1.5707963267948966 rad pos: 53.5,22.5 parent: 12 + - uid: 15859 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-61.5 + parent: 12 + - uid: 22143 + components: + - type: Transform + pos: 44.5,-2.5 + parent: 12 - uid: 22309 components: - type: Transform @@ -137423,18 +135089,6 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,-15.5 parent: 12 - - uid: 190 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-15.5 - parent: 12 - - uid: 191 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-14.5 - parent: 12 - uid: 209 components: - type: Transform @@ -137548,21 +135202,6 @@ entities: - type: Transform pos: -57.5,38.5 parent: 12 - - uid: 271 - components: - - type: Transform - pos: -52.5,42.5 - parent: 12 - - uid: 273 - components: - - type: Transform - pos: -52.5,43.5 - parent: 12 - - uid: 274 - components: - - type: Transform - pos: -52.5,40.5 - parent: 12 - uid: 283 components: - type: Transform @@ -137768,11 +135407,6 @@ entities: - type: Transform pos: -32.5,-17.5 parent: 12 - - uid: 526 - components: - - type: Transform - pos: -52.5,41.5 - parent: 12 - uid: 534 components: - type: Transform @@ -137856,8 +135490,7 @@ entities: - uid: 638 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 82.5,-2.5 + pos: 6.5,19.5 parent: 12 - uid: 652 components: @@ -137919,6 +135552,11 @@ entities: - type: Transform pos: -32.5,-33.5 parent: 12 + - uid: 697 + components: + - type: Transform + pos: 9.5,19.5 + parent: 12 - uid: 699 components: - type: Transform @@ -138215,16 +135853,15 @@ entities: rot: 3.141592653589793 rad pos: -40.5,75.5 parent: 12 - - uid: 1550 + - uid: 1538 components: - type: Transform - pos: 11.5,3.5 + pos: 14.5,19.5 parent: 12 - - uid: 1611 + - uid: 1550 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,51.5 + pos: 11.5,3.5 parent: 12 - uid: 1613 components: @@ -138257,8 +135894,7 @@ entities: - uid: 2172 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,14.5 + pos: 7.5,19.5 parent: 12 - uid: 2174 components: @@ -138569,31 +136205,16 @@ entities: - type: Transform pos: -15.5,-52.5 parent: 12 - - uid: 2665 + - uid: 2656 components: - type: Transform - pos: -8.5,-60.5 + pos: -1.5,20.5 parent: 12 - uid: 2666 components: - type: Transform pos: -8.5,-58.5 parent: 12 - - uid: 2690 - components: - - type: Transform - pos: -6.5,-60.5 - parent: 12 - - uid: 2691 - components: - - type: Transform - pos: -5.5,-60.5 - parent: 12 - - uid: 2692 - components: - - type: Transform - pos: -4.5,-60.5 - parent: 12 - uid: 2694 components: - type: Transform @@ -138614,16 +136235,6 @@ entities: - type: Transform pos: -3.5,-54.5 parent: 12 - - uid: 2704 - components: - - type: Transform - pos: -4.5,-54.5 - parent: 12 - - uid: 2705 - components: - - type: Transform - pos: -4.5,-53.5 - parent: 12 - uid: 2706 components: - type: Transform @@ -138659,21 +136270,6 @@ entities: - type: Transform pos: -11.5,-53.5 parent: 12 - - uid: 2736 - components: - - type: Transform - pos: 0.5,-54.5 - parent: 12 - - uid: 2844 - components: - - type: Transform - pos: -3.5,-48.5 - parent: 12 - - uid: 2845 - components: - - type: Transform - pos: -4.5,-52.5 - parent: 12 - uid: 2846 components: - type: Transform @@ -138704,11 +136300,6 @@ entities: - type: Transform pos: -5.5,-44.5 parent: 12 - - uid: 2890 - components: - - type: Transform - pos: -18.5,-29.5 - parent: 12 - uid: 2892 components: - type: Transform @@ -138724,27 +136315,11 @@ entities: - type: Transform pos: -0.5,-48.5 parent: 12 - - uid: 2900 - components: - - type: Transform - pos: 1.5,-48.5 - parent: 12 - uid: 2903 components: - type: Transform pos: -1.5,-48.5 parent: 12 - - uid: 2920 - components: - - type: Transform - pos: -18.5,-28.5 - parent: 12 - - uid: 2944 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-28.5 - parent: 12 - uid: 2947 components: - type: Transform @@ -138773,12 +136348,6 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,-35.5 parent: 12 - - uid: 2979 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-27.5 - parent: 12 - uid: 2985 components: - type: Transform @@ -138849,47 +136418,16 @@ entities: - type: Transform pos: -50.5,47.5 parent: 12 - - uid: 3133 - components: - - type: Transform - pos: 49.5,0.5 - parent: 12 - - uid: 3134 - components: - - type: Transform - pos: -18.5,-30.5 - parent: 12 - uid: 3198 components: - type: Transform pos: 35.5,-0.5 parent: 12 - - uid: 3468 - components: - - type: Transform - pos: 8.5,12.5 - parent: 12 - - uid: 3469 - components: - - type: Transform - pos: 48.5,0.5 - parent: 12 - - uid: 3472 - components: - - type: Transform - pos: 50.5,0.5 - parent: 12 - uid: 3480 components: - type: Transform pos: 20.5,-33.5 parent: 12 - - uid: 3516 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-53.5 - parent: 12 - uid: 3596 components: - type: Transform @@ -139060,10 +136598,11 @@ entities: - type: Transform pos: 13.5,-0.5 parent: 12 - - uid: 4600 + - uid: 4646 components: - type: Transform - pos: 57.5,7.5 + rot: -1.5707963267948966 rad + pos: 63.5,-0.5 parent: 12 - uid: 4666 components: @@ -139098,11 +136637,6 @@ entities: - type: Transform pos: 21.5,-11.5 parent: 12 - - uid: 4794 - components: - - type: Transform - pos: 47.5,0.5 - parent: 12 - uid: 4796 components: - type: Transform @@ -139133,23 +136667,16 @@ entities: rot: 3.141592653589793 rad pos: 21.5,-7.5 parent: 12 - - uid: 4972 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-4.5 - parent: 12 - - uid: 4987 + - uid: 4953 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 82.5,3.5 + pos: -22.5,-28.5 parent: 12 - - uid: 4989 + - uid: 4972 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 82.5,4.5 + rot: -1.5707963267948966 rad + pos: 23.5,-4.5 parent: 12 - uid: 5028 components: @@ -139171,11 +136698,11 @@ entities: - type: Transform pos: 31.5,-5.5 parent: 12 - - uid: 5197 + - uid: 5208 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 82.5,9.5 + rot: -1.5707963267948966 rad + pos: 59.5,-9.5 parent: 12 - uid: 5269 components: @@ -139201,17 +136728,6 @@ entities: rot: -1.5707963267948966 rad pos: 11.5,-52.5 parent: 12 - - uid: 5384 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-59.5 - parent: 12 - - uid: 5416 - components: - - type: Transform - pos: 13.5,12.5 - parent: 12 - uid: 5430 components: - type: Transform @@ -139254,60 +136770,6 @@ entities: rot: 3.141592653589793 rad pos: 25.5,-19.5 parent: 12 - - uid: 5482 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,2.5 - parent: 12 - - uid: 5485 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,2.5 - parent: 12 - - uid: 5512 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,2.5 - parent: 12 - - uid: 5538 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 82.5,-1.5 - parent: 12 - - uid: 5550 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 82.5,0.5 - parent: 12 - - uid: 5552 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 82.5,-0.5 - parent: 12 - - uid: 5595 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 82.5,2.5 - parent: 12 - - uid: 5618 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 82.5,5.5 - parent: 12 - - uid: 5620 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 82.5,7.5 - parent: 12 - uid: 5715 components: - type: Transform @@ -139348,12 +136810,6 @@ entities: - type: Transform pos: 13.5,2.5 parent: 12 - - uid: 5817 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 82.5,12.5 - parent: 12 - uid: 5818 components: - type: Transform @@ -139378,12 +136834,6 @@ entities: rot: 3.141592653589793 rad pos: -53.5,65.5 parent: 12 - - uid: 5845 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 82.5,8.5 - parent: 12 - uid: 5878 components: - type: Transform @@ -139418,12 +136868,6 @@ entities: rot: -1.5707963267948966 rad pos: -28.5,-3.5 parent: 12 - - uid: 6008 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,52.5 - parent: 12 - uid: 6009 components: - type: Transform @@ -139441,12 +136885,6 @@ entities: rot: 3.141592653589793 rad pos: 21.5,-8.5 parent: 12 - - uid: 6022 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 76.5,14.5 - parent: 12 - uid: 6055 components: - type: Transform @@ -139820,15 +137258,10 @@ entities: rot: -1.5707963267948966 rad pos: 41.5,-40.5 parent: 12 - - uid: 6318 - components: - - type: Transform - pos: -3.5,22.5 - parent: 12 - - uid: 6325 + - uid: 6309 components: - type: Transform - pos: -2.5,22.5 + pos: 57.5,-8.5 parent: 12 - uid: 6336 components: @@ -139914,11 +137347,6 @@ entities: - type: Transform pos: 28.5,-28.5 parent: 12 - - uid: 6846 - components: - - type: Transform - pos: -4.5,22.5 - parent: 12 - uid: 6890 components: - type: Transform @@ -139934,6 +137362,11 @@ entities: - type: Transform pos: -60.5,30.5 parent: 12 + - uid: 7129 + components: + - type: Transform + pos: -1.5,19.5 + parent: 12 - uid: 7199 components: - type: Transform @@ -139977,11 +137410,11 @@ entities: - type: Transform pos: 29.5,-54.5 parent: 12 - - uid: 7322 + - uid: 7356 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,14.5 + rot: 3.141592653589793 rad + pos: 1.5,10.5 parent: 12 - uid: 7379 components: @@ -140133,30 +137566,6 @@ entities: rot: 1.5707963267948966 rad pos: 64.5,-19.5 parent: 12 - - uid: 7521 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-6.5 - parent: 12 - - uid: 7522 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-6.5 - parent: 12 - - uid: 7523 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-6.5 - parent: 12 - - uid: 7548 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 79.5,14.5 - parent: 12 - uid: 7551 components: - type: Transform @@ -140187,12 +137596,6 @@ entities: rot: -1.5707963267948966 rad pos: 59.5,-16.5 parent: 12 - - uid: 7571 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-11.5 - parent: 12 - uid: 7572 components: - type: Transform @@ -140452,17 +137855,10 @@ entities: rot: 1.5707963267948966 rad pos: 55.5,-50.5 parent: 12 - - uid: 9053 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 82.5,10.5 - parent: 12 - - uid: 9054 + - uid: 9057 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 77.5,14.5 + pos: 17.5,17.5 parent: 12 - uid: 9068 components: @@ -140494,35 +137890,17 @@ entities: - type: Transform pos: 59.5,-24.5 parent: 12 - - uid: 9482 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,1.5 - parent: 12 - - uid: 9483 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,16.5 - parent: 12 - - uid: 9491 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,11.5 - parent: 12 - uid: 9504 components: - type: Transform rot: 3.141592653589793 rad pos: -35.5,61.5 parent: 12 - - uid: 9562 + - uid: 9526 components: - type: Transform rot: 3.141592653589793 rad - pos: -3.5,-60.5 + pos: 2.5,10.5 parent: 12 - uid: 9570 components: @@ -140535,57 +137913,26 @@ entities: - type: Transform pos: 41.5,-17.5 parent: 12 - - uid: 9609 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,1.5 - parent: 12 - - uid: 9612 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,-5.5 - parent: 12 - - uid: 9618 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,16.5 - parent: 12 - uid: 9619 components: - type: Transform pos: -0.5,-40.5 parent: 12 - - uid: 9621 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,16.5 - parent: 12 - - uid: 9628 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,16.5 - parent: 12 - - uid: 9669 + - uid: 9709 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-5.5 + pos: 63.5,6.5 parent: 12 - - uid: 9709 + - uid: 9871 components: - type: Transform - pos: 63.5,6.5 + pos: 5.5,26.5 parent: 12 - - uid: 9719 + - uid: 9956 components: - type: Transform rot: 3.141592653589793 rad - pos: 16.5,16.5 + pos: 3.5,10.5 parent: 12 - uid: 9970 components: @@ -141061,36 +138408,6 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,12.5 parent: 12 - - uid: 10622 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,18.5 - parent: 12 - - uid: 10623 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,19.5 - parent: 12 - - uid: 10624 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,20.5 - parent: 12 - - uid: 10631 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,21.5 - parent: 12 - - uid: 10632 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,22.5 - parent: 12 - uid: 10657 components: - type: Transform @@ -141168,83 +138485,46 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,8.5 parent: 12 - - uid: 10794 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,16.5 - parent: 12 - - uid: 10869 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 82.5,-4.5 - parent: 12 - - uid: 10876 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,-5.5 - parent: 12 - uid: 10877 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 76.5,-5.5 - parent: 12 - - uid: 10887 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,-5.5 + rot: -1.5707963267948966 rad + pos: -5.5,-62.5 parent: 12 - uid: 10914 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,-5.5 - parent: 12 - - uid: 10915 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,-5.5 + pos: 12.5,11.5 parent: 12 - uid: 10916 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-5.5 + pos: 13.5,11.5 parent: 12 - - uid: 10923 + - uid: 10934 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,-5.5 + pos: 17.5,15.5 parent: 12 - - uid: 10927 + - uid: 10966 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-5.5 + pos: 17.5,18.5 parent: 12 - - uid: 10934 + - uid: 10970 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,14.5 + pos: -49.5,51.5 parent: 12 - - uid: 11044 + - uid: 10979 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,15.5 + pos: 10.5,11.5 parent: 12 - - uid: 11045 + - uid: 11035 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,16.5 + pos: 8.5,11.5 parent: 12 - uid: 11133 components: @@ -141318,11 +138598,11 @@ entities: rot: -1.5707963267948966 rad pos: -40.5,30.5 parent: 12 - - uid: 11226 + - uid: 11207 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,22.5 + rot: 1.5707963267948966 rad + pos: 13.5,19.5 parent: 12 - uid: 11242 components: @@ -141336,24 +138616,12 @@ entities: rot: -1.5707963267948966 rad pos: 17.5,26.5 parent: 12 - - uid: 11244 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,24.5 - parent: 12 - uid: 11245 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,25.5 parent: 12 - - uid: 11246 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,24.5 - parent: 12 - uid: 11247 components: - type: Transform @@ -141384,15 +138652,32 @@ entities: rot: 3.141592653589793 rad pos: -36.5,75.5 parent: 12 - - uid: 11420 + - uid: 11311 components: - type: Transform - pos: 53.5,19.5 + rot: -1.5707963267948966 rad + pos: -7.5,-62.5 parent: 12 - - uid: 11435 + - uid: 11338 components: - type: Transform - pos: -5.5,-62.5 + pos: 9.5,11.5 + parent: 12 + - uid: 11343 + components: + - type: Transform + pos: 15.5,19.5 + parent: 12 + - uid: 11360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,24.5 + parent: 12 + - uid: 11420 + components: + - type: Transform + pos: 53.5,19.5 parent: 12 - uid: 11448 components: @@ -141400,6 +138685,11 @@ entities: rot: -1.5707963267948966 rad pos: 24.5,11.5 parent: 12 + - uid: 11458 + components: + - type: Transform + pos: 16.5,19.5 + parent: 12 - uid: 11459 components: - type: Transform @@ -141410,11 +138700,6 @@ entities: - type: Transform pos: 48.5,10.5 parent: 12 - - uid: 11481 - components: - - type: Transform - pos: -4.5,-62.5 - parent: 12 - uid: 11486 components: - type: Transform @@ -141828,6 +139113,11 @@ entities: - type: Transform pos: 29.5,14.5 parent: 12 + - uid: 12358 + components: + - type: Transform + pos: 8.5,19.5 + parent: 12 - uid: 12429 components: - type: Transform @@ -142195,6 +139485,28 @@ entities: - type: Transform pos: 49.5,42.5 parent: 12 + - uid: 12676 + components: + - type: Transform + pos: 17.5,16.5 + parent: 12 + - uid: 12681 + components: + - type: Transform + pos: 17.5,14.5 + parent: 12 + - uid: 12697 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-3.5 + parent: 12 + - uid: 12699 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,-2.5 + parent: 12 - uid: 13028 components: - type: Transform @@ -143275,6 +140587,11 @@ entities: - type: Transform pos: -49.5,13.5 parent: 12 + - uid: 16353 + components: + - type: Transform + pos: 5.5,25.5 + parent: 12 - uid: 16373 components: - type: Transform @@ -143346,12 +140663,6 @@ entities: rot: -1.5707963267948966 rad pos: -8.5,46.5 parent: 12 - - uid: 16832 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,22.5 - parent: 12 - uid: 16924 components: - type: Transform @@ -143375,12 +140686,6 @@ entities: - type: Transform pos: 4.5,46.5 parent: 12 - - uid: 17204 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,14.5 - parent: 12 - uid: 17275 components: - type: Transform @@ -143569,12 +140874,6 @@ entities: - type: Transform pos: -59.5,35.5 parent: 12 - - uid: 17599 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-2.5 - parent: 12 - uid: 17832 components: - type: Transform @@ -143750,18 +141049,6 @@ entities: rot: 3.141592653589793 rad pos: -37.5,50.5 parent: 12 - - uid: 19162 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,51.5 - parent: 12 - - uid: 19163 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,52.5 - parent: 12 - uid: 19167 components: - type: Transform @@ -143839,11 +141126,6 @@ entities: rot: 3.141592653589793 rad pos: -42.5,60.5 parent: 12 - - uid: 19279 - components: - - type: Transform - pos: -18.5,-27.5 - parent: 12 - uid: 19324 components: - type: Transform @@ -143916,16 +141198,6 @@ entities: rot: 3.141592653589793 rad pos: -9.5,79.5 parent: 12 - - uid: 19546 - components: - - type: Transform - pos: 3.5,17.5 - parent: 12 - - uid: 19561 - components: - - type: Transform - pos: 4.5,20.5 - parent: 12 - uid: 19582 components: - type: Transform @@ -144051,29 +141323,11 @@ entities: rot: 3.141592653589793 rad pos: -35.5,75.5 parent: 12 - - uid: 20565 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,52.5 - parent: 12 - - uid: 20789 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,14.5 - parent: 12 - uid: 20958 components: - type: Transform pos: -54.5,38.5 parent: 12 - - uid: 21065 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 82.5,14.5 - parent: 12 - uid: 21074 components: - type: Transform @@ -144083,13 +141337,7 @@ entities: - uid: 21315 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 82.5,13.5 - parent: 12 - - uid: 21530 - components: - - type: Transform - pos: -1.5,15.5 + pos: 37.5,-48.5 parent: 12 - uid: 21695 components: @@ -144101,12 +141349,6 @@ entities: - type: Transform pos: 42.5,-40.5 parent: 12 - - uid: 21703 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 82.5,-5.5 - parent: 12 - uid: 21706 components: - type: Transform @@ -144225,22 +141467,6 @@ entities: - type: Transform pos: -33.5,13.5 parent: 12 - - uid: 22098 - components: - - type: Transform - pos: 67.5,14.5 - parent: 12 - - uid: 22133 - components: - - type: Transform - pos: 62.5,14.5 - parent: 12 - - uid: 22158 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,14.5 - parent: 12 - uid: 22193 components: - type: Transform @@ -144360,6 +141586,11 @@ entities: - type: Transform pos: 9.5,0.5 parent: 12 + - uid: 23604 + components: + - type: Transform + pos: 57.5,-7.5 + parent: 12 - uid: 23759 components: - type: Transform @@ -144372,6 +141603,12 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,-34.5 parent: 12 + - uid: 24388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-9.5 + parent: 12 - uid: 24649 components: - type: Transform @@ -144383,12 +141620,6 @@ entities: rot: 1.5707963267948966 rad pos: -28.5,73.5 parent: 12 - - uid: 25061 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,-5.5 - parent: 12 - uid: 25089 components: - type: Transform @@ -144405,41 +141636,17 @@ entities: - type: Transform pos: 60.5,-22.5 parent: 12 - - uid: 25192 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,-5.5 - parent: 12 - - uid: 25193 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-3.5 - parent: 12 - uid: 25196 components: - type: Transform pos: 33.5,-3.5 parent: 12 - - uid: 25389 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,53.5 - parent: 12 - uid: 25399 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,66.5 parent: 12 - - uid: 25400 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,51.5 - parent: 12 - uid: 25447 components: - type: Transform @@ -144476,27 +141683,11 @@ entities: rot: 3.141592653589793 rad pos: -22.5,66.5 parent: 12 - - uid: 25528 - components: - - type: Transform - pos: 3.5,15.5 - parent: 12 - - uid: 25529 - components: - - type: Transform - pos: 3.5,16.5 - parent: 12 - - uid: 25546 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-30.5 - parent: 12 - - uid: 25550 + - uid: 25538 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,-29.5 + pos: 61.5,-11.5 parent: 12 - uid: 25558 components: @@ -144508,11 +141699,6 @@ entities: - type: Transform pos: 61.5,65.5 parent: 12 - - uid: 25560 - components: - - type: Transform - pos: 61.5,64.5 - parent: 12 - uid: 25561 components: - type: Transform @@ -144652,18 +141838,6 @@ entities: - type: Transform pos: -56.5,-15.5 parent: 12 - - uid: 26027 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-5.5 - parent: 12 - - uid: 26064 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-5.5 - parent: 12 - uid: 26068 components: - type: Transform @@ -144703,12 +141877,6 @@ entities: - type: Transform pos: -40.5,57.5 parent: 12 - - uid: 26154 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-5.5 - parent: 12 - uid: 26171 components: - type: Transform @@ -144930,12 +142098,6 @@ entities: rot: -1.5707963267948966 rad pos: -39.5,68.5 parent: 12 - - uid: 26383 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,14.5 - parent: 12 - uid: 26409 components: - type: Transform @@ -144962,23 +142124,11 @@ entities: - type: Transform pos: 63.5,4.5 parent: 12 - - uid: 26421 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,6.5 - parent: 12 - uid: 26450 components: - type: Transform pos: 25.5,89.5 parent: 12 - - uid: 26536 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,-5.5 - parent: 12 - uid: 26542 components: - type: Transform @@ -145010,16 +142160,6 @@ entities: - type: Transform pos: 35.5,-3.5 parent: 12 - - uid: 26581 - components: - - type: Transform - pos: 69.5,14.5 - parent: 12 - - uid: 26582 - components: - - type: Transform - pos: 68.5,14.5 - parent: 12 - uid: 26586 components: - type: Transform @@ -145031,16 +142171,6 @@ entities: rot: 1.5707963267948966 rad pos: -57.5,-21.5 parent: 12 - - uid: 26602 - components: - - type: Transform - pos: 63.5,14.5 - parent: 12 - - uid: 26604 - components: - - type: Transform - pos: 66.5,14.5 - parent: 12 - uid: 26610 components: - type: Transform @@ -145075,12 +142205,6 @@ entities: - type: Transform pos: 3.5,-21.5 parent: 12 - - uid: 26653 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-2.5 - parent: 12 - uid: 26676 components: - type: Transform @@ -145099,12 +142223,6 @@ entities: rot: 3.141592653589793 rad pos: 28.5,6.5 parent: 12 - - uid: 26716 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,-5.5 - parent: 12 - uid: 26747 components: - type: Transform @@ -145116,141 +142234,12 @@ entities: rot: -1.5707963267948966 rad pos: -38.5,70.5 parent: 12 - - uid: 26759 - components: - - type: Transform - pos: 9.5,12.5 - parent: 12 - - uid: 26787 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-7.5 - parent: 12 - - uid: 26788 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-7.5 - parent: 12 - - uid: 26793 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-9.5 - parent: 12 - - uid: 26799 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 77.5,-5.5 - parent: 12 - uid: 26866 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,64.5 parent: 12 - - uid: 26881 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,-7.5 - parent: 12 - - uid: 26973 - components: - - type: Transform - pos: 10.5,12.5 - parent: 12 - - uid: 27017 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-7.5 - parent: 12 - - uid: 27018 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-3.5 - parent: 12 - - uid: 27040 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,22.5 - parent: 12 - - uid: 27041 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,22.5 - parent: 12 - - uid: 27045 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,22.5 - parent: 12 - - uid: 27047 - components: - - type: Transform - pos: 5.5,20.5 - parent: 12 - - uid: 27058 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-6.5 - parent: 12 - - uid: 27059 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-5.5 - parent: 12 - - uid: 27060 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-4.5 - parent: 12 - - uid: 27061 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-3.5 - parent: 12 - - uid: 27068 - components: - - type: Transform - pos: 61.5,14.5 - parent: 12 - - uid: 27069 - components: - - type: Transform - pos: 57.5,14.5 - parent: 12 - - uid: 27070 - components: - - type: Transform - pos: 58.5,14.5 - parent: 12 - - uid: 27071 - components: - - type: Transform - pos: 64.5,14.5 - parent: 12 - - uid: 27072 - components: - - type: Transform - pos: 59.5,14.5 - parent: 12 - - uid: 27074 - components: - - type: Transform - pos: 55.5,14.5 - parent: 12 - uid: 27083 components: - type: Transform @@ -145277,12 +142266,6 @@ entities: - type: Transform pos: 29.5,86.5 parent: 12 - - uid: 27100 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,54.5 - parent: 12 - uid: 27101 components: - type: Transform @@ -145311,22 +142294,6 @@ entities: - type: Transform pos: 29.5,84.5 parent: 12 - - uid: 27203 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-9.5 - parent: 12 - - uid: 27227 - components: - - type: Transform - pos: 12.5,12.5 - parent: 12 - - uid: 27234 - components: - - type: Transform - pos: 11.5,12.5 - parent: 12 - uid: 27244 components: - type: Transform @@ -145478,12 +142445,6 @@ entities: rot: 1.5707963267948966 rad pos: -51.5,-44.5 parent: 12 - - uid: 27860 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,-9.5 - parent: 12 - uid: 27910 components: - type: Transform @@ -145641,12 +142602,6 @@ entities: rot: 3.141592653589793 rad pos: 66.5,60.5 parent: 12 - - uid: 27949 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,61.5 - parent: 12 - uid: 27950 components: - type: Transform @@ -145712,12 +142667,6 @@ entities: rot: 3.141592653589793 rad pos: 77.5,59.5 parent: 12 - - uid: 28317 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,59.5 - parent: 12 - uid: 28318 components: - type: Transform @@ -145760,12 +142709,6 @@ entities: rot: 3.141592653589793 rad pos: 69.5,59.5 parent: 12 - - uid: 28325 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,59.5 - parent: 12 - uid: 28326 components: - type: Transform @@ -145823,17 +142766,6 @@ entities: - type: Transform pos: 2.5,-21.5 parent: 12 - - uid: 28558 - components: - - type: Transform - pos: -3.5,-62.5 - parent: 12 - - uid: 28789 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-7.5 - parent: 12 - uid: 29089 components: - type: Transform @@ -145872,11 +142804,6 @@ entities: - type: Transform pos: -54.5,-48.5 parent: 12 - - uid: 29308 - components: - - type: Transform - pos: 12.5,12.5 - parent: 12 - uid: 29421 components: - type: Transform @@ -146057,12 +142984,6 @@ entities: rot: 3.141592653589793 rad pos: -52.5,74.5 parent: 12 - - uid: 29636 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-8.5 - parent: 12 - uid: 29861 components: - type: Transform @@ -146099,36 +143020,6 @@ entities: - type: Transform pos: 60.5,74.5 parent: 12 - - uid: 30029 - components: - - type: Transform - pos: 37.5,-48.5 - parent: 12 - - uid: 30032 - components: - - type: Transform - pos: 37.5,-47.5 - parent: 12 - - uid: 30033 - components: - - type: Transform - pos: 37.5,-49.5 - parent: 12 - - uid: 30034 - components: - - type: Transform - pos: 37.5,-50.5 - parent: 12 - - uid: 30035 - components: - - type: Transform - pos: 37.5,-52.5 - parent: 12 - - uid: 30036 - components: - - type: Transform - pos: 37.5,-51.5 - parent: 12 - uid: 30037 components: - type: Transform @@ -146179,11 +143070,6 @@ entities: - type: Transform pos: 38.5,-61.5 parent: 12 - - uid: 30047 - components: - - type: Transform - pos: 39.5,-61.5 - parent: 12 - uid: 30048 components: - type: Transform @@ -146204,11 +143090,6 @@ entities: - type: Transform pos: 43.5,-61.5 parent: 12 - - uid: 30052 - components: - - type: Transform - pos: 44.5,-61.5 - parent: 12 - uid: 30053 components: - type: Transform @@ -146224,26 +143105,11 @@ entities: - type: Transform pos: 48.5,-61.5 parent: 12 - - uid: 30056 - components: - - type: Transform - pos: 49.5,-61.5 - parent: 12 - - uid: 30057 - components: - - type: Transform - pos: 46.5,-61.5 - parent: 12 - uid: 30058 components: - type: Transform pos: 50.5,-61.5 parent: 12 - - uid: 30059 - components: - - type: Transform - pos: 51.5,-61.5 - parent: 12 - uid: 30060 components: - type: Transform @@ -146254,21 +143120,6 @@ entities: - type: Transform pos: 54.5,-61.5 parent: 12 - - uid: 30062 - components: - - type: Transform - pos: 55.5,-61.5 - parent: 12 - - uid: 30063 - components: - - type: Transform - pos: 52.5,-61.5 - parent: 12 - - uid: 30064 - components: - - type: Transform - pos: 57.5,-61.5 - parent: 12 - uid: 30065 components: - type: Transform @@ -146284,11 +143135,6 @@ entities: - type: Transform pos: 60.5,-61.5 parent: 12 - - uid: 30068 - components: - - type: Transform - pos: 59.5,-61.5 - parent: 12 - uid: 30069 components: - type: Transform @@ -146304,11 +143150,6 @@ entities: - type: Transform pos: 63.5,-61.5 parent: 12 - - uid: 30072 - components: - - type: Transform - pos: 64.5,-61.5 - parent: 12 - uid: 30073 components: - type: Transform @@ -146334,11 +143175,6 @@ entities: - type: Transform pos: 69.5,-61.5 parent: 12 - - uid: 30078 - components: - - type: Transform - pos: 70.5,-61.5 - parent: 12 - uid: 30079 components: - type: Transform @@ -146369,11 +143205,6 @@ entities: - type: Transform pos: 74.5,-59.5 parent: 12 - - uid: 30085 - components: - - type: Transform - pos: 74.5,-58.5 - parent: 12 - uid: 30086 components: - type: Transform @@ -146384,11 +143215,6 @@ entities: - type: Transform pos: -69.5,50.5 parent: 12 - - uid: 30088 - components: - - type: Transform - pos: -71.5,50.5 - parent: 12 - uid: 30089 components: - type: Transform @@ -146414,21 +143240,11 @@ entities: - type: Transform pos: -73.5,48.5 parent: 12 - - uid: 30094 - components: - - type: Transform - pos: -73.5,47.5 - parent: 12 - uid: 30095 components: - type: Transform pos: -73.5,46.5 parent: 12 - - uid: 30096 - components: - - type: Transform - pos: -72.5,46.5 - parent: 12 - uid: 30097 components: - type: Transform @@ -146449,11 +143265,6 @@ entities: - type: Transform pos: -69.5,45.5 parent: 12 - - uid: 30101 - components: - - type: Transform - pos: -69.5,44.5 - parent: 12 - uid: 30102 components: - type: Transform @@ -146504,16 +143315,6 @@ entities: - type: Transform pos: -63.5,40.5 parent: 12 - - uid: 30112 - components: - - type: Transform - pos: -62.5,40.5 - parent: 12 - - uid: 30113 - components: - - type: Transform - pos: -61.5,40.5 - parent: 12 - uid: 30114 components: - type: Transform @@ -146529,11 +143330,6 @@ entities: - type: Transform pos: -69.5,51.5 parent: 12 - - uid: 30117 - components: - - type: Transform - pos: -69.5,52.5 - parent: 12 - uid: 30118 components: - type: Transform @@ -146544,11 +143340,6 @@ entities: - type: Transform pos: -69.5,54.5 parent: 12 - - uid: 30120 - components: - - type: Transform - pos: -69.5,55.5 - parent: 12 - uid: 30121 components: - type: Transform @@ -146579,11 +143370,6 @@ entities: - type: Transform pos: -59.5,56.5 parent: 12 - - uid: 30127 - components: - - type: Transform - pos: -60.5,56.5 - parent: 12 - uid: 30128 components: - type: Transform @@ -146599,21 +143385,11 @@ entities: - type: Transform pos: -63.5,56.5 parent: 12 - - uid: 30131 - components: - - type: Transform - pos: -64.5,56.5 - parent: 12 - uid: 30132 components: - type: Transform pos: -65.5,56.5 parent: 12 - - uid: 30133 - components: - - type: Transform - pos: 61.5,70.5 - parent: 12 - uid: 30134 components: - type: Transform @@ -146629,11 +143405,6 @@ entities: - type: Transform pos: 64.5,70.5 parent: 12 - - uid: 30137 - components: - - type: Transform - pos: 65.5,70.5 - parent: 12 - uid: 30138 components: - type: Transform @@ -146664,11 +143435,6 @@ entities: - type: Transform pos: 63.5,74.5 parent: 12 - - uid: 30144 - components: - - type: Transform - pos: 62.5,74.5 - parent: 12 - uid: 30145 components: - type: Transform @@ -146689,11 +143455,6 @@ entities: - type: Transform pos: 60.5,77.5 parent: 12 - - uid: 30149 - components: - - type: Transform - pos: 60.5,78.5 - parent: 12 - uid: 30150 components: - type: Transform @@ -146734,11 +143495,6 @@ entities: - type: Transform pos: 54.5,80.5 parent: 12 - - uid: 30159 - components: - - type: Transform - pos: 53.5,80.5 - parent: 12 - uid: 30160 components: - type: Transform @@ -146754,21 +143510,11 @@ entities: - type: Transform pos: 49.5,80.5 parent: 12 - - uid: 30163 - components: - - type: Transform - pos: 48.5,80.5 - parent: 12 - uid: 30164 components: - type: Transform pos: 47.5,80.5 parent: 12 - - uid: 30165 - components: - - type: Transform - pos: 46.5,80.5 - parent: 12 - uid: 30166 components: - type: Transform @@ -146814,16 +143560,6 @@ entities: - type: Transform pos: 40.5,78.5 parent: 12 - - uid: 30175 - components: - - type: Transform - pos: 39.5,78.5 - parent: 12 - - uid: 30176 - components: - - type: Transform - pos: 38.5,78.5 - parent: 12 - uid: 30177 components: - type: Transform @@ -146834,21 +143570,6 @@ entities: - type: Transform pos: 35.5,78.5 parent: 12 - - uid: 30179 - components: - - type: Transform - pos: 34.5,78.5 - parent: 12 - - uid: 30180 - components: - - type: Transform - pos: 33.5,78.5 - parent: 12 - - uid: 30181 - components: - - type: Transform - pos: 32.5,78.5 - parent: 12 - uid: 30182 components: - type: Transform @@ -146859,16 +143580,6 @@ entities: - type: Transform pos: 37.5,78.5 parent: 12 - - uid: 30184 - components: - - type: Transform - pos: 61.5,68.5 - parent: 12 - - uid: 30185 - components: - - type: Transform - pos: 61.5,69.5 - parent: 12 - uid: 30195 components: - type: Transform @@ -147341,41 +144052,51 @@ entities: parent: 12 - proto: GrilleBroken entities: - - uid: 9090 + - uid: 3719 + components: + - type: Transform + pos: -0.5,20.5 + parent: 12 + - uid: 7530 + components: + - type: Transform + pos: 44.5,-3.5 + parent: 12 + - uid: 7531 components: - type: Transform - pos: 41.5,6.5 + pos: 40.5,6.5 + parent: 12 + - uid: 11282 + components: + - type: Transform + pos: -1.5,15.5 parent: 12 - uid: 12027 components: - type: Transform pos: 46.5,13.5 parent: 12 - - uid: 21531 + - uid: 12352 components: - type: Transform - pos: -1.5,16.5 + pos: 48.5,-2.5 parent: 12 - - uid: 27103 + - uid: 19561 components: - type: Transform - pos: 56.5,14.5 + pos: 48.5,0.5 parent: 12 - - uid: 28674 + - uid: 25388 components: - type: Transform - pos: 44.5,-2.5 + pos: 34.5,-32.5 parent: 12 - uid: 28921 components: - type: Transform pos: 32.5,10.5 parent: 12 - - uid: 30490 - components: - - type: Transform - pos: 44.5,-4.5 - parent: 12 - uid: 30492 components: - type: Transform @@ -147471,6 +144192,233 @@ entities: - type: Transform pos: -12.5,79.5 parent: 12 +- proto: GrilleSpawner + entities: + - uid: 19569 + components: + - type: Transform + pos: 76.5,59.5 + parent: 12 + - uid: 20564 + components: + - type: Transform + pos: 65.5,70.5 + parent: 12 + - uid: 20565 + components: + - type: Transform + pos: 68.5,59.5 + parent: 12 + - uid: 20566 + components: + - type: Transform + pos: 61.5,64.5 + parent: 12 + - uid: 20855 + components: + - type: Transform + pos: 37.5,-47.5 + parent: 12 + - uid: 21065 + components: + - type: Transform + pos: 37.5,-52.5 + parent: 12 + - uid: 21083 + components: + - type: Transform + pos: 37.5,-51.5 + parent: 12 + - uid: 21313 + components: + - type: Transform + pos: 37.5,-50.5 + parent: 12 + - uid: 21332 + components: + - type: Transform + pos: 37.5,-49.5 + parent: 12 + - uid: 21369 + components: + - type: Transform + pos: 39.5,-61.5 + parent: 12 + - uid: 21516 + components: + - type: Transform + pos: 44.5,-61.5 + parent: 12 + - uid: 21530 + components: + - type: Transform + pos: 46.5,-61.5 + parent: 12 + - uid: 21531 + components: + - type: Transform + pos: 49.5,-61.5 + parent: 12 + - uid: 21601 + components: + - type: Transform + pos: 52.5,-61.5 + parent: 12 + - uid: 21607 + components: + - type: Transform + pos: 51.5,-61.5 + parent: 12 + - uid: 21621 + components: + - type: Transform + pos: 55.5,-61.5 + parent: 12 + - uid: 21703 + components: + - type: Transform + pos: 57.5,-61.5 + parent: 12 + - uid: 21871 + components: + - type: Transform + pos: 64.5,-61.5 + parent: 12 + - uid: 21926 + components: + - type: Transform + pos: 70.5,-61.5 + parent: 12 + - uid: 21970 + components: + - type: Transform + pos: 74.5,-58.5 + parent: 12 + - uid: 21971 + components: + - type: Transform + pos: -69.5,44.5 + parent: 12 + - uid: 22027 + components: + - type: Transform + pos: -62.5,40.5 + parent: 12 + - uid: 22028 + components: + - type: Transform + pos: -61.5,40.5 + parent: 12 + - uid: 22066 + components: + - type: Transform + pos: -64.5,56.5 + parent: 12 + - uid: 22075 + components: + - type: Transform + pos: -60.5,56.5 + parent: 12 + - uid: 22079 + components: + - type: Transform + pos: -69.5,52.5 + parent: 12 + - uid: 22080 + components: + - type: Transform + pos: -71.5,50.5 + parent: 12 + - uid: 22089 + components: + - type: Transform + pos: -69.5,55.5 + parent: 12 + - uid: 22092 + components: + - type: Transform + pos: -73.5,47.5 + parent: 12 + - uid: 22094 + components: + - type: Transform + pos: -72.5,46.5 + parent: 12 + - uid: 22095 + components: + - type: Transform + pos: 61.5,69.5 + parent: 12 + - uid: 22098 + components: + - type: Transform + pos: 60.5,78.5 + parent: 12 + - uid: 22100 + components: + - type: Transform + pos: 62.5,74.5 + parent: 12 + - uid: 22124 + components: + - type: Transform + pos: 48.5,80.5 + parent: 12 + - uid: 22126 + components: + - type: Transform + pos: 64.5,61.5 + parent: 12 + - uid: 22128 + components: + - type: Transform + pos: 46.5,80.5 + parent: 12 + - uid: 22131 + components: + - type: Transform + pos: 34.5,78.5 + parent: 12 + - uid: 22133 + components: + - type: Transform + pos: 38.5,78.5 + parent: 12 + - uid: 22134 + components: + - type: Transform + pos: 39.5,78.5 + parent: 12 + - uid: 22135 + components: + - type: Transform + pos: 53.5,80.5 + parent: 12 + - uid: 22137 + components: + - type: Transform + pos: 33.5,78.5 + parent: 12 + - uid: 22138 + components: + - type: Transform + pos: 32.5,78.5 + parent: 12 + - uid: 22139 + components: + - type: Transform + pos: 61.5,70.5 + parent: 12 + - uid: 22140 + components: + - type: Transform + pos: 59.5,-61.5 + parent: 12 + - uid: 25385 + components: + - type: Transform + pos: 61.5,68.5 + parent: 12 - proto: GroundCannabis entities: - uid: 12239 @@ -147497,6 +144445,13 @@ entities: - type: Transform pos: -32.5,66.5 parent: 12 +- proto: GunSafePistolMk58 + entities: + - uid: 9408 + components: + - type: Transform + pos: -37.5,68.5 + parent: 12 - proto: GunSafeRifleLecter entities: - uid: 20859 @@ -147610,7 +144565,8 @@ entities: - uid: 4080 components: - type: Transform - pos: -18.627468,-39.237103 + rot: -12.566370614359172 rad + pos: -18.443611,-38.54743 parent: 12 - uid: 6887 components: @@ -147636,13 +144592,12 @@ entities: - uid: 13843 components: - type: Transform - rot: -62.83185307179591 rad - pos: 30.038435,40.32396 + pos: 30.4622,39.447388 parent: 12 - uid: 25864 components: - type: Transform - pos: 53.47496,46.599808 + pos: 58.564953,50.55527 parent: 12 - proto: HappyHonk entities: @@ -147683,43 +144638,6 @@ entities: - type: Transform pos: -45.5,-19.5 parent: 12 - - uid: 9852 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,14.5 - parent: 12 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10979 - components: - - type: Transform - pos: 9.5,27.5 - parent: 12 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 11308 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,16.5 - parent: 12 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 27220 - components: - - type: Transform - pos: 11.5,27.5 - parent: 12 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 27222 - components: - - type: Transform - pos: 10.5,27.5 - parent: 12 - - type: AtmosPipeColor - color: '#00FFFFFF' - uid: 28293 components: - type: Transform @@ -148077,6 +144995,13 @@ entities: rot: 3.141592653589793 rad pos: -52.5,-15.5 parent: 12 +- proto: InflatableWall + entities: + - uid: 10617 + components: + - type: Transform + pos: 49.5,0.5 + parent: 12 - proto: IngotGold entities: - uid: 17438 @@ -148214,6 +145139,11 @@ entities: - type: Transform pos: 21.5,-19.5 parent: 12 + - uid: 7156 + components: + - type: Transform + pos: 46.5,1.5 + parent: 12 - uid: 9247 components: - type: Transform @@ -148242,11 +145172,6 @@ entities: - type: Transform pos: 43.5,46.5 parent: 12 - - uid: 27326 - components: - - type: Transform - pos: 46.5,0.5 - parent: 12 - uid: 27352 components: - type: Transform @@ -148469,8 +145394,8 @@ entities: - uid: 28698 components: - type: Transform - rot: -69.11503837897548 rad - pos: 57.52248,-5.5233436 + rot: -6.283185307179586 rad + pos: 57.513466,-4.4312396 parent: 12 - type: GasTank toggleActionEntity: 28700 @@ -148885,7 +145810,8 @@ entities: - uid: 11014 components: - type: Transform - pos: 47.426105,-3.4417992 + rot: -12.566370614359172 rad + pos: -0.6024373,17.635342 parent: 12 - proto: LightBulbOld entities: @@ -149118,6 +146044,11 @@ entities: - type: Transform pos: 51.5,-42.5 parent: 12 + - uid: 9181 + components: + - type: Transform + pos: 52.5,0.5 + parent: 12 - uid: 14230 components: - type: Transform @@ -149152,20 +146083,20 @@ entities: parent: 12 - proto: LockerEngineerFilledHardsuit entities: - - uid: 8859 + - uid: 2501 components: - type: Transform - pos: 11.5,-13.5 + pos: 13.5,-14.5 parent: 12 - - uid: 9870 + - uid: 2515 components: - type: Transform - pos: 8.5,-13.5 + pos: 12.5,-14.5 parent: 12 - - uid: 9871 + - uid: 3238 components: - type: Transform - pos: 9.5,-13.5 + pos: 14.5,-14.5 parent: 12 - proto: LockerEvidence entities: @@ -149672,6 +146603,62 @@ entities: - type: Transform pos: 3.5,-23.5 parent: 12 +- proto: LogicGateOr + entities: + - uid: 25547 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,-2.5 + parent: 12 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 1268: + - Output: DoorBolt + 2246: + - Output: DoorBolt + 11469: + - Output: DoorBolt + 12692: + - Output: DoorBolt + - uid: 25549 + components: + - type: Transform + pos: 60.5,-2.5 + parent: 12 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 25560: + - Output: InputB + - uid: 25550 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-1.5 + parent: 12 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 25560: + - Output: InputA + - uid: 25560 + components: + - type: Transform + pos: 61.5,-2.5 + parent: 12 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 4952: + - Output: DoorBolt + 9169: + - Output: DoorBolt - proto: LootSpawnerCableCoil entities: - uid: 9665 @@ -149686,11 +146673,6 @@ entities: - type: Transform pos: -20.5,16.5 parent: 12 - - uid: 23418 - components: - - type: Transform - pos: 48.5,46.5 - parent: 12 - uid: 23419 components: - type: Transform @@ -149706,18 +146688,8 @@ entities: - type: Transform pos: -5.5,-25.5 parent: 12 - - uid: 25738 - components: - - type: Transform - pos: -2.5,21.5 - parent: 12 - proto: LootSpawnerIndustrialFluff entities: - - uid: 2310 - components: - - type: Transform - pos: 34.5,6.5 - parent: 12 - uid: 2514 components: - type: Transform @@ -149728,6 +146700,11 @@ entities: - type: Transform pos: -11.5,-21.5 parent: 12 + - uid: 9396 + components: + - type: Transform + pos: 36.5,6.5 + parent: 12 - uid: 9608 components: - type: Transform @@ -149929,23 +146906,12 @@ entities: showEnts: False occludes: True ents: [] - - uid: 1809 + - uid: 3020 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-31.5 + rot: -1.5707963267948966 rad + pos: -2.5,19.5 parent: 12 - - type: ContainerContainer - containers: - machine_board: !type:Container - showEnts: False - occludes: True - ents: - - 1810 - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - uid: 5395 components: - type: Transform @@ -149985,6 +146951,11 @@ entities: ents: [] - proto: MachineFrameDestroyed entities: + - uid: 2575 + components: + - type: Transform + pos: 35.5,-30.5 + parent: 12 - uid: 13522 components: - type: Transform @@ -150115,6 +147086,11 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,68.5 parent: 12 + - uid: 5957 + components: + - type: Transform + pos: 50.5,1.5 + parent: 12 - uid: 11490 components: - type: Transform @@ -150207,6 +147183,11 @@ entities: - type: Transform pos: 44.5,63.5 parent: 12 + - uid: 10605 + components: + - type: Transform + pos: 49.5,-3.5 + parent: 12 - uid: 11240 components: - type: Transform @@ -150284,6 +147265,11 @@ entities: - type: Transform pos: 33.5,67.5 parent: 12 + - uid: 9298 + components: + - type: Transform + pos: 48.5,-3.5 + parent: 12 - uid: 13004 components: - type: Transform @@ -150294,6 +147280,16 @@ entities: - type: Transform pos: -5.5,17.5 parent: 12 + - uid: 19165 + components: + - type: Transform + pos: 49.5,48.5 + parent: 12 + - uid: 19821 + components: + - type: Transform + pos: 56.5,-7.5 + parent: 12 - uid: 21509 components: - type: Transform @@ -150314,11 +147310,6 @@ entities: - type: Transform pos: -5.5,36.5 parent: 12 - - uid: 23420 - components: - - type: Transform - pos: 49.5,46.5 - parent: 12 - uid: 24489 components: - type: Transform @@ -150421,6 +147412,13 @@ entities: - type: Transform pos: -28.5,-56.5 parent: 12 +- proto: MakeshiftShield + entities: + - uid: 4565 + components: + - type: Transform + pos: 47.514965,1.5594273 + parent: 12 - proto: Matchbox entities: - uid: 6885 @@ -150462,7 +147460,8 @@ entities: - uid: 31576 components: - type: Transform - pos: -12.718974,0.25232542 + rot: -6.283185307179586 rad + pos: -13.621389,-0.07474756 parent: 12 - proto: MechEquipmentGrabberSmall entities: @@ -150524,6 +147523,11 @@ entities: - type: Transform pos: -5.650505,-52.217426 parent: 12 + - uid: 7097 + components: + - type: Transform + pos: 11.492401,54.473515 + parent: 12 - uid: 9265 components: - type: Transform @@ -150644,13 +147648,6 @@ entities: - type: Transform pos: -19.515518,-47.45431 parent: 12 -- proto: MedkitRadiation - entities: - - uid: 8293 - components: - - type: Transform - pos: 59.512062,9.509785 - parent: 12 - proto: MedkitRadiationFilled entities: - uid: 2915 @@ -150663,11 +147660,6 @@ entities: - type: Transform pos: 28.47894,-15.335911 parent: 12 - - uid: 6778 - components: - - type: Transform - pos: 13.616542,-24.438873 - parent: 12 - proto: MedkitToxinFilled entities: - uid: 8893 @@ -150691,7 +147683,8 @@ entities: - uid: 31569 components: - type: Transform - pos: -12.746752,0.6345352 + rot: -6.283185307179586 rad + pos: -13.329722,0.44644773 parent: 12 - proto: MicrophoneInstrument entities: @@ -150741,6 +147734,13 @@ entities: - type: Transform pos: -12.5,52.5 parent: 12 +- proto: ModularReceiver + entities: + - uid: 19823 + components: + - type: Transform + pos: 51.5,-3.5 + parent: 12 - proto: MonkeyCubeWrapped entities: - uid: 19619 @@ -150760,6 +147760,11 @@ entities: parent: 12 - proto: MopBucket entities: + - uid: 25384 + components: + - type: Transform + pos: 36.5,-32.5 + parent: 12 - uid: 28404 components: - type: Transform @@ -150774,6 +147779,12 @@ entities: parent: 12 - proto: MopItem entities: + - uid: 8427 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: 37.37422,-32.282562 + parent: 12 - uid: 12262 components: - type: Transform @@ -150802,11 +147813,6 @@ entities: rot: -1.5707963267948966 rad pos: 8.5,-40.5 parent: 12 - - uid: 1705 - components: - - type: Transform - pos: -21.5,-27.5 - parent: 12 - uid: 4260 components: - type: Transform @@ -150837,6 +147843,11 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,-41.5 parent: 12 + - uid: 9395 + components: + - type: Transform + pos: -21.5,-27.5 + parent: 12 - uid: 12394 components: - type: Transform @@ -150920,23 +147931,18 @@ entities: - type: Transform pos: 38.5,-18.5 parent: 12 -- proto: Multitool - entities: - - uid: 1835 + - uid: 20606 components: - type: Transform - pos: -26.786606,-31.113516 + pos: 44.5,10.5 parent: 12 +- proto: Multitool + entities: - uid: 1941 components: - type: Transform pos: -32.59243,-21.422949 parent: 12 - - uid: 5247 - components: - - type: Transform - pos: 37.682983,4.6129007 - parent: 12 - uid: 5914 components: - type: Transform @@ -150962,11 +147968,6 @@ entities: - type: Transform pos: -51.23872,29.37216 parent: 12 - - uid: 22142 - components: - - type: Transform - pos: 60.1837,-0.4900638 - parent: 12 - uid: 23674 components: - type: Transform @@ -151043,11 +148044,6 @@ entities: - type: Transform pos: 33.5,-42.5 parent: 12 - - uid: 7165 - components: - - type: Transform - pos: 36.5,-30.5 - parent: 12 - uid: 8862 components: - type: Transform @@ -151163,34 +148159,6 @@ entities: - type: Transform pos: 29.894995,45.5396 parent: 12 - - uid: 25104 - components: - - type: Transform - parent: 28689 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 25191 - components: - - type: Transform - parent: 28690 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 28707 - components: - - type: Transform - rot: -37.69911184307754 rad - pos: 57.708927,9.40214 - parent: 12 - - type: GasTank - toggleActionEntity: 28708 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 28708 - uid: 30711 components: - type: Transform @@ -151255,6 +148223,20 @@ entities: actions: !type:Container ents: - 9827 + - uid: 11126 + components: + - type: Transform + rot: -119.380520836412 rad + pos: -19.35744,-30.595646 + parent: 12 + - type: GasTank + toggleActionEntity: 11199 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 11199 - uid: 30710 components: - type: Transform @@ -151342,11 +148324,6 @@ entities: parent: 12 - proto: OperatingTable entities: - - uid: 1812 - components: - - type: Transform - pos: -21.5,-29.5 - parent: 12 - uid: 1825 components: - type: Transform @@ -151362,6 +148339,11 @@ entities: - type: Transform pos: 5.5,-38.5 parent: 12 + - uid: 9553 + components: + - type: Transform + pos: -19.5,-29.5 + parent: 12 - uid: 9661 components: - type: Transform @@ -151413,11 +148395,6 @@ entities: - type: Transform pos: 55.5,8.5 parent: 12 - - uid: 7166 - components: - - type: Transform - pos: 35.5,-30.5 - parent: 12 - uid: 7236 components: - type: Transform @@ -151433,10 +148410,10 @@ entities: - type: Transform pos: 81.5,-32.5 parent: 12 - - uid: 12274 + - uid: 10631 components: - type: Transform - pos: 9.5,13.5 + pos: 13.5,12.5 parent: 12 - uid: 16456 components: @@ -151503,11 +148480,6 @@ entities: - type: Transform pos: -56.5,-35.5 parent: 12 - - uid: 29073 - components: - - type: Transform - pos: 4.5,13.5 - parent: 12 - uid: 29290 components: - type: Transform @@ -151548,20 +148520,6 @@ entities: actions: !type:Container ents: - 12128 - - uid: 28709 - components: - - type: Transform - rot: -37.69911184307754 rad - pos: 57.55129,9.456535 - parent: 12 - - type: GasTank - toggleActionEntity: 28710 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 28710 - uid: 30713 components: - type: Transform @@ -151859,10 +148817,10 @@ entities: - type: Transform pos: 18.5,27.5 parent: 12 - - uid: 13834 + - uid: 16659 components: - type: Transform - pos: 30.5,40.5 + pos: 29.5,40.5 parent: 12 - uid: 23583 components: @@ -152116,6 +149074,17 @@ entities: - type: Transform pos: 35.5,-17.5 parent: 12 + - uid: 8435 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: 53.5426,-3.492909 + parent: 12 + - uid: 8436 + components: + - type: Transform + pos: 61.5,-3.5 + parent: 12 - uid: 16482 components: - type: Transform @@ -152242,7 +149211,7 @@ entities: - uid: 13835 components: - type: Transform - pos: 30.590527,40.213753 + pos: 29.67214,40.62013 parent: 12 - uid: 16706 components: @@ -152392,16 +149361,15 @@ entities: - uid: 13842 components: - type: Transform - rot: -62.83185307179591 rad - pos: 29.664974,40.61453 + pos: 29.977695,40.521294 parent: 12 - proto: PillCanister entities: - uid: 4084 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.408745,-39.6174 + rot: -12.566370614359172 rad + pos: -20.999166,-37.583794 parent: 12 - uid: 25904 components: @@ -152413,7 +149381,8 @@ entities: - uid: 4083 components: - type: Transform - pos: -18.679577,-39.52365 + rot: -12.566370614359172 rad + pos: -20.684351,-37.412376 parent: 12 - proto: PillCanisterDylovene entities: @@ -152428,7 +149397,8 @@ entities: - uid: 4082 components: - type: Transform - pos: -18.398327,-39.200733 + rot: -12.566370614359172 rad + pos: -20.309351,-37.44481 parent: 12 - proto: PillCanisterTricordrazine entities: @@ -152440,21 +149410,20 @@ entities: - uid: 4081 components: - type: Transform - pos: -18.73166,-38.97157 + rot: -12.566370614359172 rad + pos: -20.503796,-37.630123 parent: 12 - uid: 13839 components: - type: Transform - rot: -62.83185307179591 rad - pos: 29.202692,40.65044 + pos: 30.486954,40.50585 parent: 12 - proto: PillDexalin entities: - uid: 3538 components: - type: Transform - rot: -62.83185307179591 rad - pos: 29.359419,40.423035 + pos: 30.19683,40.749847 parent: 12 - proto: PillDylovene entities: @@ -152481,16 +149450,14 @@ entities: - uid: 13840 components: - type: Transform - rot: -62.83185307179591 rad - pos: 29.439667,40.691742 + pos: 30.579548,40.74367 parent: 12 - proto: PillPotassiumIodide entities: - uid: 2871 components: - type: Transform - rot: -62.83185307179591 rad - pos: 29.529173,40.534225 + pos: 30.236954,40.57689 parent: 12 - proto: PillSpaceDrugs entities: @@ -152562,6 +149529,11 @@ entities: - type: Transform pos: -48.5,-35.5 parent: 12 + - uid: 2028 + components: + - type: Transform + pos: 12.5,12.5 + parent: 12 - uid: 4973 components: - type: Transform @@ -152572,11 +149544,6 @@ entities: - type: Transform pos: 24.5,-6.5 parent: 12 - - uid: 9741 - components: - - type: Transform - pos: 10.5,13.5 - parent: 12 - uid: 25479 components: - type: Transform @@ -152587,11 +149554,6 @@ entities: - type: Transform pos: 27.5,6.5 parent: 12 - - uid: 29074 - components: - - type: Transform - pos: 4.5,14.5 - parent: 12 - uid: 31158 components: - type: Transform @@ -152691,11 +149653,6 @@ entities: parent: 12 - proto: PlushieAtmosian entities: - - uid: 7169 - components: - - type: Transform - pos: 38.555447,-30.430433 - parent: 12 - uid: 25661 components: - type: Transform @@ -152705,7 +149662,8 @@ entities: - uid: 27187 components: - type: Transform - pos: 51.426647,-9.534098 + rot: -6.283185307179586 rad + pos: 27.557964,19.49243 parent: 12 - uid: 32094 components: @@ -152790,13 +149748,6 @@ entities: rot: -6.283185307179586 rad pos: -2.5359287,58.81089 parent: 12 -- proto: PlushieSpaceLizard - entities: - - uid: 2056 - components: - - type: Transform - pos: -19.408815,-29.402786 - parent: 12 - proto: PlushieVox entities: - uid: 21518 @@ -152844,15 +149795,15 @@ entities: - type: Transform pos: 42.5,-39.5 parent: 12 - - uid: 12025 + - uid: 11324 components: - type: Transform - pos: 40.5,10.5 + pos: -48.5,50.5 parent: 12 - - uid: 15859 + - uid: 12025 components: - type: Transform - pos: -44.5,46.5 + pos: 40.5,10.5 parent: 12 - uid: 17963 components: @@ -152927,10 +149878,10 @@ entities: bodyType: Static - proto: PortableGeneratorSuperPacman entities: - - uid: 10701 + - uid: 2465 components: - type: Transform - pos: 37.5,0.5 + pos: 8.5,-13.5 parent: 12 - proto: PortableScrubber entities: @@ -152954,11 +149905,6 @@ entities: - type: Transform pos: 4.5,-18.5 parent: 12 - - uid: 7161 - components: - - type: Transform - pos: 34.5,-30.5 - parent: 12 - uid: 11929 components: - type: Transform @@ -153120,11 +150066,10 @@ entities: parent: 12 - proto: PosterContrabandHighEffectEngineering entities: - - uid: 6287 + - uid: 16356 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,12.5 + pos: 61.5,13.5 parent: 12 - proto: PosterContrabandInterdyne entities: @@ -153284,11 +150229,6 @@ entities: parent: 12 - proto: PosterLegitSafetyEyeProtection entities: - - uid: 2970 - components: - - type: Transform - pos: 63.5,-2.5 - parent: 12 - uid: 11334 components: - type: Transform @@ -153307,10 +150247,10 @@ entities: - type: Transform pos: -20.5,-1.5 parent: 12 - - uid: 28719 + - uid: 22149 components: - type: Transform - pos: 63.5,7.5 + pos: 63.5,-3.5 parent: 12 - proto: PosterLegitSafetyMothHardhat entities: @@ -153324,10 +150264,11 @@ entities: - type: Transform pos: 29.5,-15.5 parent: 12 - - uid: 28718 + - uid: 22542 components: - type: Transform - pos: 58.5,-6.5 + rot: 1.5707963267948966 rad + pos: 58.5,-5.5 parent: 12 - proto: PosterLegitSafetyMothMeth entities: @@ -153826,10 +150767,10 @@ entities: - type: Transform pos: -5.5,-48.5 parent: 12 - - uid: 3957 + - uid: 4668 components: - type: Transform - pos: -23.5,-39.5 + pos: 3.5,11.5 parent: 12 - uid: 5492 components: @@ -153861,12 +150802,6 @@ entities: - type: Transform pos: 43.5,-39.5 parent: 12 - - uid: 9615 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,18.5 - parent: 12 - uid: 9814 components: - type: Transform @@ -154003,7 +150938,8 @@ entities: - uid: 31574 components: - type: Transform - pos: -12.246752,0.24537575 + rot: -6.283185307179586 rad + pos: -13.378334,-0.67933416 parent: 12 - proto: PowerComputerCircuitboard entities: @@ -154039,6 +150975,11 @@ entities: rot: -1.5707963267948966 rad pos: -26.5,-10.5 parent: 12 + - uid: 570 + components: + - type: Transform + pos: 12.5,18.5 + parent: 12 - uid: 1961 components: - type: Transform @@ -154123,18 +151064,6 @@ entities: rot: 1.5707963267948966 rad pos: -38.5,-38.5 parent: 12 - - uid: 1983 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-31.5 - parent: 12 - - uid: 1984 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-28.5 - parent: 12 - uid: 1985 components: - type: Transform @@ -154167,6 +151096,18 @@ entities: - type: Transform pos: -26.5,-41.5 parent: 12 + - uid: 2459 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,13.5 + parent: 12 + - uid: 2460 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,21.5 + parent: 12 - uid: 2479 components: - type: Transform @@ -154194,6 +151135,12 @@ entities: - type: Transform pos: -4.5,-32.5 parent: 12 + - uid: 2667 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,14.5 + parent: 12 - uid: 2763 components: - type: Transform @@ -154251,6 +151198,12 @@ entities: rot: 3.141592653589793 rad pos: -20.5,-21.5 parent: 12 + - uid: 3050 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,12.5 + parent: 12 - uid: 3478 components: - type: Transform @@ -154313,6 +151266,12 @@ entities: rot: 3.141592653589793 rad pos: -21.5,-39.5 parent: 12 + - uid: 3893 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,21.5 + parent: 12 - uid: 4021 components: - type: Transform @@ -154325,12 +151284,6 @@ entities: rot: 1.5707963267948966 rad pos: -46.5,-30.5 parent: 12 - - uid: 4226 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-30.5 - parent: 12 - uid: 4315 components: - type: Transform @@ -154342,6 +151295,12 @@ entities: - type: Transform pos: 1.5,-25.5 parent: 12 + - uid: 4561 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,2.5 + parent: 12 - uid: 4562 components: - type: Transform @@ -154699,6 +151658,11 @@ entities: rot: 1.5707963267948966 rad pos: 30.5,-47.5 parent: 12 + - uid: 9183 + components: + - type: Transform + pos: 5.5,18.5 + parent: 12 - uid: 9299 components: - type: Transform @@ -154973,16 +151937,17 @@ entities: rot: -1.5707963267948966 rad pos: -40.5,-33.5 parent: 12 - - uid: 11241 + - uid: 11223 components: - type: Transform rot: 1.5707963267948966 rad - pos: -13.5,-50.5 + pos: 64.5,8.5 parent: 12 - - uid: 11360 + - uid: 11241 components: - type: Transform - pos: 59.5,6.5 + rot: 1.5707963267948966 rad + pos: -13.5,-50.5 parent: 12 - uid: 12016 components: @@ -155026,6 +151991,11 @@ entities: rot: 3.141592653589793 rad pos: 19.5,-12.5 parent: 12 + - uid: 12276 + components: + - type: Transform + pos: 62.5,7.5 + parent: 12 - uid: 12312 components: - type: Transform @@ -155413,6 +152383,12 @@ entities: rot: 1.5707963267948966 rad pos: -4.5,26.5 parent: 12 + - uid: 16658 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,3.5 + parent: 12 - uid: 16816 components: - type: Transform @@ -155930,17 +152906,6 @@ entities: rot: -1.5707963267948966 rad pos: -27.5,53.5 parent: 12 - - uid: 19456 - components: - - type: Transform - pos: 9.5,28.5 - parent: 12 - - uid: 19549 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,13.5 - parent: 12 - uid: 19662 components: - type: Transform @@ -155974,12 +152939,6 @@ entities: rot: 3.141592653589793 rad pos: -47.5,54.5 parent: 12 - - uid: 21516 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,18.5 - parent: 12 - uid: 21566 components: - type: Transform @@ -156111,75 +153070,12 @@ entities: rot: -1.5707963267948966 rad pos: 57.5,-5.5 parent: 12 - - uid: 26855 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,2.5 - parent: 12 - - uid: 26857 - components: - - type: Transform - pos: 58.5,12.5 - parent: 12 - - uid: 26975 - components: - - type: Transform - pos: 68.5,12.5 - parent: 12 - uid: 26976 components: - type: Transform rot: 1.5707963267948966 rad pos: 64.5,0.5 parent: 12 - - uid: 26978 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,8.5 - parent: 12 - - uid: 26980 - components: - - type: Transform - pos: 76.5,12.5 - parent: 12 - - uid: 26981 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,8.5 - parent: 12 - - uid: 26982 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,0.5 - parent: 12 - - uid: 26983 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,-3.5 - parent: 12 - - uid: 26999 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,-3.5 - parent: 12 - - uid: 27209 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,21.5 - parent: 12 - - uid: 28240 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,19.5 - parent: 12 - uid: 28650 components: - type: Transform @@ -156435,11 +153331,17 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,54.5 parent: 12 - - uid: 2515 + - uid: 2291 components: - type: Transform rot: -1.5707963267948966 rad - pos: 15.5,14.5 + pos: 62.5,11.5 + parent: 12 + - uid: 2739 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-31.5 parent: 12 - uid: 2855 components: @@ -156519,11 +153421,6 @@ entities: rot: -1.5707963267948966 rad pos: -15.5,-60.5 parent: 12 - - uid: 5142 - components: - - type: Transform - pos: 18.5,16.5 - parent: 12 - uid: 5143 components: - type: Transform @@ -156542,18 +153439,6 @@ entities: rot: -1.5707963267948966 rad pos: 25.5,-4.5 parent: 12 - - uid: 5417 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,13.5 - parent: 12 - - uid: 5543 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-1.5 - parent: 12 - uid: 5833 components: - type: Transform @@ -156566,6 +153451,12 @@ entities: rot: 1.5707963267948966 rad pos: -28.5,-15.5 parent: 12 + - uid: 6183 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-28.5 + parent: 12 - uid: 6758 components: - type: Transform @@ -156582,11 +153473,6 @@ entities: rot: 3.141592653589793 rad pos: 62.5,-26.5 parent: 12 - - uid: 7170 - components: - - type: Transform - pos: 36.5,-30.5 - parent: 12 - uid: 7240 components: - type: Transform @@ -156764,6 +153650,12 @@ entities: rot: -1.5707963267948966 rad pos: -6.5,66.5 parent: 12 + - uid: 9437 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-30.5 + parent: 12 - uid: 9441 components: - type: Transform @@ -156781,16 +153673,16 @@ entities: - type: Transform pos: 2.5,68.5 parent: 12 - - uid: 9548 + - uid: 9540 components: - type: Transform - pos: 16.5,12.5 + rot: 1.5707963267948966 rad + pos: 60.5,-0.5 parent: 12 - - uid: 9557 + - uid: 9548 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,11.5 + pos: 16.5,12.5 parent: 12 - uid: 9853 components: @@ -156833,6 +153725,18 @@ entities: rot: -1.5707963267948966 rad pos: 14.5,35.5 parent: 12 + - uid: 11201 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-3.5 + parent: 12 + - uid: 11231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,11.5 + parent: 12 - uid: 11520 components: - type: Transform @@ -156937,12 +153841,6 @@ entities: - type: Transform pos: 57.5,-13.5 parent: 12 - - uid: 16365 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,9.5 - parent: 12 - uid: 16554 components: - type: Transform @@ -157111,6 +154009,18 @@ entities: rot: 1.5707963267948966 rad pos: -25.5,54.5 parent: 12 + - uid: 22160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,-1.5 + parent: 12 + - uid: 22163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,-7.5 + parent: 12 - uid: 22296 components: - type: Transform @@ -157146,6 +154056,12 @@ entities: rot: 3.141592653589793 rad pos: 27.5,65.5 parent: 12 + - uid: 23172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-30.5 + parent: 12 - uid: 23560 components: - type: Transform @@ -157202,11 +154118,6 @@ entities: - type: Transform pos: 53.5,6.5 parent: 12 - - uid: 26851 - components: - - type: Transform - pos: 62.5,-2.5 - parent: 12 - uid: 26852 components: - type: Transform @@ -157218,24 +154129,12 @@ entities: - type: Transform pos: 16.5,10.5 parent: 12 - - uid: 27030 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-0.5 - parent: 12 - uid: 27067 components: - type: Transform rot: 1.5707963267948966 rad pos: 46.5,-11.5 parent: 12 - - uid: 27156 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-7.5 - parent: 12 - uid: 27170 components: - type: Transform @@ -157299,12 +154198,6 @@ entities: - type: Transform pos: -0.5,-22.5 parent: 12 - - uid: 28682 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,-3.5 - parent: 12 - uid: 28745 components: - type: Transform @@ -157327,12 +154220,6 @@ entities: rot: -1.5707963267948966 rad pos: -22.5,64.5 parent: 12 - - uid: 29317 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,21.5 - parent: 12 - uid: 29656 components: - type: Transform @@ -157482,6 +154369,12 @@ entities: parent: 12 - proto: Rack entities: + - uid: 1069 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-30.5 + parent: 12 - uid: 1769 components: - type: Transform @@ -157554,15 +154447,11 @@ entities: - type: Transform pos: 5.5,61.5 parent: 12 - - uid: 5129 - components: - - type: Transform - pos: 61.5,-0.5 - parent: 12 - - uid: 5270 + - uid: 5027 components: - type: Transform - pos: 37.5,4.5 + rot: 3.141592653589793 rad + pos: 9.5,-13.5 parent: 12 - uid: 5873 components: @@ -157599,12 +154488,22 @@ entities: - type: Transform pos: 39.5,-19.5 parent: 12 + - uid: 7524 + components: + - type: Transform + pos: 54.5,-5.5 + parent: 12 - uid: 8040 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,-49.5 parent: 12 + - uid: 8713 + components: + - type: Transform + pos: 50.5,1.5 + parent: 12 - uid: 8868 components: - type: Transform @@ -157616,6 +154515,11 @@ entities: rot: 1.5707963267948966 rad pos: -32.5,65.5 parent: 12 + - uid: 9182 + components: + - type: Transform + pos: 52.5,1.5 + parent: 12 - uid: 9214 components: - type: Transform @@ -157654,6 +154558,16 @@ entities: - type: Transform pos: -11.5,-24.5 parent: 12 + - uid: 9722 + components: + - type: Transform + pos: 1.5,11.5 + parent: 12 + - uid: 9746 + components: + - type: Transform + pos: -0.5,17.5 + parent: 12 - uid: 9761 components: - type: Transform @@ -157687,12 +154601,28 @@ entities: rot: -1.5707963267948966 rad pos: -22.5,-11.5 parent: 12 + - uid: 11429 + components: + - type: Transform + pos: 61.5,-3.5 + parent: 12 - uid: 11476 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,-6.5 parent: 12 + - uid: 12056 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-28.5 + parent: 12 + - uid: 12265 + components: + - type: Transform + pos: 9.5,12.5 + parent: 12 - uid: 12318 components: - type: Transform @@ -157704,6 +154634,11 @@ entities: - type: Transform pos: 35.5,-9.5 parent: 12 + - uid: 16369 + components: + - type: Transform + pos: 34.5,-30.5 + parent: 12 - uid: 16451 components: - type: Transform @@ -157844,11 +154779,10 @@ entities: rot: -1.5707963267948966 rad pos: 2.5,-34.5 parent: 12 - - uid: 22531 + - uid: 22624 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,30.5 + pos: 56.5,-7.5 parent: 12 - uid: 23652 components: @@ -157871,11 +154805,6 @@ entities: rot: 1.5707963267948966 rad pos: 35.5,46.5 parent: 12 - - uid: 24333 - components: - - type: Transform - pos: 60.5,-0.5 - parent: 12 - uid: 24477 components: - type: Transform @@ -157899,11 +154828,6 @@ entities: rot: -1.5707963267948966 rad pos: 2.5,-32.5 parent: 12 - - uid: 25682 - components: - - type: Transform - pos: 57.5,9.5 - parent: 12 - uid: 25684 components: - type: Transform @@ -158080,11 +155004,6 @@ entities: - type: Transform pos: 28.5,14.5 parent: 12 - - uid: 26549 - components: - - type: Transform - pos: 62.5,-0.5 - parent: 12 - uid: 26571 components: - type: Transform @@ -158097,11 +155016,6 @@ entities: rot: 1.5707963267948966 rad pos: -37.5,64.5 parent: 12 - - uid: 27000 - components: - - type: Transform - pos: 54.5,-6.5 - parent: 12 - uid: 27397 components: - type: Transform @@ -158125,11 +155039,6 @@ entities: rot: 1.5707963267948966 rad pos: -28.5,-16.5 parent: 12 - - uid: 28704 - components: - - type: Transform - pos: 58.5,12.5 - parent: 12 - uid: 28759 components: - type: Transform @@ -158175,12 +155084,6 @@ entities: - type: Transform pos: -8.5,-66.5 parent: 12 - - uid: 31561 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,0.5 - parent: 12 - uid: 32108 components: - type: Transform @@ -158192,61 +155095,6 @@ entities: - type: Transform pos: -62.5,-52.5 parent: 12 -- proto: RadiationCollectorFlatpack - entities: - - uid: 4727 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: 61.41483,-0.5951568 - parent: 12 -- proto: RadiationCollectorFullTank - entities: - - uid: 26077 - components: - - type: Transform - pos: 72.5,12.5 - parent: 12 - - uid: 26157 - components: - - type: Transform - pos: 70.5,12.5 - parent: 12 - - uid: 26158 - components: - - type: Transform - pos: 80.5,4.5 - parent: 12 - - uid: 26159 - components: - - type: Transform - pos: 74.5,12.5 - parent: 12 - - uid: 26160 - components: - - type: Transform - pos: 80.5,2.5 - parent: 12 - - uid: 26522 - components: - - type: Transform - pos: 74.5,-3.5 - parent: 12 - - uid: 26526 - components: - - type: Transform - pos: 70.5,-3.5 - parent: 12 - - uid: 26796 - components: - - type: Transform - pos: 80.5,6.5 - parent: 12 - - uid: 26797 - components: - - type: Transform - pos: 72.5,-3.5 - parent: 12 - proto: RadioHandheld entities: - uid: 9805 @@ -158592,12 +155440,6 @@ entities: - type: Transform pos: 63.5,56.5 parent: 12 - - uid: 28688 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-2.5 - parent: 12 - uid: 28695 components: - type: Transform @@ -158861,6 +155703,14 @@ entities: rot: 1.5707963267948966 rad pos: -20.5,24.5 parent: 12 +- proto: RailingRound + entities: + - uid: 25531 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-32.5 + parent: 12 - proto: RandomArcade entities: - uid: 16926 @@ -159082,6 +155932,16 @@ entities: parent: 12 - proto: RandomPosterContraband entities: + - uid: 5245 + components: + - type: Transform + pos: 46.5,-2.5 + parent: 12 + - uid: 6008 + components: + - type: Transform + pos: 50.5,-4.5 + parent: 12 - uid: 8902 components: - type: Transform @@ -159143,6 +156003,11 @@ entities: rot: 3.141592653589793 rad pos: -2.5,18.5 parent: 12 + - uid: 24688 + components: + - type: Transform + pos: 54.5,-7.5 + parent: 12 - uid: 25387 components: - type: Transform @@ -159174,11 +156039,6 @@ entities: rot: 3.141592653589793 rad pos: 29.5,15.5 parent: 12 - - uid: 26825 - components: - - type: Transform - pos: 48.5,-2.5 - parent: 12 - uid: 28036 components: - type: Transform @@ -159283,11 +156143,6 @@ entities: - type: Transform pos: 39.5,-24.5 parent: 12 - - uid: 8992 - components: - - type: Transform - pos: 37.5,-29.5 - parent: 12 - uid: 8993 components: - type: Transform @@ -159647,6 +156502,11 @@ entities: - type: Transform pos: 40.5,16.5 parent: 12 + - uid: 9306 + components: + - type: Transform + pos: -1.5,15.5 + parent: 12 - uid: 12045 components: - type: Transform @@ -159883,11 +156743,6 @@ entities: - type: Transform pos: -6.5,15.5 parent: 12 - - uid: 24388 - components: - - type: Transform - pos: -1.5,16.5 - parent: 12 - uid: 24389 components: - type: Transform @@ -159988,11 +156843,6 @@ entities: - type: Transform pos: 39.5,-34.5 parent: 12 - - uid: 24409 - components: - - type: Transform - pos: 35.5,-31.5 - parent: 12 - uid: 24410 components: - type: Transform @@ -160626,6 +157476,16 @@ entities: parent: 12 - proto: ReinforcedPlasmaWindow entities: + - uid: 501 + components: + - type: Transform + pos: 7.5,19.5 + parent: 12 + - uid: 525 + components: + - type: Transform + pos: 15.5,19.5 + parent: 12 - uid: 728 components: - type: Transform @@ -160650,6 +157510,11 @@ entities: rot: 1.5707963267948966 rad pos: -50.5,-21.5 parent: 12 + - uid: 1915 + components: + - type: Transform + pos: 14.5,19.5 + parent: 12 - uid: 2266 components: - type: Transform @@ -160661,11 +157526,10 @@ entities: - type: Transform pos: 11.5,1.5 parent: 12 - - uid: 2872 + - uid: 3976 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,16.5 + pos: 6.5,19.5 parent: 12 - uid: 4606 components: @@ -160702,6 +157566,11 @@ entities: rot: 3.141592653589793 rad pos: 23.5,-8.5 parent: 12 + - uid: 7158 + components: + - type: Transform + pos: 16.5,19.5 + parent: 12 - uid: 7203 components: - type: Transform @@ -160719,69 +157588,26 @@ entities: rot: 1.5707963267948966 rad pos: 33.5,-0.5 parent: 12 - - uid: 7310 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-0.5 - parent: 12 - - uid: 9436 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,3.5 - parent: 12 - - uid: 9588 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,5.5 - parent: 12 - - uid: 9721 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,14.5 - parent: 12 - - uid: 10346 - components: - - type: Transform - pos: 57.5,7.5 - parent: 12 - - uid: 10656 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,4.5 - parent: 12 - - uid: 23116 - components: - - type: Transform - pos: 57.5,1.5 - parent: 12 - - uid: 26553 + - uid: 7269 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,4.5 + pos: 13.5,19.5 parent: 12 - - uid: 26572 + - uid: 7310 components: - type: Transform rot: 1.5707963267948966 rad - pos: 63.5,6.5 + pos: 34.5,-0.5 parent: 12 - - uid: 26573 + - uid: 11365 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,2.5 + pos: 8.5,19.5 parent: 12 - - uid: 26613 + - uid: 15671 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,5.5 + pos: 9.5,19.5 parent: 12 - uid: 26639 components: @@ -160798,12 +157624,6 @@ entities: - type: Transform pos: 11.5,0.5 parent: 12 - - uid: 26738 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,6.5 - parent: 12 - uid: 29002 components: - type: Transform @@ -161372,6 +158192,12 @@ entities: rot: 3.141592653589793 rad pos: -29.5,-45.5 parent: 12 + - uid: 1085 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,6.5 + parent: 12 - uid: 1172 components: - type: Transform @@ -161389,6 +158215,18 @@ entities: - type: Transform pos: -22.5,63.5 parent: 12 + - uid: 2029 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,11.5 + parent: 12 + - uid: 2056 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,11.5 + parent: 12 - uid: 2242 components: - type: Transform @@ -161477,11 +158315,6 @@ entities: - type: Transform pos: 30.5,-24.5 parent: 12 - - uid: 2667 - components: - - type: Transform - pos: -8.5,-60.5 - parent: 12 - uid: 2668 components: - type: Transform @@ -161507,16 +158340,6 @@ entities: - type: Transform pos: -6.5,-53.5 parent: 12 - - uid: 2720 - components: - - type: Transform - pos: -4.5,-53.5 - parent: 12 - - uid: 2721 - components: - - type: Transform - pos: -4.5,-54.5 - parent: 12 - uid: 2722 components: - type: Transform @@ -161537,51 +158360,26 @@ entities: - type: Transform pos: -4.5,-58.5 parent: 12 - - uid: 2733 - components: - - type: Transform - pos: -4.5,-60.5 - parent: 12 - - uid: 2734 - components: - - type: Transform - pos: -5.5,-60.5 - parent: 12 - - uid: 2735 - components: - - type: Transform - pos: -6.5,-60.5 - parent: 12 - uid: 2738 components: - type: Transform pos: -0.5,-54.5 parent: 12 - - uid: 2739 - components: - - type: Transform - pos: 0.5,-54.5 - parent: 12 - uid: 2896 components: - type: Transform pos: 34.5,-24.5 parent: 12 - - uid: 2907 - components: - - type: Transform - pos: -18.5,-30.5 - parent: 12 - - uid: 2918 + - uid: 2977 components: - type: Transform - pos: -18.5,-29.5 + pos: 17.5,14.5 parent: 12 - - uid: 2949 + - uid: 2979 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,-27.5 + pos: 13.5,11.5 parent: 12 - uid: 2981 components: @@ -161589,6 +158387,12 @@ entities: rot: 3.141592653589793 rad pos: 21.5,-6.5 parent: 12 + - uid: 2992 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,11.5 + parent: 12 - uid: 3068 components: - type: Transform @@ -161599,16 +158403,16 @@ entities: - type: Transform pos: -0.5,-25.5 parent: 12 - - uid: 3520 + - uid: 3601 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-28.5 + pos: 20.5,-33.5 parent: 12 - - uid: 3601 + - uid: 3948 components: - type: Transform - pos: 20.5,-33.5 + rot: -1.5707963267948966 rad + pos: 5.5,24.5 parent: 12 - uid: 4110 components: @@ -161753,6 +158557,18 @@ entities: rot: 3.141592653589793 rad pos: 21.5,-5.5 parent: 12 + - uid: 4693 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,11.5 + parent: 12 + - uid: 4965 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,-11.5 + parent: 12 - uid: 4971 components: - type: Transform @@ -162632,12 +159448,6 @@ entities: rot: -1.5707963267948966 rad pos: 82.5,-32.5 parent: 12 - - uid: 7717 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-11.5 - parent: 12 - uid: 7721 components: - type: Transform @@ -162758,24 +159568,6 @@ entities: rot: -1.5707963267948966 rad pos: 59.5,63.5 parent: 12 - - uid: 8427 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-6.5 - parent: 12 - - uid: 8428 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-6.5 - parent: 12 - - uid: 8429 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-6.5 - parent: 12 - uid: 8430 components: - type: Transform @@ -162788,11 +159580,6 @@ entities: rot: 3.141592653589793 rad pos: 49.5,-9.5 parent: 12 - - uid: 8456 - components: - - type: Transform - pos: -18.5,-28.5 - parent: 12 - uid: 8457 components: - type: Transform @@ -162885,32 +159672,16 @@ entities: rot: 1.5707963267948966 rad pos: -11.5,-44.5 parent: 12 - - uid: 9396 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-59.5 - parent: 12 - uid: 9415 components: - type: Transform pos: 21.5,8.5 parent: 12 - - uid: 9532 - components: - - type: Transform - pos: 8.5,12.5 - parent: 12 - - uid: 9533 + - uid: 9522 components: - type: Transform rot: 3.141592653589793 rad - pos: -3.5,-60.5 - parent: 12 - - uid: 9564 - components: - - type: Transform - pos: 13.5,12.5 + pos: 1.5,10.5 parent: 12 - uid: 9571 components: @@ -162924,53 +159695,49 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,-34.5 parent: 12 - - uid: 9678 + - uid: 9667 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-44.5 + pos: 17.5,17.5 parent: 12 - - uid: 9746 + - uid: 9678 components: - type: Transform rot: 1.5707963267948966 rad - pos: 51.5,1.5 + pos: -10.5,-44.5 parent: 12 - - uid: 9748 + - uid: 9681 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-7.5 + pos: 17.5,15.5 parent: 12 - - uid: 9749 + - uid: 9756 components: - type: Transform rot: 1.5707963267948966 rad - pos: 53.5,-7.5 + pos: -30.5,-13.5 parent: 12 - - uid: 9750 + - uid: 9868 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-7.5 + pos: 5.5,26.5 parent: 12 - - uid: 9751 + - uid: 9870 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-7.5 + pos: 5.5,25.5 parent: 12 - - uid: 9756 + - uid: 9908 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-13.5 + rot: 3.141592653589793 rad + pos: 2.5,10.5 parent: 12 - - uid: 9957 + - uid: 9978 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-5.5 + rot: 3.141592653589793 rad + pos: 3.5,10.5 parent: 12 - uid: 10014 components: @@ -162993,14 +159760,8 @@ entities: - uid: 10141 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-6.5 - parent: 12 - - uid: 10144 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-4.5 + rot: -1.5707963267948966 rad + pos: 59.5,-9.5 parent: 12 - uid: 10157 components: @@ -163398,12 +160159,6 @@ entities: rot: 1.5707963267948966 rad pos: -59.5,-22.5 parent: 12 - - uid: 10326 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-3.5 - parent: 12 - uid: 10340 components: - type: Transform @@ -163432,12 +160187,6 @@ entities: rot: 1.5707963267948966 rad pos: -13.5,10.5 parent: 12 - - uid: 10594 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-7.5 - parent: 12 - uid: 10682 components: - type: Transform @@ -163510,6 +160259,16 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,8.5 parent: 12 + - uid: 10792 + components: + - type: Transform + pos: 17.5,16.5 + parent: 12 + - uid: 10793 + components: + - type: Transform + pos: 17.5,18.5 + parent: 12 - uid: 10810 components: - type: Transform @@ -163532,18 +160291,6 @@ entities: rot: 1.5707963267948966 rad pos: -8.5,-44.5 parent: 12 - - uid: 11046 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,15.5 - parent: 12 - - uid: 11047 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,16.5 - parent: 12 - uid: 11117 components: - type: Transform @@ -163645,18 +160392,6 @@ entities: rot: -1.5707963267948966 rad pos: 18.5,25.5 parent: 12 - - uid: 11254 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,24.5 - parent: 12 - - uid: 11255 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,24.5 - parent: 12 - uid: 11256 components: - type: Transform @@ -163681,23 +160416,76 @@ entities: rot: -1.5707963267948966 rad pos: 25.5,27.5 parent: 12 + - uid: 11290 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,3.5 + parent: 12 + - uid: 11291 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,2.5 + parent: 12 - uid: 11298 components: - type: Transform pos: -25.5,69.5 parent: 12 + - uid: 11306 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,6.5 + parent: 12 + - uid: 11307 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,1.5 + parent: 12 - uid: 11339 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,-8.5 parent: 12 + - uid: 11355 + components: + - type: Transform + pos: -22.5,-28.5 + parent: 12 + - uid: 11376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,4.5 + parent: 12 + - uid: 11379 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,5.5 + parent: 12 + - uid: 11390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,4.5 + parent: 12 - uid: 11444 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-44.5 parent: 12 + - uid: 11474 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,-0.5 + parent: 12 - uid: 11516 components: - type: Transform @@ -163763,6 +160551,12 @@ entities: - type: Transform pos: 57.5,33.5 parent: 12 + - uid: 11633 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,5.5 + parent: 12 - uid: 11716 components: - type: Transform @@ -163963,11 +160757,6 @@ entities: - type: Transform pos: 59.5,38.5 parent: 12 - - uid: 11936 - components: - - type: Transform - pos: -5.5,-62.5 - parent: 12 - uid: 11946 components: - type: Transform @@ -164331,12 +161120,6 @@ entities: rot: 3.141592653589793 rad pos: -35.5,61.5 parent: 12 - - uid: 13168 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-53.5 - parent: 12 - uid: 14025 components: - type: Transform @@ -164999,12 +161782,6 @@ entities: rot: 3.141592653589793 rad pos: -6.5,79.5 parent: 12 - - uid: 16547 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,2.5 - parent: 12 - uid: 17273 components: - type: Transform @@ -165172,12 +161949,6 @@ entities: - type: Transform pos: -57.5,23.5 parent: 12 - - uid: 17773 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-2.5 - parent: 12 - uid: 17839 components: - type: Transform @@ -165291,18 +162062,6 @@ entities: rot: 3.141592653589793 rad pos: -37.5,50.5 parent: 12 - - uid: 19165 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,51.5 - parent: 12 - - uid: 19166 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,52.5 - parent: 12 - uid: 19194 components: - type: Transform @@ -165369,11 +162128,6 @@ entities: rot: 3.141592653589793 rad pos: -7.5,-16.5 parent: 12 - - uid: 19271 - components: - - type: Transform - pos: -18.5,-27.5 - parent: 12 - uid: 19278 components: - type: Transform @@ -165421,16 +162175,6 @@ entities: - type: Transform pos: -27.5,57.5 parent: 12 - - uid: 19457 - components: - - type: Transform - pos: 3.5,17.5 - parent: 12 - - uid: 19559 - components: - - type: Transform - pos: 5.5,20.5 - parent: 12 - uid: 19629 components: - type: Transform @@ -165544,12 +162288,6 @@ entities: - type: Transform pos: -54.5,38.5 parent: 12 - - uid: 21369 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-52.5 - parent: 12 - uid: 21868 components: - type: Transform @@ -165663,11 +162401,10 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,-46.5 parent: 12 - - uid: 23158 + - uid: 23134 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,22.5 + pos: -0.5,-48.5 parent: 12 - uid: 23164 components: @@ -165675,6 +162412,22 @@ entities: rot: -1.5707963267948966 rad pos: 17.5,8.5 parent: 12 + - uid: 23170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-9.5 + parent: 12 + - uid: 23601 + components: + - type: Transform + pos: 57.5,-8.5 + parent: 12 + - uid: 23664 + components: + - type: Transform + pos: 57.5,-7.5 + parent: 12 - uid: 23710 components: - type: Transform @@ -165705,36 +162458,18 @@ entities: rot: 1.5707963267948966 rad pos: -6.5,-44.5 parent: 12 - - uid: 24202 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-48.5 - parent: 12 - uid: 24203 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-48.5 parent: 12 - - uid: 24204 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-48.5 - parent: 12 - uid: 24205 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-48.5 parent: 12 - - uid: 24208 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-48.5 - parent: 12 - uid: 24211 components: - type: Transform @@ -165770,40 +162505,6 @@ entities: - type: Transform pos: 22.5,8.5 parent: 12 - - uid: 25384 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,52.5 - parent: 12 - - uid: 25386 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,51.5 - parent: 12 - - uid: 25530 - components: - - type: Transform - pos: 3.5,15.5 - parent: 12 - - uid: 25531 - components: - - type: Transform - pos: 3.5,16.5 - parent: 12 - - uid: 25547 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-29.5 - parent: 12 - - uid: 25549 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-30.5 - parent: 12 - uid: 25585 components: - type: Transform @@ -165833,18 +162534,6 @@ entities: rot: 1.5707963267948966 rad pos: 57.5,-46.5 parent: 12 - - uid: 26261 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,22.5 - parent: 12 - - uid: 26262 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,22.5 - parent: 12 - uid: 26299 components: - type: Transform @@ -165917,12 +162606,6 @@ entities: rot: -1.5707963267948966 rad pos: 24.5,12.5 parent: 12 - - uid: 26466 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-2.5 - parent: 12 - uid: 26484 components: - type: Transform @@ -165934,18 +162617,6 @@ entities: - type: Transform pos: 33.5,-3.5 parent: 12 - - uid: 26556 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,22.5 - parent: 12 - - uid: 26617 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,22.5 - parent: 12 - uid: 26619 components: - type: Transform @@ -165957,41 +162628,18 @@ entities: rot: 1.5707963267948966 rad pos: -41.5,53.5 parent: 12 - - uid: 26782 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-9.5 - parent: 12 - - uid: 26798 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,-9.5 - parent: 12 - uid: 26809 components: - type: Transform rot: -1.5707963267948966 rad pos: 24.5,11.5 parent: 12 - - uid: 27007 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-9.5 - parent: 12 - uid: 27039 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,67.5 parent: 12 - - uid: 27048 - components: - - type: Transform - pos: 4.5,20.5 - parent: 12 - uid: 27243 components: - type: Transform @@ -166187,47 +162835,6 @@ entities: rot: 3.141592653589793 rad pos: -4.5,-56.5 parent: 12 - - uid: 28613 - components: - - type: Transform - pos: -4.5,-62.5 - parent: 12 - - uid: 29069 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,0.5 - parent: 12 - - uid: 29080 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,0.5 - parent: 12 - - uid: 29081 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,0.5 - parent: 12 - - uid: 29082 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,0.5 - parent: 12 - - uid: 29176 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,2.5 - parent: 12 - - uid: 29177 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,2.5 - parent: 12 - uid: 29219 components: - type: Transform @@ -166268,26 +162875,6 @@ entities: rot: 1.5707963267948966 rad pos: -29.5,73.5 parent: 12 - - uid: 29309 - components: - - type: Transform - pos: 9.5,12.5 - parent: 12 - - uid: 29310 - components: - - type: Transform - pos: 10.5,12.5 - parent: 12 - - uid: 29311 - components: - - type: Transform - pos: 11.5,12.5 - parent: 12 - - uid: 29312 - components: - - type: Transform - pos: 12.5,12.5 - parent: 12 - uid: 29319 components: - type: Transform @@ -166486,11 +163073,6 @@ entities: rot: 3.141592653589793 rad pos: -4.5,-57.5 parent: 12 - - uid: 30437 - components: - - type: Transform - pos: -3.5,-62.5 - parent: 12 - uid: 30501 components: - type: Transform @@ -166846,17 +163428,6 @@ entities: parent: 12 - proto: RemoteSignaller entities: - - uid: 3009 - components: - - type: MetaData - name: TEG shutter door remote - - type: Transform - pos: 15.512024,16.164919 - parent: 12 - - type: DeviceLinkSource - linkedPorts: - 11: - - Pressed: Toggle - uid: 4914 components: - type: Transform @@ -166896,6 +163467,13 @@ entities: - type: Transform pos: 31.551949,51.708954 parent: 12 +- proto: RifleStock + entities: + - uid: 22820 + components: + - type: Transform + pos: 33.5,6.5 + parent: 12 - proto: RiotBulletShield entities: - uid: 20873 @@ -167028,10 +163606,11 @@ entities: parent: 12 - proto: SawElectric entities: - - uid: 2027 + - uid: 11312 components: - type: Transform - pos: -22.514305,-29.297949 + rot: -62.83185307179591 rad + pos: -19.456577,-27.187649 parent: 12 - uid: 13828 components: @@ -167055,11 +163634,6 @@ entities: parent: 12 - proto: Scalpel entities: - - uid: 2026 - components: - - type: Transform - pos: -22.350243,-29.696386 - parent: 12 - uid: 2700 components: - type: Transform @@ -167076,6 +163650,12 @@ entities: - type: Transform pos: 6.4121404,-38.844658 parent: 12 + - uid: 5125 + components: + - type: Transform + rot: -62.83185307179591 rad + pos: -19.623243,-27.84088 + parent: 12 - uid: 13829 components: - type: Transform @@ -167367,6 +163947,11 @@ entities: parent: 12 - proto: ShardGlass entities: + - uid: 3520 + components: + - type: Transform + pos: -0.5,20.5 + parent: 12 - uid: 7009 components: - type: Transform @@ -167425,7 +164010,7 @@ entities: - uid: 24176 components: - type: Transform - pos: 49.417187,48.49522 + pos: 49.57303,47.439972 parent: 12 - proto: SheetPlasma1 entities: @@ -167463,6 +164048,12 @@ entities: - type: Transform pos: -9.260001,24.655502 parent: 12 + - uid: 23173 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: 57.489006,-5.2227006 + parent: 12 - proto: SheetPlastic entities: - uid: 1947 @@ -167485,6 +164076,12 @@ entities: parent: 12 - proto: SheetSteel entities: + - uid: 366 + components: + - type: Transform + rot: -25.132741228718352 rad + pos: 9.414267,12.413563 + parent: 12 - uid: 1802 components: - type: Transform @@ -167511,26 +164108,27 @@ entities: - type: Transform pos: 35.454636,-19.489756 parent: 12 - - uid: 8898 + - uid: 6318 components: - type: Transform - rot: -37.69911184307754 rad - pos: 50.40397,-21.229546 + rot: -25.132741228718352 rad + pos: 9.685101,12.736704 parent: 12 - - uid: 9627 + - uid: 8439 components: - type: Transform - pos: 16.545898,19.482996 + pos: 61.5,-3.5 parent: 12 - - uid: 10380 + - uid: 8898 components: - type: Transform - pos: -26.496197,-8.588259 + rot: -37.69911184307754 rad + pos: 50.40397,-21.229546 parent: 12 - - uid: 11323 + - uid: 10380 components: - type: Transform - pos: 16.409882,19.390099 + pos: -26.496197,-8.588259 parent: 12 - uid: 16480 components: @@ -167567,13 +164165,14 @@ entities: parent: 12 - proto: SheetUranium1 entities: - - uid: 9481 + - uid: 11371 components: - type: Transform - pos: 37.50514,4.4669657 + rot: -18.84955592153876 rad + pos: 9.582282,-13.607407 parent: 12 - type: Stack - count: 5 + count: 10 - proto: ShelfBar entities: - uid: 22816 @@ -167598,11 +164197,16 @@ entities: parent: 12 - proto: Shiv entities: + - uid: 25201 + components: + - type: Transform + pos: 36.293972,-30.4844 + parent: 12 - uid: 30493 components: - type: Transform - rot: -18.84955592153876 rad - pos: 33.51523,8.510627 + rot: -75.39822368615505 rad + pos: 34.429405,8.474968 parent: 12 - uid: 31210 components: @@ -167731,28 +164335,10 @@ entities: parent: 12 - proto: ShuttersNormalOpen entities: - - uid: 2923 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-29.5 - parent: 12 - - uid: 3132 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-30.5 - parent: 12 - - uid: 3942 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-28.5 - parent: 12 - - uid: 6739 + - uid: 7529 components: - type: Transform - pos: 47.5,2.5 + pos: 51.5,-4.5 parent: 12 - uid: 8470 components: @@ -167764,24 +164350,6 @@ entities: - type: Transform pos: 49.5,-9.5 parent: 12 - - uid: 8472 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-6.5 - parent: 12 - - uid: 8473 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-6.5 - parent: 12 - - uid: 8474 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-6.5 - parent: 12 - uid: 10382 components: - type: Transform @@ -167995,90 +164563,8 @@ entities: rot: -1.5707963267948966 rad pos: 24.5,-22.5 parent: 12 - - uid: 27245 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-27.5 - parent: 12 - - uid: 29178 - components: - - type: Transform - pos: 48.5,2.5 - parent: 12 - - uid: 29179 - components: - - type: Transform - pos: 49.5,2.5 - parent: 12 -- proto: ShuttersRadiationOpen - entities: - - uid: 249 - components: - - type: Transform - pos: 57.5,1.5 - parent: 12 - - uid: 5027 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,6.5 - parent: 12 - - uid: 11019 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,4.5 - parent: 12 - - uid: 22100 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,5.5 - parent: 12 - - uid: 23161 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,4.5 - parent: 12 - - uid: 26414 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,5.5 - parent: 12 - - uid: 26461 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,6.5 - parent: 12 - - uid: 26490 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,3.5 - parent: 12 - - uid: 26578 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,2.5 - parent: 12 - - uid: 26596 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,7.5 - parent: 12 - proto: ShuttersWindow entities: - - uid: 11 - components: - - type: Transform - pos: 16.5,15.5 - parent: 12 - uid: 7800 components: - type: Transform @@ -168307,12 +164793,6 @@ entities: rot: 1.5707963267948966 rad pos: -41.5,53.5 parent: 12 - - type: DeviceLinkSource - linkedPorts: - 10323: - - Pressed: Toggle - 20562: - - Pressed: Toggle - uid: 7799 components: - type: Transform @@ -168337,12 +164817,6 @@ entities: - Pressed: Toggle 8470: - Pressed: Toggle - 8474: - - Pressed: Toggle - 8473: - - Pressed: Toggle - 8472: - - Pressed: Toggle - uid: 8826 components: - type: Transform @@ -168369,19 +164843,37 @@ entities: linkedPorts: 9123: - Pressed: Toggle - - uid: 9634 + - uid: 11216 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,16.5 + rot: 1.5707963267948966 rad + pos: 56.5,9.5 + parent: 12 + - type: DeviceLinkSource + linkedPorts: + 8974: + - Pressed: Toggle + 9003: + - Pressed: Toggle + 8976: + - Pressed: Toggle + 8992: + - Pressed: Toggle + - uid: 11450 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,7.5 parent: 12 - type: DeviceLinkSource linkedPorts: - 9722: + 8974: + - Pressed: Toggle + 9003: - Pressed: Toggle - 9715: + 8976: - Pressed: Toggle - 9718: + 8992: - Pressed: Toggle - uid: 13643 components: @@ -168575,16 +165067,6 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,-28.5 parent: 12 - - type: DeviceLinkSource - linkedPorts: - 3132: - - Pressed: Toggle - 2923: - - Pressed: Toggle - 3942: - - Pressed: Toggle - 27245: - - Pressed: Toggle - uid: 28346 components: - type: Transform @@ -168608,62 +165090,6 @@ entities: - Pressed: Open 2548: - Pressed: Open - - uid: 28737 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,1.5 - parent: 12 - - type: DeviceLinkSource - linkedPorts: - 26537: - - Pressed: Toggle - 26072: - - Pressed: Toggle - 26594: - - Pressed: Toggle - - uid: 28738 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,3.5 - parent: 12 - - type: DeviceLinkSource - linkedPorts: - 249: - - Pressed: Toggle - 23161: - - Pressed: Toggle - 22100: - - Pressed: Toggle - 5027: - - Pressed: Toggle - 26596: - - Pressed: Toggle - 26461: - - Pressed: Toggle - 26414: - - Pressed: Toggle - 11019: - - Pressed: Toggle - 26490: - - Pressed: Toggle - 26578: - - Pressed: Toggle - - uid: 29344 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,2.5 - parent: 12 - - type: DeviceLinkSource - linkedPorts: - 6739: - - Pressed: Toggle - 29178: - - Pressed: Toggle - 29179: - - Pressed: Toggle - uid: 29834 components: - type: Transform @@ -169137,46 +165563,22 @@ entities: rot: 3.141592653589793 rad pos: -25.5,75.5 parent: 12 - - uid: 8977 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,0.5 - parent: 12 - - uid: 9016 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 74.5,-5.5 - parent: 12 - - uid: 9017 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-5.5 - parent: 12 - - uid: 9667 + - uid: 7522 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,14.5 + pos: 63.5,7.5 parent: 12 - - uid: 9668 + - uid: 8977 components: - type: Transform rot: 1.5707963267948966 rad - pos: 82.5,1.5 + pos: 41.5,0.5 parent: 12 - uid: 11451 components: - type: Transform pos: -55.5,39.5 parent: 12 - - uid: 19815 - components: - - type: Transform - pos: 60.5,14.5 - parent: 12 - uid: 19829 components: - type: Transform @@ -169193,6 +165595,11 @@ entities: rot: 3.141592653589793 rad pos: -53.5,68.5 parent: 12 + - uid: 22153 + components: + - type: Transform + pos: 63.5,1.5 + parent: 12 - uid: 25392 components: - type: Transform @@ -169205,11 +165612,6 @@ entities: rot: 3.141592653589793 rad pos: -44.5,75.5 parent: 12 - - uid: 27097 - components: - - type: Transform - pos: 70.5,14.5 - parent: 12 - uid: 27155 components: - type: Transform @@ -169292,12 +165694,6 @@ entities: parent: 12 - proto: SignFlammable entities: - - uid: 16699 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,17.5 - parent: 12 - uid: 26428 components: - type: Transform @@ -169408,32 +165804,6 @@ entities: rot: 1.5707963267948966 rad pos: 33.5,55.5 parent: 12 -- proto: SignLaserMed - entities: - - uid: 28533 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,13.5 - parent: 12 - - uid: 28534 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,13.5 - parent: 12 - - uid: 28535 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,-4.5 - parent: 12 - - uid: 28648 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,-4.5 - parent: 12 - proto: SignLawyer entities: - uid: 18903 @@ -169530,23 +165900,6 @@ entities: - type: Transform pos: -20.5,-57.5 parent: 12 -- proto: SignRadiationMed - entities: - - uid: 9710 - components: - - type: Transform - pos: 56.5,1.5 - parent: 12 - - uid: 11338 - components: - - type: Transform - pos: 61.5,-2.5 - parent: 12 - - uid: 28925 - components: - - type: Transform - pos: 63.5,9.5 - parent: 12 - proto: SignReception entities: - uid: 4057 @@ -169708,6 +166061,20 @@ entities: - type: Transform pos: -29.5,-22.5 parent: 12 +- proto: SignSomethingOld + entities: + - uid: 5380 + components: + - type: Transform + pos: 3.5,23.5 + parent: 12 +- proto: SignSomethingOld2 + entities: + - uid: 5370 + components: + - type: Transform + pos: -5.5,21.5 + parent: 12 - proto: SignSpace entities: - uid: 29292 @@ -169766,13 +166133,6 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,69.5 parent: 12 -- proto: SingularityGenerator - entities: - - uid: 5130 - components: - - type: Transform - pos: 62.5,0.5 - parent: 12 - proto: Sink entities: - uid: 19874 @@ -169801,6 +166161,11 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,-29.5 parent: 12 + - uid: 8428 + components: + - type: Transform + pos: 37.5,-30.5 + parent: 12 - proto: SinkWide entities: - uid: 288 @@ -169895,7 +166260,7 @@ entities: - uid: 26065 components: - type: Transform - pos: 70.45827,20.649218 + pos: 54.49004,14.54105 parent: 12 - proto: SmallLight entities: @@ -169957,6 +166322,11 @@ entities: - type: Transform pos: 12.5,-17.5 parent: 12 + - uid: 5364 + components: + - type: Transform + pos: 62.5,0.5 + parent: 12 - uid: 7947 components: - type: Transform @@ -169977,16 +166347,6 @@ entities: - type: Transform pos: 38.5,-6.5 parent: 12 - - uid: 29181 - components: - - type: Transform - pos: 46.5,5.5 - parent: 12 - - uid: 31901 - components: - - type: Transform - pos: 59.5,12.5 - parent: 12 - uid: 32042 components: - type: Transform @@ -171658,14 +168018,6 @@ entities: - type: Transform pos: -50.5,21.5 parent: 12 -- proto: SpawnMobFrog - entities: - - uid: 22538 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,36.5 - parent: 12 - proto: SpawnMobGoat entities: - uid: 23176 @@ -171702,18 +168054,6 @@ entities: rot: -1.5707963267948966 rad pos: -20.5,22.5 parent: 12 - - uid: 22536 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,39.5 - parent: 12 - - uid: 22537 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,38.5 - parent: 12 - proto: SpawnMobMcGriff entities: - uid: 20839 @@ -171761,6 +168101,16 @@ entities: parent: 12 - proto: SpawnMobMouse entities: + - uid: 7533 + components: + - type: Transform + pos: 55.5,-7.5 + parent: 12 + - uid: 9748 + components: + - type: Transform + pos: 46.5,24.5 + parent: 12 - uid: 12317 components: - type: Transform @@ -171889,15 +168239,21 @@ entities: parent: 12 - proto: SpawnPointBorg entities: - - uid: 1775 + - uid: 9662 components: - type: Transform - pos: -25.5,-29.5 + pos: -23.5,-30.5 parent: 12 - - uid: 4045 + - uid: 12110 components: - type: Transform - pos: -21.5,-28.5 + rot: 1.5707963267948966 rad + pos: -26.5,-28.5 + parent: 12 + - uid: 12138 + components: + - type: Transform + pos: -24.5,-30.5 parent: 12 - proto: SpawnPointBotanist entities: @@ -172319,10 +168675,10 @@ entities: - type: Transform pos: -45.5,-34.5 parent: 12 - - uid: 2065 + - uid: 12353 components: - type: Transform - pos: -24.5,-30.5 + pos: -24.5,-28.5 parent: 12 - proto: SpawnPointSecurityCadet entities: @@ -172402,20 +168758,15 @@ entities: parent: 12 - proto: SpawnPointStationEngineer entities: - - uid: 4754 - components: - - type: Transform - pos: 9.5,-14.5 - parent: 12 - - uid: 4757 + - uid: 3469 components: - type: Transform - pos: 8.5,-14.5 + pos: 14.5,-15.5 parent: 12 - - uid: 5497 + - uid: 4629 components: - type: Transform - pos: 11.5,-14.5 + pos: 13.5,-15.5 parent: 12 - uid: 5501 components: @@ -172437,6 +168788,11 @@ entities: - type: Transform pos: 31.5,-19.5 parent: 12 + - uid: 9174 + components: + - type: Transform + pos: 12.5,-15.5 + parent: 12 - proto: SpawnPointTechnicalAssistant entities: - uid: 4856 @@ -173079,6 +169435,11 @@ entities: - type: Transform pos: 10.5,76.5 parent: 12 + - uid: 16345 + components: + - type: Transform + pos: 56.5,2.5 + parent: 12 - uid: 17608 components: - type: Transform @@ -173625,11 +169986,6 @@ entities: - type: Transform pos: 24.5,1.5 parent: 12 - - uid: 7171 - components: - - type: Transform - pos: 36.5,-32.5 - parent: 12 - uid: 20776 components: - type: Transform @@ -173710,6 +170066,11 @@ entities: - type: Transform pos: 38.5,-15.5 parent: 12 + - uid: 4528 + components: + - type: Transform + pos: 62.5,-0.5 + parent: 12 - uid: 4720 components: - type: Transform @@ -173795,11 +170156,6 @@ entities: - type: Transform pos: -36.5,-50.5 parent: 12 - - uid: 31896 - components: - - type: Transform - pos: 60.5,12.5 - parent: 12 - uid: 32116 components: - type: Transform @@ -173814,6 +170170,11 @@ entities: parent: 12 - proto: SuitStorageEngi entities: + - uid: 2287 + components: + - type: Transform + pos: 62.5,-3.5 + parent: 12 - uid: 4553 components: - type: Transform @@ -173829,66 +170190,11 @@ entities: - type: Transform pos: 29.5,-13.5 parent: 12 - - uid: 28689 - components: - - type: Transform - pos: 60.5,-2.5 - parent: 12 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 25104 - - uid: 28690 + - uid: 9173 components: - type: Transform - pos: 59.5,-2.5 + pos: 60.5,-3.5 parent: 12 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 25191 - proto: SuitStorageEVA entities: - uid: 22129 @@ -174013,17 +170319,6 @@ entities: - SurveillanceCameraCommand nameSet: True id: AI entrance - - uid: 3033 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,38.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Command camera room - uid: 3065 components: - type: Transform @@ -174308,6 +170603,39 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Engi hallway AME + - uid: 4761 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,16.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: TEG East + - uid: 6774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,8.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Tesla containment + - uid: 7157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,17.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: TEG West - uid: 8416 components: - type: Transform @@ -174340,16 +170668,28 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Engineering front - - uid: 12289 + - uid: 19166 components: - type: Transform - pos: 11.5,13.5 + rot: -1.5707963267948966 rad + pos: 57.5,10.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Tesla Storage + - uid: 19311 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,7.5 parent: 12 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True - id: TEG + id: PA - uid: 21894 components: - type: Transform @@ -174382,113 +170722,6 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Atmos entrance - - uid: 28784 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,4.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Containment east - - uid: 28785 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,12.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Containment north - - uid: 28786 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,6.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: PA room - - uid: 28787 - components: - - type: Transform - pos: 72.5,-3.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Containment south - - uid: 28788 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-2.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Containment monitoring room - - uid: 28790 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,6.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Break room - - uid: 28791 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,12.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Containment internals room - - uid: 28792 - components: - - type: Transform - pos: 61.5,-0.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Containment storage - - uid: 28793 - components: - - type: Transform - pos: 46.5,-1.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Containment entrance - - uid: 28794 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,4.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Station anchor - uid: 28795 components: - type: Transform @@ -174554,28 +170787,6 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Atmos canister storage - - uid: 28801 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,28.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: TEG exterior - - uid: 28807 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,47.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Northeast solars - uid: 28808 components: - type: Transform @@ -174674,17 +170885,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Hallway north B - - uid: 2902 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,48.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Hallway northeast A - uid: 2948 components: - type: Transform @@ -174771,16 +170971,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Evac east - - uid: 9835 - components: - - type: Transform - pos: 41.5,-32.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Vending machine room - uid: 9836 components: - type: Transform @@ -174802,17 +170992,17 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Evac north - - uid: 9847 + - uid: 12672 components: - type: Transform rot: -1.5707963267948966 rad - pos: -17.5,-26.5 + pos: 50.5,49.5 parent: 12 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraGeneral nameSet: True - id: Medical/Science hallway + id: Hallway Northeast - uid: 17130 components: - type: Transform @@ -174877,17 +171067,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Green dorm - - uid: 21926 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,28.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Bee room - uid: 21928 components: - type: Transform @@ -174909,16 +171088,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Salon - - uid: 22542 - components: - - type: Transform - pos: 3.5,34.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Pool - uid: 24135 components: - type: Transform @@ -175128,17 +171297,6 @@ entities: - SurveillanceCameraMedical nameSet: True id: Gene lab - - uid: 3960 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-56.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Virology isolated ward - uid: 3961 components: - type: Transform @@ -175380,11 +171538,6 @@ entities: - SurveillanceCameraScience nameSet: True id: Science front desk - - uid: 3976 - components: - - type: Transform - pos: -23.5,-31.5 - parent: 12 - uid: 3977 components: - type: Transform @@ -175417,16 +171570,6 @@ entities: - SurveillanceCameraScience nameSet: True id: Robotics - - uid: 21970 - components: - - type: Transform - pos: -20.5,-25.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Science entrance airlock - uid: 28803 components: - type: Transform @@ -175451,17 +171594,6 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Armory entrance - - uid: 3050 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,56.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Brigmed - uid: 8717 components: - type: Transform @@ -175581,16 +171713,6 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Armory - - uid: 23779 - components: - - type: Transform - pos: -46.5,50.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Warden's office - uid: 23780 components: - type: Transform @@ -175802,16 +171924,6 @@ entities: - SurveillanceCameraService nameSet: True id: Reporter's room - - uid: 21971 - components: - - type: Transform - pos: 20.5,26.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Musical observitory - uid: 24194 components: - type: Transform @@ -176029,17 +172141,6 @@ entities: - SurveillanceCameraSupply nameSet: True id: Salvage locker room - - uid: 9832 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-14.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Cargo dock - uid: 9833 components: - type: Transform @@ -176179,6 +172280,12 @@ entities: - type: Transform pos: -52.717888,28.43466 parent: 12 + - uid: 19562 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: 41.515606,-12.499336 + parent: 12 - proto: SyringeInaprovaline entities: - uid: 1842 @@ -176244,16 +172351,6 @@ entities: - type: Transform pos: -30.5,-21.5 parent: 12 - - uid: 1717 - components: - - type: Transform - pos: -26.5,-31.5 - parent: 12 - - uid: 1718 - components: - - type: Transform - pos: -25.5,-31.5 - parent: 12 - uid: 1719 components: - type: Transform @@ -176304,11 +172401,6 @@ entities: - type: Transform pos: -42.5,-41.5 parent: 12 - - uid: 2028 - components: - - type: Transform - pos: -22.5,-29.5 - parent: 12 - uid: 2112 components: - type: Transform @@ -176548,6 +172640,18 @@ entities: - type: Transform pos: 16.5,-15.5 parent: 12 + - uid: 4935 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,22.5 + parent: 12 + - uid: 4936 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,22.5 + parent: 12 - uid: 5015 components: - type: Transform @@ -176708,6 +172812,16 @@ entities: - type: Transform pos: -13.5,-50.5 parent: 12 + - uid: 9056 + components: + - type: Transform + pos: 2.5,11.5 + parent: 12 + - uid: 9077 + components: + - type: Transform + pos: 38.5,-31.5 + parent: 12 - uid: 9405 components: - type: Transform @@ -176719,6 +172833,11 @@ entities: - type: Transform pos: -5.5,-52.5 parent: 12 + - uid: 9679 + components: + - type: Transform + pos: 3.5,11.5 + parent: 12 - uid: 9743 components: - type: Transform @@ -176729,12 +172848,6 @@ entities: - type: Transform pos: 8.5,-9.5 parent: 12 - - uid: 9855 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,18.5 - parent: 12 - uid: 9992 components: - type: Transform @@ -176795,6 +172908,11 @@ entities: - type: Transform pos: -26.5,-8.5 parent: 12 + - uid: 10630 + components: + - type: Transform + pos: 52.5,46.5 + parent: 12 - uid: 10888 components: - type: Transform @@ -176807,11 +172925,15 @@ entities: rot: 1.5707963267948966 rad pos: 29.5,-2.5 parent: 12 - - uid: 10985 + - uid: 11040 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,19.5 + pos: 49.5,46.5 + parent: 12 + - uid: 11325 + components: + - type: Transform + pos: -19.5,-27.5 parent: 12 - uid: 11346 components: @@ -176863,6 +172985,16 @@ entities: rot: 1.5707963267948966 rad pos: -30.5,-44.5 parent: 12 + - uid: 12671 + components: + - type: Transform + pos: 48.5,46.5 + parent: 12 + - uid: 12673 + components: + - type: Transform + pos: 49.5,48.5 + parent: 12 - uid: 12717 components: - type: Transform @@ -176927,31 +173059,11 @@ entities: - type: Transform pos: 27.5,37.5 parent: 12 - - uid: 13976 - components: - - type: Transform - pos: 48.5,46.5 - parent: 12 - - uid: 13977 - components: - - type: Transform - pos: 49.5,46.5 - parent: 12 - uid: 13978 components: - type: Transform pos: 49.5,47.5 parent: 12 - - uid: 13979 - components: - - type: Transform - pos: 49.5,48.5 - parent: 12 - - uid: 13980 - components: - - type: Transform - pos: 52.5,46.5 - parent: 12 - uid: 13981 components: - type: Transform @@ -176962,11 +173074,6 @@ entities: - type: Transform pos: 52.5,48.5 parent: 12 - - uid: 13983 - components: - - type: Transform - pos: 53.5,46.5 - parent: 12 - uid: 14516 components: - type: Transform @@ -177097,12 +173204,6 @@ entities: - type: Transform pos: 34.5,53.5 parent: 12 - - uid: 15671 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,21.5 - parent: 12 - uid: 16307 components: - type: Transform @@ -177221,6 +173322,11 @@ entities: rot: 3.141592653589793 rad pos: -40.5,45.5 parent: 12 + - uid: 19279 + components: + - type: Transform + pos: 53.5,46.5 + parent: 12 - uid: 19398 components: - type: Transform @@ -177236,6 +173342,11 @@ entities: - type: Transform pos: -42.5,61.5 parent: 12 + - uid: 19436 + components: + - type: Transform + pos: -34.5,68.5 + parent: 12 - uid: 19872 components: - type: Transform @@ -178095,11 +174206,6 @@ entities: rot: -1.5707963267948966 rad pos: -10.5,71.5 parent: 12 - - uid: 31903 - components: - - type: Transform - pos: 59.5,9.5 - parent: 12 - proto: TableCarpet entities: - uid: 22653 @@ -178268,6 +174374,11 @@ entities: parent: 12 - proto: TableFrame entities: + - uid: 17599 + components: + - type: Transform + pos: 38.5,-32.5 + parent: 12 - uid: 30485 components: - type: Transform @@ -178592,22 +174703,12 @@ entities: rot: 1.5707963267948966 rad pos: -28.5,65.5 parent: 12 - - uid: 12011 - components: - - type: Transform - pos: 57.5,-6.5 - parent: 12 - uid: 12114 components: - type: Transform rot: 1.5707963267948966 rad pos: -33.5,-45.5 parent: 12 - - uid: 13009 - components: - - type: Transform - pos: 56.5,-6.5 - parent: 12 - uid: 13789 components: - type: Transform @@ -178874,6 +174975,12 @@ entities: - type: Transform pos: -43.5,32.5 parent: 12 + - uid: 19818 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,-4.5 + parent: 12 - uid: 19966 components: - type: Transform @@ -178889,6 +174996,12 @@ entities: - type: Transform pos: -24.5,-42.5 parent: 12 + - uid: 22536 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,-5.5 + parent: 12 - uid: 22613 components: - type: Transform @@ -178956,12 +175069,6 @@ entities: - type: Transform pos: -18.5,-19.5 parent: 12 - - uid: 27353 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-5.5 - parent: 12 - uid: 28260 components: - type: Transform @@ -179738,26 +175845,26 @@ entities: parent: 12 - proto: TegCenter entities: - - uid: 26368 + - uid: 12047 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,18.5 + rot: -1.5707963267948966 rad + pos: 11.5,15.5 parent: 12 - proto: TegCirculator entities: - - uid: 11064 + - uid: 3132 components: - type: Transform - pos: 11.5,18.5 + rot: 3.141592653589793 rad + pos: 10.5,15.5 parent: 12 - type: PointLight color: '#FF3300FF' - - uid: 11126 + - uid: 11944 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,18.5 + pos: 12.5,15.5 parent: 12 - type: PointLight color: '#FF3300FF' @@ -179831,122 +175938,109 @@ entities: parent: 12 - proto: TeslaCoil entities: - - uid: 3020 + - uid: 6741 components: - type: Transform + anchored: False rot: 1.5707963267948966 rad - pos: 71.5,-0.5 + pos: 62.5,10.5 parent: 12 - - uid: 3089 + - type: Physics + bodyType: Dynamic + - uid: 7152 components: - type: Transform + anchored: False rot: 1.5707963267948966 rad - pos: 71.5,9.5 + pos: 62.5,12.5 parent: 12 - - uid: 8439 + - type: Physics + bodyType: Dynamic + - uid: 10923 components: - type: Transform + anchored: False rot: 1.5707963267948966 rad - pos: 77.5,5.5 + pos: 61.5,11.5 parent: 12 - - uid: 8709 + - type: Physics + bodyType: Dynamic + - uid: 11019 components: - type: Transform + anchored: False rot: 1.5707963267948966 rad - pos: 73.5,-0.5 + pos: 62.5,11.5 parent: 12 - - uid: 9308 + - type: Physics + bodyType: Dynamic + - uid: 11039 components: - type: Transform + anchored: False rot: 1.5707963267948966 rad - pos: 77.5,3.5 + pos: 61.5,10.5 parent: 12 - - uid: 9414 + - type: Physics + bodyType: Dynamic + - uid: 11435 components: - type: Transform + anchored: False rot: 1.5707963267948966 rad - pos: 73.5,9.5 - parent: 12 -- proto: TeslaCoilFlatpack - entities: - - uid: 5187 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: 61.233635,-0.31611788 + pos: 61.5,12.5 parent: 12 + - type: Physics + bodyType: Dynamic - proto: TeslaGenerator entities: - - uid: 5158 + - uid: 4988 components: - type: Transform - pos: 60.5,0.5 + pos: 60.5,10.5 parent: 12 - proto: TeslaGroundingRod entities: - - uid: 3127 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,10.5 - parent: 12 - - uid: 8846 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,7.5 - parent: 12 - - uid: 8856 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,10.5 - parent: 12 - - uid: 8857 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,-1.5 - parent: 12 - - uid: 9406 + - uid: 5528 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,1.5 + anchored: False + pos: 59.5,12.5 parent: 12 - - uid: 9456 + - type: Physics + bodyType: Dynamic + - uid: 11304 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,-1.5 + anchored: False + pos: 59.5,11.5 parent: 12 - - uid: 26527 + - type: Physics + bodyType: Dynamic + - uid: 15687 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,1.5 + anchored: False + pos: 60.5,12.5 parent: 12 - - uid: 26528 + - type: Physics + bodyType: Dynamic + - uid: 16349 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,7.5 + anchored: False + pos: 60.5,11.5 parent: 12 -- proto: TeslaGroundingRodFlatpack + - type: Physics + bodyType: Dynamic +- proto: ThermomachineFreezerMachineCircuitBoard entities: - - uid: 21621 - components: - - type: Transform - rot: -12.566370614359172 rad - pos: 60.604073,-0.31611776 - parent: 12 - - uid: 27003 + - uid: 11244 components: - type: Transform - pos: 60.715595,-0.57507586 + rot: -25.132741228718352 rad + pos: 2.7921197,11.371174 parent: 12 -- proto: ThermomachineFreezerMachineCircuitBoard - entities: - uid: 23708 components: - type: Transform @@ -179954,6 +176048,12 @@ entities: parent: 12 - proto: ThermomachineHeaterMachineCircuitBoard entities: + - uid: 1917 + components: + - type: Transform + rot: -25.132741228718352 rad + pos: 2.927537,11.631771 + parent: 12 - uid: 23707 components: - type: Transform @@ -180012,6 +176112,12 @@ entities: parent: 12 - proto: ToiletDirtyWater entities: + - uid: 2845 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-30.5 + parent: 12 - uid: 4218 components: - type: Transform @@ -180112,6 +176218,12 @@ entities: parent: 12 - proto: ToolboxElectricalFilled entities: + - uid: 2259 + components: + - type: Transform + rot: -25.132741228718352 rad + pos: 1.41712,11.464989 + parent: 12 - uid: 3586 components: - type: Transform @@ -180233,6 +176345,12 @@ entities: - type: Transform pos: -46.53791,-40.44164 parent: 12 + - uid: 2021 + components: + - type: Transform + rot: -25.132741228718352 rad + pos: 1.6879535,11.527533 + parent: 12 - uid: 5912 components: - type: Transform @@ -180344,7 +176462,7 @@ entities: - uid: 24128 components: - type: Transform - pos: 53.060947,46.619484 + pos: 58.407543,47.57981 parent: 12 - proto: ToyFigurineBoxer entities: @@ -180476,7 +176594,8 @@ entities: - uid: 2497 components: - type: Transform - pos: -19.357992,-38.81534 + rot: -12.566370614359172 rad + pos: -19.476633,-39.26552 parent: 12 - proto: ToyFigurineMime entities: @@ -180540,7 +176659,8 @@ entities: - uid: 23416 components: - type: Transform - pos: -37.477703,53.58296 + rot: -6.283185307179586 rad + pos: -39.49372,55.609993 parent: 12 - proto: ToyFigurineWizardFake entities: @@ -180678,8 +176798,7 @@ entities: - uid: 28715 components: - type: Transform - rot: -69.11503837897548 rad - pos: 56.595398,-6.4191794 + pos: 52.670685,1.6892309 parent: 12 - proto: TrumpetInstrument entities: @@ -181741,17 +177860,17 @@ entities: parent: 12 - proto: VendingMachineRoboDrobe entities: - - uid: 1811 + - uid: 12354 components: - type: Transform - pos: -21.5,-31.5 + pos: -23.5,-27.5 parent: 12 - proto: VendingMachineRobotics entities: - - uid: 2025 + - uid: 289 components: - type: Transform - pos: -23.5,-27.5 + pos: -26.5,-31.5 parent: 12 - proto: VendingMachineSalvage entities: @@ -181886,16 +178005,6 @@ entities: parent: 12 - proto: VendingMachineTankDispenserEngineering entities: - - uid: 570 - components: - - type: Transform - pos: 57.5,8.5 - parent: 12 - - uid: 16777 - components: - - type: Transform - pos: 10.5,-13.5 - parent: 12 - uid: 27384 components: - type: Transform @@ -182185,12 +178294,6 @@ entities: rot: 3.141592653589793 rad pos: 4.5,6.5 parent: 12 - - uid: 68 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-20.5 - parent: 12 - uid: 76 components: - type: Transform @@ -182201,11 +178304,6 @@ entities: - type: Transform pos: -31.5,12.5 parent: 12 - - uid: 79 - components: - - type: Transform - pos: 48.5,-2.5 - parent: 12 - uid: 80 components: - type: Transform @@ -182587,6 +178685,11 @@ entities: rot: 1.5707963267948966 rad pos: 0.5,-17.5 parent: 12 + - uid: 206 + components: + - type: Transform + pos: 7.5,27.5 + parent: 12 - uid: 211 components: - type: Transform @@ -182635,6 +178738,11 @@ entities: rot: 1.5707963267948966 rad pos: 0.5,-21.5 parent: 12 + - uid: 227 + components: + - type: Transform + pos: 6.5,27.5 + parent: 12 - uid: 232 components: - type: Transform @@ -182645,6 +178753,11 @@ entities: - type: Transform pos: -7.5,-19.5 parent: 12 + - uid: 249 + components: + - type: Transform + pos: 56.5,12.5 + parent: 12 - uid: 282 components: - type: Transform @@ -182656,12 +178769,6 @@ entities: - type: Transform pos: 39.5,-9.5 parent: 12 - - uid: 327 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-18.5 - parent: 12 - uid: 376 components: - type: Transform @@ -182672,11 +178779,6 @@ entities: - type: Transform pos: -30.5,-9.5 parent: 12 - - uid: 383 - components: - - type: Transform - pos: -12.5,-19.5 - parent: 12 - uid: 386 components: - type: Transform @@ -182794,27 +178896,6 @@ entities: rot: 3.141592653589793 rad pos: -28.5,0.5 parent: 12 - - uid: 493 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-26.5 - parent: 12 - - uid: 494 - components: - - type: Transform - pos: -19.5,-26.5 - parent: 12 - - uid: 495 - components: - - type: Transform - pos: -18.5,-26.5 - parent: 12 - - uid: 505 - components: - - type: Transform - pos: -22.5,-32.5 - parent: 12 - uid: 516 components: - type: Transform @@ -182830,16 +178911,6 @@ entities: - type: Transform pos: -34.5,-18.5 parent: 12 - - uid: 524 - components: - - type: Transform - pos: -20.5,-32.5 - parent: 12 - - uid: 525 - components: - - type: Transform - pos: -21.5,-32.5 - parent: 12 - uid: 532 components: - type: Transform @@ -182860,15 +178931,22 @@ entities: - type: Transform pos: -24.5,-32.5 parent: 12 - - uid: 540 + - uid: 551 components: - type: Transform - pos: -23.5,-32.5 + pos: -13.5,-25.5 parent: 12 - - uid: 551 + - uid: 564 components: - type: Transform - pos: -13.5,-25.5 + rot: 3.141592653589793 rad + pos: -5.5,-17.5 + parent: 12 + - uid: 566 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-14.5 parent: 12 - uid: 569 components: @@ -183056,12 +179134,6 @@ entities: - type: Transform pos: 39.5,-10.5 parent: 12 - - uid: 697 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,-3.5 - parent: 12 - uid: 703 components: - type: Transform @@ -183273,12 +179345,6 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,5.5 parent: 12 - - uid: 908 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-1.5 - parent: 12 - uid: 923 components: - type: Transform @@ -183373,6 +179439,16 @@ entities: rot: -1.5707963267948966 rad pos: -28.5,-51.5 parent: 12 + - uid: 1057 + components: + - type: Transform + pos: -47.5,52.5 + parent: 12 + - uid: 1058 + components: + - type: Transform + pos: -47.5,51.5 + parent: 12 - uid: 1075 components: - type: Transform @@ -183442,23 +179518,11 @@ entities: - type: Transform pos: -54.5,-45.5 parent: 12 - - uid: 1538 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,50.5 - parent: 12 - uid: 1549 components: - type: Transform pos: 26.5,-6.5 parent: 12 - - uid: 1551 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-18.5 - parent: 12 - uid: 1556 components: - type: Transform @@ -183508,12 +179572,6 @@ entities: rot: 3.141592653589793 rad pos: 23.5,2.5 parent: 12 - - uid: 2031 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,50.5 - parent: 12 - uid: 2032 components: - type: Transform @@ -183525,6 +179583,12 @@ entities: - type: Transform pos: -54.5,-43.5 parent: 12 + - uid: 2052 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,11.5 + parent: 12 - uid: 2078 components: - type: Transform @@ -183617,12 +179681,6 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,3.5 parent: 12 - - uid: 2305 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,17.5 - parent: 12 - uid: 2325 components: - type: Transform @@ -183716,26 +179774,6 @@ entities: rot: -1.5707963267948966 rad pos: 20.5,60.5 parent: 12 - - uid: 2654 - components: - - type: Transform - pos: -9.5,-62.5 - parent: 12 - - uid: 2655 - components: - - type: Transform - pos: -9.5,-61.5 - parent: 12 - - uid: 2656 - components: - - type: Transform - pos: -9.5,-60.5 - parent: 12 - - uid: 2664 - components: - - type: Transform - pos: -7.5,-60.5 - parent: 12 - uid: 2781 components: - type: Transform @@ -183762,6 +179800,11 @@ entities: rot: -1.5707963267948966 rad pos: 28.5,1.5 parent: 12 + - uid: 2878 + components: + - type: Transform + pos: 63.5,11.5 + parent: 12 - uid: 2883 components: - type: Transform @@ -183824,12 +179867,6 @@ entities: - type: Transform pos: 4.5,-33.5 parent: 12 - - uid: 3012 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,12.5 - parent: 12 - uid: 3013 components: - type: Transform @@ -183851,6 +179888,12 @@ entities: - type: Transform pos: -10.5,3.5 parent: 12 + - uid: 3516 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,-4.5 + parent: 12 - uid: 3631 components: - type: Transform @@ -183879,24 +179922,12 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,-2.5 parent: 12 - - uid: 3945 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,5.5 - parent: 12 - uid: 4013 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,11.5 parent: 12 - - uid: 4055 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,13.5 - parent: 12 - uid: 4103 components: - type: Transform @@ -183907,6 +179938,11 @@ entities: - type: Transform pos: 7.5,-53.5 parent: 12 + - uid: 4386 + components: + - type: Transform + pos: 57.5,8.5 + parent: 12 - uid: 4389 components: - type: Transform @@ -184055,22 +180091,37 @@ entities: rot: 1.5707963267948966 rad pos: 17.5,21.5 parent: 12 + - uid: 4680 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,-3.5 + parent: 12 + - uid: 4681 + components: + - type: Transform + pos: 10.5,22.5 + parent: 12 - uid: 4682 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-1.5 parent: 12 - - uid: 4685 + - uid: 4683 components: - type: Transform - pos: 10.5,4.5 + pos: 12.5,20.5 parent: 12 - - uid: 4693 + - uid: 4684 components: - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,13.5 + pos: 10.5,20.5 + parent: 12 + - uid: 4685 + components: + - type: Transform + pos: 10.5,4.5 parent: 12 - uid: 4714 components: @@ -184130,24 +180181,12 @@ entities: - type: Transform pos: 26.5,-8.5 parent: 12 - - uid: 4936 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,-4.5 - parent: 12 - uid: 4949 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,-9.5 parent: 12 - - uid: 4952 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,12.5 - parent: 12 - uid: 4955 components: - type: Transform @@ -184160,12 +180199,6 @@ entities: rot: 3.141592653589793 rad pos: 24.5,-1.5 parent: 12 - - uid: 4988 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,-0.5 - parent: 12 - uid: 4992 components: - type: Transform @@ -184198,12 +180231,6 @@ entities: - type: Transform pos: 23.5,-11.5 parent: 12 - - uid: 5033 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,13.5 - parent: 12 - uid: 5040 components: - type: Transform @@ -184298,11 +180325,6 @@ entities: - type: Transform pos: 37.5,-4.5 parent: 12 - - uid: 5111 - components: - - type: Transform - pos: 60.5,9.5 - parent: 12 - uid: 5112 components: - type: Transform @@ -184313,12 +180335,6 @@ entities: - type: Transform pos: -27.5,8.5 parent: 12 - - uid: 5126 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 82.5,6.5 - parent: 12 - uid: 5139 components: - type: Transform @@ -184377,12 +180393,6 @@ entities: - type: Transform pos: 12.5,-12.5 parent: 12 - - uid: 5214 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 82.5,11.5 - parent: 12 - uid: 5220 components: - type: Transform @@ -184548,27 +180558,15 @@ entities: rot: 3.141592653589793 rad pos: 27.5,-19.5 parent: 12 - - uid: 5519 - components: - - type: Transform - pos: 34.5,-15.5 - parent: 12 - - uid: 5527 - components: - - type: Transform - pos: 48.5,-3.5 - parent: 12 - - uid: 5528 + - uid: 5485 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,12.5 + pos: 63.5,12.5 parent: 12 - - uid: 5553 + - uid: 5519 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,10.5 + pos: 34.5,-15.5 parent: 12 - uid: 5562 components: @@ -184605,6 +180603,18 @@ entities: - type: Transform pos: 35.5,-16.5 parent: 12 + - uid: 5618 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-17.5 + parent: 12 + - uid: 5620 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-15.5 + parent: 12 - uid: 5628 components: - type: Transform @@ -184639,12 +180649,6 @@ entities: - type: Transform pos: 13.5,6.5 parent: 12 - - uid: 5815 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,14.5 - parent: 12 - uid: 5820 components: - type: Transform @@ -184666,6 +180670,12 @@ entities: - type: Transform pos: 27.5,4.5 parent: 12 + - uid: 5891 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,14.5 + parent: 12 - uid: 5904 components: - type: Transform @@ -184786,12 +180796,6 @@ entities: rot: -1.5707963267948966 rad pos: 44.5,-40.5 parent: 12 - - uid: 6309 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-41.5 - parent: 12 - uid: 6317 components: - type: Transform @@ -184909,6 +180913,11 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,-10.5 parent: 12 + - uid: 7278 + components: + - type: Transform + pos: 5.5,19.5 + parent: 12 - uid: 7286 components: - type: Transform @@ -184953,12 +180962,6 @@ entities: rot: -1.5707963267948966 rad pos: 27.5,18.5 parent: 12 - - uid: 7360 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-6.5 - parent: 12 - uid: 7363 components: - type: Transform @@ -185145,12 +181148,6 @@ entities: rot: -1.5707963267948966 rad pos: 62.5,-27.5 parent: 12 - - uid: 7524 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-6.5 - parent: 12 - uid: 7525 components: - type: Transform @@ -185169,48 +181166,12 @@ entities: rot: -1.5707963267948966 rad pos: 50.5,-9.5 parent: 12 - - uid: 7528 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-10.5 - parent: 12 - - uid: 7529 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,-10.5 - parent: 12 - - uid: 7530 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-10.5 - parent: 12 - - uid: 7531 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-9.5 - parent: 12 - uid: 7532 components: - type: Transform rot: -1.5707963267948966 rad pos: 57.5,-9.5 parent: 12 - - uid: 7533 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-9.5 - parent: 12 - - uid: 7534 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-9.5 - parent: 12 - uid: 7535 components: - type: Transform @@ -185240,6 +181201,12 @@ entities: - type: Transform pos: -9.5,-4.5 parent: 12 + - uid: 7571 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,-6.5 + parent: 12 - uid: 7575 components: - type: Transform @@ -185648,42 +181615,6 @@ entities: - type: Transform pos: 31.5,1.5 parent: 12 - - uid: 8974 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,-4.5 - parent: 12 - - uid: 8976 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 76.5,-4.5 - parent: 12 - - uid: 9008 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,-4.5 - parent: 12 - - uid: 9009 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,-4.5 - parent: 12 - - uid: 9010 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,-4.5 - parent: 12 - - uid: 9012 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-4.5 - parent: 12 - uid: 9013 components: - type: Transform @@ -185696,23 +181627,22 @@ entities: rot: 1.5707963267948966 rad pos: 60.5,-4.5 parent: 12 - - uid: 9055 + - uid: 9041 components: - type: Transform rot: 1.5707963267948966 rad - pos: 81.5,1.5 + pos: 57.5,-6.5 parent: 12 - - uid: 9056 + - uid: 9053 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,2.5 + rot: 3.141592653589793 rad + pos: 12.5,23.5 parent: 12 - - uid: 9057 + - uid: 9054 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,-2.5 + pos: 10.5,19.5 parent: 12 - uid: 9058 components: @@ -185765,6 +181695,11 @@ entities: rot: 1.5707963267948966 rad pos: 14.5,8.5 parent: 12 + - uid: 9308 + components: + - type: Transform + pos: 12.5,19.5 + parent: 12 - uid: 9379 components: - type: Transform @@ -185792,24 +181727,12 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,0.5 parent: 12 - - uid: 9432 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,9.5 - parent: 12 - uid: 9443 components: - type: Transform rot: 3.141592653589793 rad pos: 64.5,-26.5 parent: 12 - - uid: 9502 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,20.5 - parent: 12 - uid: 9506 components: - type: Transform @@ -185839,17 +181762,10 @@ entities: rot: 3.141592653589793 rad pos: -51.5,56.5 parent: 12 - - uid: 9526 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,10.5 - parent: 12 - - uid: 9527 + - uid: 9533 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,17.5 + pos: 62.5,8.5 parent: 12 - uid: 9534 components: @@ -185857,18 +181773,6 @@ entities: rot: 3.141592653589793 rad pos: -51.5,60.5 parent: 12 - - uid: 9540 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,11.5 - parent: 12 - - uid: 9542 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,12.5 - parent: 12 - uid: 9545 components: - type: Transform @@ -185880,6 +181784,11 @@ entities: - type: Transform pos: 39.5,-15.5 parent: 12 + - uid: 9562 + components: + - type: Transform + pos: 56.5,10.5 + parent: 12 - uid: 9589 components: - type: Transform @@ -185892,12 +181801,6 @@ entities: rot: -1.5707963267948966 rad pos: 14.5,12.5 parent: 12 - - uid: 9592 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,17.5 - parent: 12 - uid: 9613 components: - type: Transform @@ -185922,17 +181825,17 @@ entities: rot: -1.5707963267948966 rad pos: 17.5,13.5 parent: 12 - - uid: 9642 + - uid: 9640 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,12.5 + rot: 3.141592653589793 rad + pos: 17.5,23.5 parent: 12 - - uid: 9643 + - uid: 9642 components: - type: Transform rot: -1.5707963267948966 rad - pos: 18.5,13.5 + pos: 17.5,12.5 parent: 12 - uid: 9645 components: @@ -185940,69 +181843,33 @@ entities: rot: -1.5707963267948966 rad pos: 14.5,11.5 parent: 12 - - uid: 9650 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 76.5,13.5 - parent: 12 - uid: 9652 components: - type: Transform rot: 3.141592653589793 rad pos: -51.5,65.5 parent: 12 - - uid: 9662 + - uid: 9669 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-2.5 + rot: 1.5707963267948966 rad + pos: 3.5,21.5 parent: 12 - uid: 9675 components: - type: Transform pos: 48.5,7.5 parent: 12 - - uid: 9679 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-2.5 - parent: 12 - - uid: 9681 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,8.5 - parent: 12 - - uid: 9701 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,13.5 - parent: 12 - uid: 9704 components: - type: Transform pos: 20.5,8.5 parent: 12 - - uid: 9713 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,11.5 - parent: 12 - - uid: 9716 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,14.5 - parent: 12 - - uid: 9726 + - uid: 9715 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,17.5 + rot: 1.5707963267948966 rad + pos: 5.5,23.5 parent: 12 - uid: 9729 components: @@ -186010,23 +181877,11 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,10.5 parent: 12 - - uid: 9731 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,12.5 - parent: 12 - - uid: 9734 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-62.5 - parent: 12 - - uid: 9747 + - uid: 9750 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,-60.5 + pos: 47.5,-6.5 parent: 12 - uid: 9766 components: @@ -186201,12 +182056,6 @@ entities: - type: Transform pos: -56.5,20.5 parent: 12 - - uid: 10381 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-1.5 - parent: 12 - uid: 10396 components: - type: Transform @@ -186344,24 +182193,6 @@ entities: rot: 1.5707963267948966 rad pos: 0.5,14.5 parent: 12 - - uid: 10603 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,12.5 - parent: 12 - - uid: 10604 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,13.5 - parent: 12 - - uid: 10605 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,14.5 - parent: 12 - uid: 10608 components: - type: Transform @@ -186380,29 +182211,11 @@ entities: rot: 1.5707963267948966 rad pos: 0.5,19.5 parent: 12 - - uid: 10617 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,12.5 - parent: 12 - - uid: 10618 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,12.5 - parent: 12 - - uid: 10628 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,23.5 - parent: 12 - - uid: 10630 + - uid: 10632 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,22.5 + pos: 1.5,21.5 parent: 12 - uid: 10633 components: @@ -186410,18 +182223,6 @@ entities: rot: 1.5707963267948966 rad pos: 54.5,-50.5 parent: 12 - - uid: 10636 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,12.5 - parent: 12 - - uid: 10637 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,14.5 - parent: 12 - uid: 10639 components: - type: Transform @@ -186508,8 +182309,7 @@ entities: - uid: 10655 components: - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,13.5 + pos: 12.5,22.5 parent: 12 - uid: 10669 components: @@ -186665,47 +182465,11 @@ entities: rot: 1.5707963267948966 rad pos: -40.5,33.5 parent: 12 - - uid: 10790 + - uid: 10841 components: - type: Transform rot: 3.141592653589793 rad - pos: 61.5,12.5 - parent: 12 - - uid: 10791 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 77.5,13.5 - parent: 12 - - uid: 10792 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,13.5 - parent: 12 - - uid: 10793 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,-4.5 - parent: 12 - - uid: 10795 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 79.5,13.5 - parent: 12 - - uid: 10826 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,10.5 - parent: 12 - - uid: 10833 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,6.5 + pos: -3.5,-17.5 parent: 12 - uid: 10842 components: @@ -186719,6 +182483,12 @@ entities: rot: -1.5707963267948966 rad pos: 58.5,-5.5 parent: 12 + - uid: 10890 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,-6.5 + parent: 12 - uid: 10909 components: - type: Transform @@ -186734,18 +182504,6 @@ entities: - type: Transform pos: 38.5,4.5 parent: 12 - - uid: 10937 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,13.5 - parent: 12 - - uid: 10938 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,-5.5 - parent: 12 - uid: 10939 components: - type: Transform @@ -186776,6 +182534,18 @@ entities: rot: -1.5707963267948966 rad pos: -39.5,73.5 parent: 12 + - uid: 10980 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,11.5 + parent: 12 + - uid: 10984 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,22.5 + parent: 12 - uid: 11000 components: - type: Transform @@ -186793,35 +182563,10 @@ entities: - type: Transform pos: -29.5,-9.5 parent: 12 - - uid: 11035 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,-4.5 - parent: 12 - uid: 11038 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,19.5 - parent: 12 - - uid: 11039 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,20.5 - parent: 12 - - uid: 11048 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-4.5 - parent: 12 - - uid: 11050 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 74.5,-4.5 + pos: 5.5,20.5 parent: 12 - uid: 11051 components: @@ -186829,12 +182574,6 @@ entities: rot: 1.5707963267948966 rad pos: 62.5,-4.5 parent: 12 - - uid: 11053 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-4.5 - parent: 12 - uid: 11128 components: - type: Transform @@ -187014,66 +182753,6 @@ entities: rot: -1.5707963267948966 rad pos: -44.5,27.5 parent: 12 - - uid: 11199 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,23.5 - parent: 12 - - uid: 11200 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,23.5 - parent: 12 - - uid: 11201 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,23.5 - parent: 12 - - uid: 11202 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,24.5 - parent: 12 - - uid: 11204 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,25.5 - parent: 12 - - uid: 11205 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,26.5 - parent: 12 - - uid: 11206 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,27.5 - parent: 12 - - uid: 11207 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,29.5 - parent: 12 - - uid: 11209 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,-4.5 - parent: 12 - - uid: 11213 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,22.5 - parent: 12 - uid: 11217 components: - type: Transform @@ -187200,11 +182879,11 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,22.5 parent: 12 - - uid: 11276 + - uid: 11274 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,-4.5 + rot: -1.5707963267948966 rad + pos: 62.5,1.5 parent: 12 - uid: 11296 components: @@ -187212,11 +182891,23 @@ entities: rot: -1.5707963267948966 rad pos: -25.5,71.5 parent: 12 - - uid: 11306 + - uid: 11319 components: - type: Transform rot: 3.141592653589793 rad - pos: 6.5,22.5 + pos: 0.5,15.5 + parent: 12 + - uid: 11327 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,23.5 + parent: 12 + - uid: 11329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,21.5 parent: 12 - uid: 11389 components: @@ -187265,11 +182956,6 @@ entities: rot: 1.5707963267948966 rad pos: 36.5,19.5 parent: 12 - - uid: 11429 - components: - - type: Transform - pos: -6.5,-62.5 - parent: 12 - uid: 11439 components: - type: Transform @@ -187300,31 +182986,6 @@ entities: - type: Transform pos: 50.5,7.5 parent: 12 - - uid: 11453 - components: - - type: Transform - pos: 54.5,13.5 - parent: 12 - - uid: 11456 - components: - - type: Transform - pos: 53.5,13.5 - parent: 12 - - uid: 11458 - components: - - type: Transform - pos: 53.5,15.5 - parent: 12 - - uid: 11474 - components: - - type: Transform - pos: -7.5,-62.5 - parent: 12 - - uid: 11477 - components: - - type: Transform - pos: -8.5,-62.5 - parent: 12 - uid: 11521 components: - type: Transform @@ -187623,16 +183284,16 @@ entities: - type: Transform pos: 42.5,14.5 parent: 12 - - uid: 12100 + - uid: 12011 components: - type: Transform - pos: 43.5,13.5 + rot: 3.141592653589793 rad + pos: 48.5,-6.5 parent: 12 - - uid: 12110 + - uid: 12100 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,-4.5 + pos: 43.5,13.5 parent: 12 - uid: 12217 components: @@ -187724,16 +183385,15 @@ entities: rot: -1.5707963267948966 rad pos: -29.5,-40.5 parent: 12 - - uid: 12573 + - uid: 12641 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,28.5 + pos: 35.5,5.5 parent: 12 - - uid: 12641 + - uid: 12714 components: - type: Transform - pos: 35.5,5.5 + pos: 56.5,9.5 parent: 12 - uid: 12810 components: @@ -188529,6 +184189,12 @@ entities: - type: Transform pos: 50.5,5.5 parent: 12 + - uid: 15999 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,0.5 + parent: 12 - uid: 16001 components: - type: Transform @@ -188544,6 +184210,11 @@ entities: - type: Transform pos: 50.5,4.5 parent: 12 + - uid: 16360 + components: + - type: Transform + pos: 56.5,11.5 + parent: 12 - uid: 16646 components: - type: Transform @@ -190105,11 +185776,6 @@ entities: - type: Transform pos: -30.5,66.5 parent: 12 - - uid: 22080 - components: - - type: Transform - pos: 65.5,14.5 - parent: 12 - uid: 22081 components: - type: Transform @@ -190140,31 +185806,11 @@ entities: - type: Transform pos: 56.5,13.5 parent: 12 - - uid: 22089 - components: - - type: Transform - pos: 64.5,13.5 - parent: 12 - uid: 22091 components: - type: Transform pos: 60.5,13.5 parent: 12 - - uid: 22092 - components: - - type: Transform - pos: 60.5,14.5 - parent: 12 - - uid: 22124 - components: - - type: Transform - pos: 69.5,13.5 - parent: 12 - - uid: 22153 - components: - - type: Transform - pos: 75.5,13.5 - parent: 12 - uid: 22164 components: - type: Transform @@ -190315,35 +185961,34 @@ entities: rot: -1.5707963267948966 rad pos: -16.5,74.5 parent: 12 - - uid: 23157 + - uid: 23162 components: - type: Transform rot: 3.141592653589793 rad - pos: 62.5,-1.5 + pos: 52.5,-5.5 parent: 12 - - uid: 23159 + - uid: 23166 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,22.5 + rot: -1.5707963267948966 rad + pos: 18.5,8.5 parent: 12 - - uid: 23160 + - uid: 23171 components: - type: Transform rot: 3.141592653589793 rad - pos: 14.5,22.5 + pos: 52.5,-3.5 parent: 12 - - uid: 23166 + - uid: 23177 components: - type: Transform rot: -1.5707963267948966 rad - pos: 18.5,8.5 + pos: -57.5,63.5 parent: 12 - - uid: 23177 + - uid: 23598 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,63.5 + pos: 46.5,-6.5 parent: 12 - uid: 23700 components: @@ -190386,11 +186031,6 @@ entities: - type: Transform pos: 48.5,66.5 parent: 12 - - uid: 23985 - components: - - type: Transform - pos: 60.5,8.5 - parent: 12 - uid: 24226 components: - type: Transform @@ -190454,24 +186094,12 @@ entities: - type: Transform pos: -30.5,-5.5 parent: 12 - - uid: 24453 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,-1.5 - parent: 12 - uid: 24460 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.5,71.5 parent: 12 - - uid: 24469 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-61.5 - parent: 12 - uid: 24663 components: - type: Transform @@ -190510,15 +186138,15 @@ entities: rot: -1.5707963267948966 rad pos: 11.5,-18.5 parent: 12 - - uid: 25101 + - uid: 25135 components: - type: Transform - pos: 63.5,0.5 + pos: 63.5,8.5 parent: 12 - - uid: 25135 + - uid: 25136 components: - type: Transform - pos: 63.5,8.5 + pos: 45.5,-40.5 parent: 12 - uid: 25275 components: @@ -190543,12 +186171,6 @@ entities: rot: 3.141592653589793 rad pos: -23.5,56.5 parent: 12 - - uid: 25385 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,50.5 - parent: 12 - uid: 25391 components: - type: Transform @@ -190673,10 +186295,11 @@ entities: - type: Transform pos: -50.5,45.5 parent: 12 - - uid: 25527 + - uid: 25526 components: - type: Transform - pos: 3.5,18.5 + rot: 1.5707963267948966 rad + pos: 54.5,-6.5 parent: 12 - uid: 25551 components: @@ -190746,16 +186369,6 @@ entities: rot: -1.5707963267948966 rad pos: -24.5,66.5 parent: 12 - - uid: 25835 - components: - - type: Transform - pos: 3.5,12.5 - parent: 12 - - uid: 25889 - components: - - type: Transform - pos: -20.5,-31.5 - parent: 12 - uid: 25902 components: - type: Transform @@ -190771,16 +186384,6 @@ entities: - type: Transform pos: -49.5,58.5 parent: 12 - - uid: 26007 - components: - - type: Transform - pos: -19.5,-31.5 - parent: 12 - - uid: 26045 - components: - - type: Transform - pos: -18.5,-31.5 - parent: 12 - uid: 26067 components: - type: Transform @@ -190792,12 +186395,6 @@ entities: rot: 3.141592653589793 rad pos: 63.5,-27.5 parent: 12 - - uid: 26104 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-4.5 - parent: 12 - uid: 26131 components: - type: Transform @@ -190854,24 +186451,12 @@ entities: rot: -1.5707963267948966 rad pos: 28.5,11.5 parent: 12 - - uid: 26440 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,4.5 - parent: 12 - uid: 26448 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,6.5 parent: 12 - - uid: 26469 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,-1.5 - parent: 12 - uid: 26472 components: - type: Transform @@ -190912,12 +186497,6 @@ entities: - type: Transform pos: 56.5,3.5 parent: 12 - - uid: 26489 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-4.5 - parent: 12 - uid: 26492 components: - type: Transform @@ -190936,62 +186515,18 @@ entities: rot: 3.141592653589793 rad pos: 59.5,0.5 parent: 12 - - uid: 26563 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,13.5 - parent: 12 - - uid: 26603 - components: - - type: Transform - pos: 65.5,13.5 - parent: 12 - - uid: 26605 - components: - - type: Transform - pos: 70.5,14.5 - parent: 12 - uid: 26611 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,6.5 parent: 12 - - uid: 26612 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,7.5 - parent: 12 - uid: 26634 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-17.5 parent: 12 - - uid: 26637 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,7.5 - parent: 12 - - uid: 26638 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 79.5,-4.5 - parent: 12 - - uid: 26670 - components: - - type: Transform - pos: 66.5,13.5 - parent: 12 - - uid: 26786 - components: - - type: Transform - pos: 63.5,-0.5 - parent: 12 - uid: 26822 components: - type: Transform @@ -191015,44 +186550,12 @@ entities: rot: 1.5707963267948966 rad pos: 38.5,-16.5 parent: 12 - - uid: 26882 - components: - - type: Transform - pos: 56.5,-9.5 - parent: 12 - - uid: 27038 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,20.5 - parent: 12 - - uid: 27043 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,21.5 - parent: 12 - uid: 27050 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,-13.5 parent: 12 - - uid: 27076 - components: - - type: Transform - pos: 67.5,13.5 - parent: 12 - - uid: 27091 - components: - - type: Transform - pos: 68.5,13.5 - parent: 12 - - uid: 27106 - components: - - type: Transform - pos: 55.5,13.5 - parent: 12 - uid: 27147 components: - type: Transform @@ -191151,12 +186654,6 @@ entities: rot: 1.5707963267948966 rad pos: -28.5,61.5 parent: 12 - - uid: 27924 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,21.5 - parent: 12 - uid: 27952 components: - type: Transform @@ -191368,12 +186865,6 @@ entities: rot: 1.5707963267948966 rad pos: 56.5,8.5 parent: 12 - - uid: 28743 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,10.5 - parent: 12 - uid: 28834 components: - type: Transform @@ -191687,30 +187178,18 @@ entities: rot: 1.5707963267948966 rad pos: 17.5,22.5 parent: 12 - - uid: 31892 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,22.5 - parent: 12 - - uid: 31895 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,18.5 - parent: 12 - - uid: 31906 +- proto: WallReinforcedRust + entities: + - uid: 191 components: - type: Transform - pos: 60.5,10.5 + pos: 63.5,10.5 parent: 12 -- proto: WallReinforcedRust - entities: - - uid: 499 + - uid: 383 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,-18.5 + pos: 56.5,-6.5 parent: 12 - uid: 1880 components: @@ -191734,6 +187213,21 @@ entities: - type: Transform pos: -40.5,-55.5 parent: 12 + - uid: 4631 + components: + - type: Transform + pos: 49.5,2.5 + parent: 12 + - uid: 4757 + components: + - type: Transform + pos: 48.5,2.5 + parent: 12 + - uid: 4794 + components: + - type: Transform + pos: 47.5,2.5 + parent: 12 - uid: 4956 components: - type: Transform @@ -191745,16 +187239,21 @@ entities: rot: 3.141592653589793 rad pos: 38.5,0.5 parent: 12 + - uid: 5064 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,1.5 + parent: 12 - uid: 5095 components: - type: Transform pos: -37.5,73.5 parent: 12 - - uid: 5110 + - uid: 5247 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-7.5 + pos: 59.5,-5.5 parent: 12 - uid: 5794 components: @@ -191803,6 +187302,12 @@ entities: rot: -1.5707963267948966 rad pos: -33.5,-11.5 parent: 12 + - uid: 9612 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,21.5 + parent: 12 - uid: 9644 components: - type: Transform @@ -191844,6 +187349,11 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,-53.5 parent: 12 + - uid: 10636 + components: + - type: Transform + pos: 52.5,-6.5 + parent: 12 - uid: 10666 components: - type: Transform @@ -191890,17 +187400,17 @@ entities: rot: -1.5707963267948966 rad pos: -7.5,14.5 parent: 12 - - uid: 11268 + - uid: 11271 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,28.5 + pos: 5.5,29.5 parent: 12 - - uid: 11271 + - uid: 11275 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,29.5 + pos: 59.5,-3.5 parent: 12 - uid: 11278 components: @@ -191979,12 +187489,6 @@ entities: rot: -1.5707963267948966 rad pos: 27.5,24.5 parent: 12 - - uid: 11510 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,16.5 - parent: 12 - uid: 11550 components: - type: Transform @@ -192091,12 +187595,6 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,71.5 parent: 12 - - uid: 14197 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,13.5 - parent: 12 - uid: 14555 components: - type: Transform @@ -192132,16 +187630,6 @@ entities: rot: -1.5707963267948966 rad pos: 36.5,64.5 parent: 12 - - uid: 20187 - components: - - type: Transform - pos: -3.5,14.5 - parent: 12 - - uid: 21083 - components: - - type: Transform - pos: -4.5,13.5 - parent: 12 - uid: 22034 components: - type: Transform @@ -192167,16 +187655,16 @@ entities: - type: Transform pos: -49.5,-51.5 parent: 12 - - uid: 23898 + - uid: 23599 components: - type: Transform - pos: -57.5,-24.5 + rot: 3.141592653589793 rad + pos: 50.5,-6.5 parent: 12 - - uid: 25142 + - uid: 23898 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-20.5 + pos: -57.5,-24.5 parent: 12 - uid: 25332 components: @@ -192237,48 +187725,6 @@ entities: rot: -1.5707963267948966 rad pos: -20.5,70.5 parent: 12 - - uid: 26595 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,0.5 - parent: 12 - - uid: 26608 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,-3.5 - parent: 12 - - uid: 26680 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,11.5 - parent: 12 - - uid: 26691 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,14.5 - parent: 12 - - uid: 26697 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,-5.5 - parent: 12 - - uid: 26714 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,-5.5 - parent: 12 - - uid: 27020 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,13.5 - parent: 12 - uid: 27035 components: - type: Transform @@ -192319,84 +187765,24 @@ entities: rot: -1.5707963267948966 rad pos: 26.5,15.5 parent: 12 - - uid: 27972 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,1.5 - parent: 12 - - uid: 27973 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,-1.5 - parent: 12 - uid: 27974 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,-6.5 parent: 12 - - uid: 27975 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,-4.5 - parent: 12 - - uid: 27976 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,-4.5 - parent: 12 - uid: 27977 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,7.5 parent: 12 - - uid: 27978 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,7.5 - parent: 12 - - uid: 27984 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,11.5 - parent: 12 - - uid: 27993 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,-5.5 - parent: 12 - - uid: 28044 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,-5.5 - parent: 12 - uid: 28048 components: - type: Transform rot: 3.141592653589793 rad pos: 63.5,-4.5 parent: 12 - - uid: 28051 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,14.5 - parent: 12 - - uid: 28052 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,15.5 - parent: 12 - uid: 28053 components: - type: Transform @@ -192439,54 +187825,12 @@ entities: rot: 3.141592653589793 rad pos: 57.5,13.5 parent: 12 - - uid: 28071 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-4.5 - parent: 12 - uid: 28072 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,7.5 parent: 12 - - uid: 28075 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-5.5 - parent: 12 - - uid: 28117 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,3.5 - parent: 12 - - uid: 28118 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-7.5 - parent: 12 - - uid: 28119 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,0.5 - parent: 12 - - uid: 28121 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,9.5 - parent: 12 - - uid: 28122 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,7.5 - parent: 12 - uid: 28132 components: - type: Transform @@ -193424,6 +188768,12 @@ entities: rot: -1.5707963267948966 rad pos: -18.5,-40.5 parent: 12 + - uid: 1068 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-26.5 + parent: 12 - uid: 1173 components: - type: Transform @@ -193566,30 +188916,6 @@ entities: rot: -1.5707963267948966 rad pos: 33.5,49.5 parent: 12 - - uid: 2463 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-32.5 - parent: 12 - - uid: 2464 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-32.5 - parent: 12 - - uid: 2465 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-32.5 - parent: 12 - - uid: 2466 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-32.5 - parent: 12 - uid: 2467 components: - type: Transform @@ -194245,11 +189571,27 @@ entities: rot: -1.5707963267948966 rad pos: 32.5,-40.5 parent: 12 + - uid: 5126 + components: + - type: Transform + pos: -22.5,-30.5 + parent: 12 + - uid: 5129 + components: + - type: Transform + pos: -22.5,-31.5 + parent: 12 - uid: 5178 components: - type: Transform pos: -26.5,-17.5 parent: 12 + - uid: 5207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-9.5 + parent: 12 - uid: 5248 components: - type: Transform @@ -194345,6 +189687,11 @@ entities: rot: -1.5707963267948966 rad pos: -12.5,-30.5 parent: 12 + - uid: 5845 + components: + - type: Transform + pos: -49.5,50.5 + parent: 12 - uid: 5867 components: - type: Transform @@ -194566,12 +189913,6 @@ entities: rot: -1.5707963267948966 rad pos: 39.5,-32.5 parent: 12 - - uid: 6775 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-33.5 - parent: 12 - uid: 6776 components: - type: Transform @@ -194583,18 +189924,6 @@ entities: - type: Transform pos: -17.5,69.5 parent: 12 - - uid: 7088 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-33.5 - parent: 12 - - uid: 7097 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-33.5 - parent: 12 - uid: 7101 components: - type: Transform @@ -194625,30 +189954,12 @@ entities: rot: 3.141592653589793 rad pos: 39.5,-25.5 parent: 12 - - uid: 7109 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-33.5 - parent: 12 - - uid: 7110 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-32.5 - parent: 12 - uid: 7111 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,-31.5 parent: 12 - - uid: 7112 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-30.5 - parent: 12 - uid: 7113 components: - type: Transform @@ -194661,24 +189972,12 @@ entities: rot: -1.5707963267948966 rad pos: 34.5,-29.5 parent: 12 - - uid: 7115 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-29.5 - parent: 12 - uid: 7116 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,-29.5 parent: 12 - - uid: 7117 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-29.5 - parent: 12 - uid: 7118 components: - type: Transform @@ -195055,10 +190354,10 @@ entities: - type: Transform pos: -42.5,71.5 parent: 12 - - uid: 9140 + - uid: 9180 components: - type: Transform - pos: 45.5,-40.5 + pos: 54.5,-7.5 parent: 12 - uid: 9366 components: @@ -195092,6 +190391,18 @@ entities: rot: -1.5707963267948966 rad pos: -25.5,24.5 parent: 12 + - uid: 9664 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-29.5 + parent: 12 + - uid: 9666 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-29.5 + parent: 12 - uid: 9736 components: - type: Transform @@ -195286,12 +190597,6 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,14.5 parent: 12 - - uid: 10634 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,17.5 - parent: 12 - uid: 10665 components: - type: Transform @@ -195344,6 +190649,17 @@ entities: - type: Transform pos: -59.5,-58.5 parent: 12 + - uid: 10887 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-60.5 + parent: 12 + - uid: 10891 + components: + - type: Transform + pos: -18.5,-29.5 + parent: 12 - uid: 10895 components: - type: Transform @@ -195450,17 +190766,35 @@ entities: - type: Transform pos: -47.5,66.5 parent: 12 - - uid: 11333 + - uid: 11308 components: - type: Transform rot: -1.5707963267948966 rad - pos: 37.5,-20.5 + pos: -8.5,-61.5 parent: 12 - - uid: 11355 + - uid: 11309 components: - type: Transform rot: -1.5707963267948966 rad - pos: 21.5,20.5 + pos: -5.5,-60.5 + parent: 12 + - uid: 11313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-27.5 + parent: 12 + - uid: 11317 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-60.5 + parent: 12 + - uid: 11333 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-20.5 parent: 12 - uid: 11363 components: @@ -196310,6 +191644,72 @@ entities: - type: Transform pos: 43.5,40.5 parent: 12 + - uid: 12685 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-31.5 + parent: 12 + - uid: 12686 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-30.5 + parent: 12 + - uid: 12687 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-26.5 + parent: 12 + - uid: 12688 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-26.5 + parent: 12 + - uid: 12689 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-31.5 + parent: 12 + - uid: 12690 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-31.5 + parent: 12 + - uid: 12691 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-32.5 + parent: 12 + - uid: 12694 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-62.5 + parent: 12 + - uid: 12695 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-61.5 + parent: 12 + - uid: 12696 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-60.5 + parent: 12 + - uid: 12701 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-60.5 + parent: 12 - uid: 12972 components: - type: Transform @@ -196340,6 +191740,12 @@ entities: rot: 3.141592653589793 rad pos: 39.5,10.5 parent: 12 + - uid: 13834 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-60.5 + parent: 12 - uid: 13849 components: - type: Transform @@ -196425,6 +191831,29 @@ entities: - type: Transform pos: 47.5,46.5 parent: 12 + - uid: 13976 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,23.5 + parent: 12 + - uid: 13979 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,23.5 + parent: 12 + - uid: 13980 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,23.5 + parent: 12 + - uid: 13983 + components: + - type: Transform + pos: 3.5,27.5 + parent: 12 - uid: 13984 components: - type: Transform @@ -196756,6 +192185,11 @@ entities: rot: -1.5707963267948966 rad pos: 26.5,44.5 parent: 12 + - uid: 14197 + components: + - type: Transform + pos: 3.5,25.5 + parent: 12 - uid: 14199 components: - type: Transform @@ -197363,6 +192797,44 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,41.5 parent: 12 + - uid: 15666 + components: + - type: Transform + pos: 3.5,24.5 + parent: 12 + - uid: 15667 + components: + - type: Transform + pos: 3.5,26.5 + parent: 12 + - uid: 15668 + components: + - type: Transform + pos: 3.5,28.5 + parent: 12 + - uid: 15669 + components: + - type: Transform + pos: 3.5,29.5 + parent: 12 + - uid: 15673 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,13.5 + parent: 12 + - uid: 15676 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,13.5 + parent: 12 + - uid: 15677 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,15.5 + parent: 12 - uid: 15704 components: - type: Transform @@ -197433,6 +192905,34 @@ entities: - type: Transform pos: 0.5,42.5 parent: 12 + - uid: 16342 + components: + - type: Transform + pos: -18.5,-28.5 + parent: 12 + - uid: 16348 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,13.5 + parent: 12 + - uid: 16362 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-32.5 + parent: 12 + - uid: 16365 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-32.5 + parent: 12 + - uid: 16367 + components: + - type: Transform + pos: -22.5,-27.5 + parent: 12 - uid: 16637 components: - type: Transform @@ -197774,6 +193274,26 @@ entities: - type: Transform pos: -55.5,-31.5 parent: 12 + - uid: 17973 + components: + - type: Transform + pos: -4.5,-53.5 + parent: 12 + - uid: 17974 + components: + - type: Transform + pos: -4.5,-52.5 + parent: 12 + - uid: 17977 + components: + - type: Transform + pos: 0.5,-54.5 + parent: 12 + - uid: 18307 + components: + - type: Transform + pos: -4.5,-54.5 + parent: 12 - uid: 18567 components: - type: Transform @@ -198123,6 +193643,27 @@ entities: rot: 1.5707963267948966 rad pos: -13.5,-5.5 parent: 12 + - uid: 19459 + components: + - type: Transform + pos: 1.5,-48.5 + parent: 12 + - uid: 19461 + components: + - type: Transform + pos: -5.5,-53.5 + parent: 12 + - uid: 19462 + components: + - type: Transform + pos: -4.5,-59.5 + parent: 12 + - uid: 19560 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,0.5 + parent: 12 - uid: 19567 components: - type: Transform @@ -198904,6 +194445,12 @@ entities: - type: Transform pos: 13.5,-29.5 parent: 12 + - uid: 22157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-9.5 + parent: 12 - uid: 22159 components: - type: Transform @@ -198960,10 +194507,11 @@ entities: - type: Transform pos: 19.5,-33.5 parent: 12 - - uid: 22624 + - uid: 22538 components: - type: Transform - pos: 0.5,-60.5 + rot: -1.5707963267948966 rad + pos: 54.5,-9.5 parent: 12 - uid: 22710 components: @@ -199008,16 +194556,41 @@ entities: - type: Transform pos: -12.5,-63.5 parent: 12 + - uid: 23133 + components: + - type: Transform + pos: -3.5,-48.5 + parent: 12 - uid: 23167 components: - type: Transform pos: -59.5,-55.5 parent: 12 + - uid: 23174 + components: + - type: Transform + pos: -10.5,-20.5 + parent: 12 + - uid: 23175 + components: + - type: Transform + pos: 48.5,-4.5 + parent: 12 - uid: 23363 components: - type: Transform pos: -10.5,-63.5 parent: 12 + - uid: 23418 + components: + - type: Transform + pos: -11.5,-18.5 + parent: 12 + - uid: 23420 + components: + - type: Transform + pos: -12.5,-19.5 + parent: 12 - uid: 23423 components: - type: Transform @@ -199045,6 +194618,23 @@ entities: - type: Transform pos: 2.5,-54.5 parent: 12 + - uid: 23595 + components: + - type: Transform + pos: -10.5,-18.5 + parent: 12 + - uid: 23600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-10.5 + parent: 12 + - uid: 23602 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-10.5 + parent: 12 - uid: 23654 components: - type: Transform @@ -199061,6 +194651,11 @@ entities: - type: Transform pos: 2.5,-24.5 parent: 12 + - uid: 23779 + components: + - type: Transform + pos: -1.5,12.5 + parent: 12 - uid: 23797 components: - type: Transform @@ -199086,6 +194681,36 @@ entities: - type: Transform pos: 10.5,-30.5 parent: 12 + - uid: 23897 + components: + - type: Transform + pos: -1.5,13.5 + parent: 12 + - uid: 23946 + components: + - type: Transform + pos: -1.5,14.5 + parent: 12 + - uid: 23947 + components: + - type: Transform + pos: -3.5,12.5 + parent: 12 + - uid: 23951 + components: + - type: Transform + pos: -2.5,12.5 + parent: 12 + - uid: 23984 + components: + - type: Transform + pos: -4.5,12.5 + parent: 12 + - uid: 23985 + components: + - type: Transform + pos: -4.5,14.5 + parent: 12 - uid: 24079 components: - type: Transform @@ -199096,6 +194721,12 @@ entities: - type: Transform pos: 0.5,-56.5 parent: 12 + - uid: 24208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-9.5 + parent: 12 - uid: 24227 components: - type: Transform @@ -199227,16 +194858,6 @@ entities: - type: Transform pos: 10.5,-31.5 parent: 12 - - uid: 24701 - components: - - type: Transform - pos: -1.5,22.5 - parent: 12 - - uid: 24702 - components: - - type: Transform - pos: -1.5,21.5 - parent: 12 - uid: 24892 components: - type: Transform @@ -199278,6 +194899,11 @@ entities: - type: Transform pos: -15.5,-59.5 parent: 12 + - uid: 25200 + components: + - type: Transform + pos: 46.5,-4.5 + parent: 12 - uid: 25243 components: - type: Transform @@ -199330,11 +194956,6 @@ entities: - type: Transform pos: 10.5,-32.5 parent: 12 - - uid: 25568 - components: - - type: Transform - pos: 2.5,-56.5 - parent: 12 - uid: 25574 components: - type: Transform @@ -199356,11 +194977,6 @@ entities: - type: Transform pos: 24.5,-29.5 parent: 12 - - uid: 25581 - components: - - type: Transform - pos: -1.5,19.5 - parent: 12 - uid: 25583 components: - type: Transform @@ -199522,11 +195138,6 @@ entities: - type: Transform pos: -21.5,-9.5 parent: 12 - - uid: 26139 - components: - - type: Transform - pos: -9.5,-63.5 - parent: 12 - uid: 26184 components: - type: Transform @@ -200163,6 +195774,30 @@ entities: rot: 1.5707963267948966 rad pos: -60.5,-21.5 parent: 12 + - uid: 6775 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,-2.5 + parent: 12 + - uid: 7322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,18.5 + parent: 12 + - uid: 7717 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-4.5 + parent: 12 + - uid: 7794 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,-4.5 + parent: 12 - uid: 7841 components: - type: Transform @@ -200228,6 +195863,12 @@ entities: rot: 1.5707963267948966 rad pos: -59.5,-21.5 parent: 12 + - uid: 13794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-61.5 + parent: 12 - uid: 14490 components: - type: Transform @@ -200300,6 +195941,12 @@ entities: rot: -1.5707963267948966 rad pos: -3.5,18.5 parent: 12 + - uid: 15672 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-61.5 + parent: 12 - uid: 15706 components: - type: Transform @@ -200330,6 +195977,30 @@ entities: rot: -1.5707963267948966 rad pos: 35.5,9.5 parent: 12 + - uid: 16354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,16.5 + parent: 12 + - uid: 16358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,14.5 + parent: 12 + - uid: 16359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,15.5 + parent: 12 + - uid: 16372 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-63.5 + parent: 12 - uid: 16923 components: - type: Transform @@ -200495,6 +196166,16 @@ entities: rot: -1.5707963267948966 rad pos: 10.5,64.5 parent: 12 + - uid: 22141 + components: + - type: Transform + pos: 47.5,0.5 + parent: 12 + - uid: 22145 + components: + - type: Transform + pos: 44.5,-4.5 + parent: 12 - uid: 22285 components: - type: Transform @@ -200511,27 +196192,114 @@ entities: rot: 3.141592653589793 rad pos: 31.5,25.5 parent: 12 + - uid: 23603 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-9.5 + parent: 12 + - uid: 24333 + components: + - type: Transform + pos: -9.5,-18.5 + parent: 12 + - uid: 24409 + components: + - type: Transform + pos: -3.5,14.5 + parent: 12 + - uid: 24445 + components: + - type: Transform + pos: -4.5,13.5 + parent: 12 - uid: 24452 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,13.5 parent: 12 + - uid: 24453 + components: + - type: Transform + pos: -11.5,-20.5 + parent: 12 - uid: 24635 components: - type: Transform pos: 31.5,19.5 parent: 12 + - uid: 24701 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-33.5 + parent: 12 + - uid: 24702 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-33.5 + parent: 12 - uid: 24982 components: - type: Transform pos: -21.5,51.5 parent: 12 + - uid: 25027 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-33.5 + parent: 12 - uid: 25035 components: - type: Transform pos: -22.5,54.5 parent: 12 + - uid: 25061 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-33.5 + parent: 12 + - uid: 25101 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-32.5 + parent: 12 + - uid: 25104 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-30.5 + parent: 12 + - uid: 25142 + components: + - type: Transform + pos: -4.5,17.5 + parent: 12 + - uid: 25191 + components: + - type: Transform + pos: -3.5,-60.5 + parent: 12 + - uid: 25192 + components: + - type: Transform + pos: 3.5,23.5 + parent: 12 + - uid: 25193 + components: + - type: Transform + pos: 0.5,-60.5 + parent: 12 + - uid: 25199 + components: + - type: Transform + pos: 2.5,-56.5 + parent: 12 - uid: 25572 components: - type: Transform @@ -200754,11 +196522,6 @@ entities: - type: Transform pos: -47.5,-14.5 parent: 12 - - uid: 27446 - components: - - type: Transform - pos: -1.5,17.5 - parent: 12 - uid: 27861 components: - type: Transform @@ -200838,16 +196601,6 @@ entities: - type: Transform pos: -8.5,18.5 parent: 12 - - uid: 28138 - components: - - type: Transform - pos: -0.5,17.5 - parent: 12 - - uid: 28140 - components: - - type: Transform - pos: -1.5,20.5 - parent: 12 - uid: 28141 components: - type: Transform @@ -201487,6 +197240,11 @@ entities: - type: Transform pos: 5.5,-29.5 parent: 12 + - uid: 4663 + components: + - type: Transform + pos: 55.5,11.5 + parent: 12 - uid: 9211 components: - type: Transform @@ -201581,21 +197339,6 @@ entities: parent: 12 - proto: WaterVaporCanister entities: - - uid: 2956 - components: - - type: Transform - pos: 4.5,15.5 - parent: 12 - - uid: 2960 - components: - - type: Transform - pos: 4.5,18.5 - parent: 12 - - uid: 2966 - components: - - type: Transform - pos: 13.5,21.5 - parent: 12 - uid: 5034 components: - type: Transform @@ -201606,6 +197349,11 @@ entities: - type: Transform pos: 24.5,-2.5 parent: 12 + - uid: 9727 + components: + - type: Transform + pos: 11.5,12.5 + parent: 12 - uid: 15785 components: - type: Transform @@ -201624,6 +197372,11 @@ entities: - type: Transform pos: -52.5,34.5 parent: 12 + - uid: 19456 + components: + - type: Transform + pos: -34.5,68.5 + parent: 12 - uid: 20825 components: - type: Transform @@ -201803,8 +197556,19 @@ entities: - type: Transform pos: -34.661064,-10.37479 parent: 12 + - uid: 23597 + components: + - type: Transform + pos: 55.47354,5.5168424 + parent: 12 - proto: WelderIndustrialAdvanced entities: + - uid: 3015 + components: + - type: Transform + rot: -25.132741228718352 rad + pos: 2.3754535,11.683891 + parent: 12 - uid: 9249 components: - type: Transform @@ -201847,6 +197611,11 @@ entities: - type: Transform pos: -33.5,-10.5 parent: 12 + - uid: 11254 + components: + - type: Transform + pos: 4.5,11.5 + parent: 12 - uid: 11526 components: - type: Transform @@ -201877,6 +197646,11 @@ entities: - type: Transform pos: -26.5,21.5 parent: 12 + - uid: 23596 + components: + - type: Transform + pos: 46.5,-3.5 + parent: 12 - uid: 24224 components: - type: Transform @@ -201907,15 +197681,10 @@ entities: - type: Transform pos: 48.5,-32.5 parent: 12 - - uid: 26892 - components: - - type: Transform - pos: 16.5,20.5 - parent: 12 - - uid: 27022 + - uid: 25386 components: - type: Transform - pos: 45.5,-3.5 + pos: 52.5,2.5 parent: 12 - uid: 27846 components: @@ -201954,6 +197723,11 @@ entities: parent: 12 - proto: WetFloorSign entities: + - uid: 2721 + components: + - type: Transform + pos: 36.92181,-30.370167 + parent: 12 - uid: 12247 components: - type: Transform @@ -201964,6 +197738,11 @@ entities: - type: Transform pos: 48.600037,20.622837 parent: 12 + - uid: 22158 + components: + - type: Transform + pos: 36.62012,-30.786295 + parent: 12 - uid: 25014 components: - type: Transform @@ -202036,6 +197815,11 @@ entities: - type: Transform pos: 48.5,-29.5 parent: 12 + - uid: 12577 + components: + - type: Transform + pos: 53.5,46.5 + parent: 12 - uid: 12650 components: - type: Transform @@ -202054,6 +197838,29 @@ entities: rot: -1.5707963267948966 rad pos: 56.5,40.5 parent: 12 + - uid: 16449 + components: + - type: Transform + pos: 48.5,46.5 + parent: 12 + - uid: 16450 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,47.5 + parent: 12 + - uid: 17272 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,0.5 + parent: 12 + - uid: 19271 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,47.5 + parent: 12 - uid: 22611 components: - type: Transform @@ -202077,17 +197884,6 @@ entities: - type: Transform pos: -5.5,55.5 parent: 12 - - uid: 23601 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,47.5 - parent: 12 - - uid: 23602 - components: - - type: Transform - pos: 48.5,46.5 - parent: 12 - uid: 29642 components: - type: Transform @@ -202117,18 +197913,12 @@ entities: rot: 3.141592653589793 rad pos: -34.5,-57.5 parent: 12 - - uid: 31564 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-0.5 - parent: 12 - proto: WindoorBarKitchenLocked entities: - - uid: 22820 + - uid: 11203 components: - type: Transform - rot: -1.5707963267948966 rad + rot: 1.5707963267948966 rad pos: 27.5,53.5 parent: 12 - proto: WindoorChapelLocked @@ -202145,33 +197935,8 @@ entities: rot: 3.141592653589793 rad pos: 44.5,32.5 parent: 12 -- proto: WindoorHydroponicsLocked - entities: - - uid: 23603 - components: - - type: Transform - pos: 53.5,46.5 - parent: 12 - - uid: 23604 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,47.5 - parent: 12 - proto: WindoorSecure entities: - - uid: 2029 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-28.5 - parent: 12 - - uid: 8732 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-30.5 - parent: 12 - uid: 12234 components: - type: Transform @@ -202211,6 +197976,18 @@ entities: parent: 12 - proto: WindoorSecureArmoryLocked entities: + - uid: 16521 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,53.5 + parent: 12 + - uid: 16699 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,52.5 + parent: 12 - uid: 20340 components: - type: Transform @@ -202235,31 +198012,19 @@ entities: rot: 1.5707963267948966 rad pos: -37.5,65.5 parent: 12 - - uid: 31530 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,52.5 - parent: 12 - - uid: 31531 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,53.5 - parent: 12 - proto: WindoorSecureBrigLocked entities: - - uid: 19350 + - uid: 19175 components: - type: Transform - rot: 3.141592653589793 rad pos: -47.5,57.5 parent: 12 - proto: WindoorSecureCargoLocked entities: - - uid: 28142 + - uid: 11373 components: - type: Transform + rot: 3.141592653589793 rad pos: 53.5,-23.5 parent: 12 - proto: WindoorSecureChemistryLocked @@ -202321,22 +198086,17 @@ entities: parent: 12 - proto: WindoorSecureEngineeringLocked entities: - - uid: 28553 - components: - - type: Transform - pos: 12.5,-24.5 - parent: 12 - - uid: 29346 + - uid: 8429 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,3.5 + rot: 3.141592653589793 rad + pos: 13.5,-24.5 parent: 12 - - uid: 31908 + - uid: 8472 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,11.5 + rot: 3.141592653589793 rad + pos: 12.5,-24.5 parent: 12 - proto: WindoorSecureHeadOfPersonnelLocked entities: @@ -202353,23 +198113,27 @@ entities: parent: 12 - proto: WindoorSecureMedicalLocked entities: - - uid: 2458 + - uid: 1718 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-37.5 + pos: 30.5,40.5 parent: 12 - - uid: 2459 + - uid: 1775 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-39.5 + pos: 29.5,40.5 parent: 12 - - uid: 13794 + - uid: 2458 components: - type: Transform rot: 3.141592653589793 rad - pos: 30.5,40.5 + pos: -20.5,-37.5 + parent: 12 + - uid: 9557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-39.5 parent: 12 - uid: 21667 components: @@ -202416,10 +198180,10 @@ entities: parent: 12 - proto: WindoorSecureScienceLocked entities: - - uid: 28443 + - uid: 11280 components: - type: Transform - rot: 1.5707963267948966 rad + rot: -1.5707963267948966 rad pos: -18.5,-20.5 parent: 12 - proto: WindoorSecureSecurityLawyerLocked @@ -202437,31 +198201,23 @@ entities: - type: Transform pos: 52.5,-30.5 parent: 12 - - uid: 23846 + - uid: 19185 components: - type: Transform rot: -1.5707963267948966 rad - pos: -33.5,50.5 - parent: 12 - - uid: 28826 - components: - - type: Transform - rot: 1.5707963267948966 rad pos: -19.5,39.5 parent: 12 - - uid: 29067 + - uid: 23846 components: - type: Transform rot: -1.5707963267948966 rad - pos: 20.5,58.5 + pos: -33.5,50.5 parent: 12 -- proto: WindoorSecureServiceLocked - entities: - - uid: 23947 + - uid: 29067 components: - type: Transform rot: -1.5707963267948966 rad - pos: 53.5,54.5 + pos: 20.5,58.5 parent: 12 - proto: WindoorServiceLocked entities: @@ -202482,6 +198238,12 @@ entities: rot: 3.141592653589793 rad pos: 11.5,36.5 parent: 12 + - uid: 16777 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,54.5 + parent: 12 - uid: 30396 components: - type: Transform @@ -202642,6 +198404,18 @@ entities: - type: Transform pos: 2.5,-44.5 parent: 12 + - uid: 3375 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,20.5 + parent: 12 + - uid: 3472 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,19.5 + parent: 12 - uid: 4472 components: - type: Transform @@ -202660,6 +198434,12 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,-37.5 parent: 12 + - uid: 7088 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-2.5 + parent: 12 - uid: 7382 components: - type: Transform @@ -203477,17 +199257,39 @@ entities: parent: 12 - proto: WindowDirectional entities: - - uid: 289 + - uid: 7837 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,0.5 + rot: 1.5707963267948966 rad + pos: -12.5,-51.5 parent: 12 - - uid: 7837 + - uid: 9559 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,46.5 + parent: 12 + - uid: 9597 + components: + - type: Transform + pos: 52.5,46.5 + parent: 12 + - uid: 11048 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,48.5 + parent: 12 + - uid: 11053 components: - type: Transform rot: 1.5707963267948966 rad - pos: -12.5,-51.5 + pos: 49.5,48.5 + parent: 12 + - uid: 12289 + components: + - type: Transform + pos: 49.5,46.5 parent: 12 - uid: 14518 components: @@ -203495,6 +199297,12 @@ entities: rot: 3.141592653589793 rad pos: -13.5,-51.5 parent: 12 + - uid: 16832 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,0.5 + parent: 12 - uid: 16847 components: - type: Transform @@ -203518,6 +199326,18 @@ entities: rot: 3.141592653589793 rad pos: -9.5,-47.5 parent: 12 + - uid: 19188 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,46.5 + parent: 12 + - uid: 19292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,54.5 + parent: 12 - uid: 28193 components: - type: Transform @@ -203599,24 +199419,6 @@ entities: rot: 1.5707963267948966 rad pos: 31.5,22.5 parent: 12 - - uid: 31556 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,0.5 - parent: 12 - - uid: 31557 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,0.5 - parent: 12 - - uid: 31562 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-1.5 - parent: 12 - proto: WindowFrostedDirectional entities: - uid: 4236 @@ -203923,34 +199725,6 @@ entities: rot: -1.5707963267948966 rad pos: -41.5,-33.5 parent: 12 - - uid: 1776 - components: - - type: Transform - pos: -21.5,-29.5 - parent: 12 - - uid: 2022 - components: - - type: Transform - pos: -22.5,-29.5 - parent: 12 - - uid: 2023 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-29.5 - parent: 12 - - uid: 2024 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-27.5 - parent: 12 - - uid: 2460 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-38.5 - parent: 12 - uid: 2461 components: - type: Transform @@ -204010,6 +199784,12 @@ entities: rot: 3.141592653589793 rad pos: -1.5,-13.5 parent: 12 + - uid: 4898 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,-23.5 + parent: 12 - uid: 5411 components: - type: Transform @@ -204161,12 +199941,6 @@ entities: rot: 1.5707963267948966 rad pos: 30.5,40.5 parent: 12 - - uid: 13788 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,40.5 - parent: 12 - uid: 14981 components: - type: Transform @@ -204226,12 +200000,30 @@ entities: rot: 3.141592653589793 rad pos: 0.5,-0.5 parent: 12 + - uid: 16493 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-19.5 + parent: 12 + - uid: 16547 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,-23.5 + parent: 12 - uid: 16643 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,40.5 parent: 12 + - uid: 16663 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-38.5 + parent: 12 - uid: 16822 components: - type: Transform @@ -204244,11 +200036,11 @@ entities: rot: 3.141592653589793 rad pos: -4.5,-44.5 parent: 12 - - uid: 17272 + - uid: 17204 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,5.5 + rot: -1.5707963267948966 rad + pos: -18.5,-21.5 parent: 12 - uid: 17371 components: @@ -204353,12 +200145,6 @@ entities: rot: -1.5707963267948966 rad pos: -47.5,57.5 parent: 12 - - uid: 19349 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,57.5 - parent: 12 - uid: 19969 components: - type: Transform @@ -204486,40 +200272,6 @@ entities: - type: Transform pos: 15.5,55.5 parent: 12 - - uid: 23595 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,46.5 - parent: 12 - - uid: 23596 - components: - - type: Transform - pos: 52.5,46.5 - parent: 12 - - uid: 23597 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,48.5 - parent: 12 - - uid: 23598 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,48.5 - parent: 12 - - uid: 23599 - components: - - type: Transform - pos: 49.5,46.5 - parent: 12 - - uid: 23600 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,46.5 - parent: 12 - uid: 23844 components: - type: Transform @@ -204531,12 +200283,6 @@ entities: - type: Transform pos: -33.5,50.5 parent: 12 - - uid: 23946 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,54.5 - parent: 12 - uid: 26588 components: - type: Transform @@ -204549,29 +200295,6 @@ entities: rot: -1.5707963267948966 rad pos: 47.5,-11.5 parent: 12 - - uid: 27236 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,12.5 - parent: 12 - - uid: 27514 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,4.5 - parent: 12 - - uid: 28144 - components: - - type: Transform - pos: 54.5,-23.5 - parent: 12 - - uid: 28645 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-21.5 - parent: 12 - uid: 28932 components: - type: Transform @@ -204584,22 +200307,12 @@ entities: rot: -1.5707963267948966 rad pos: 50.5,-11.5 parent: 12 - - uid: 28934 - components: - - type: Transform - pos: 52.5,-23.5 - parent: 12 - uid: 29220 components: - type: Transform rot: -1.5707963267948966 rad pos: -28.5,65.5 parent: 12 - - uid: 30002 - components: - - type: Transform - pos: 13.5,-24.5 - parent: 12 - uid: 30324 components: - type: Transform @@ -204676,24 +200389,12 @@ entities: rot: 3.141592653589793 rad pos: 0.5,-67.5 parent: 12 - - uid: 31529 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-19.5 - parent: 12 - uid: 31770 components: - type: Transform rot: 3.141592653589793 rad pos: -57.5,27.5 parent: 12 - - uid: 31907 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,10.5 - parent: 12 - uid: 31911 components: - type: Transform @@ -204780,11 +200481,6 @@ entities: rot: -1.5707963267948966 rad pos: 33.52617,-19.538431 parent: 12 - - uid: 7162 - components: - - type: Transform - pos: 37.89979,-31.511305 - parent: 12 - uid: 7197 components: - type: Transform @@ -204823,16 +200519,11 @@ entities: - type: Transform pos: -23.775642,-15.327034 parent: 12 - - uid: 29076 - components: - - type: Transform - pos: 5.7223816,16.863264 - parent: 12 - uid: 29302 components: - type: Transform rot: -12.566370614359172 rad - pos: 37.46028,4.4797335 + pos: 9.636911,-13.368637 parent: 12 - proto: Zipties entities: From eb4e422cb099cddd499daa3fd2b279d754b750b5 Mon Sep 17 00:00:00 2001 From: slarticodefast <161409025+slarticodefast@users.noreply.github.com> Date: Sat, 5 Oct 2024 20:44:47 +0200 Subject: [PATCH 64/94] fix light bulbs not fitting into the trash bag (#32452) fix trash --- Resources/Prototypes/Entities/Objects/Power/lights.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Resources/Prototypes/Entities/Objects/Power/lights.yml b/Resources/Prototypes/Entities/Objects/Power/lights.yml index 22573669ed..e0ae055e7d 100644 --- a/Resources/Prototypes/Entities/Objects/Power/lights.yml +++ b/Resources/Prototypes/Entities/Objects/Power/lights.yml @@ -129,6 +129,7 @@ - type: Tag tags: - LightBulb + - Trash - type: entity parent: BaseLightbulb @@ -147,6 +148,7 @@ - type: Tag tags: - LightBulb + - Trash - type: entity parent: LightBulb @@ -160,9 +162,6 @@ lightEnergy: 0.3 # old incandescents just arent as bright lightRadius: 6 lightSoftness: 1.1 - - type: Tag - tags: - - LightBulb - type: entity suffix: Broken @@ -190,6 +189,7 @@ - type: Tag tags: - LightBulb + - Trash - type: entity parent: BaseLightTube From 386e59b46231cb5d1a3c1d6086cfead08bf2590d Mon Sep 17 00:00:00 2001 From: PJBot Date: Sat, 5 Oct 2024 18:45:55 +0000 Subject: [PATCH 65/94] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 092e71e0ec..b46f5c46be 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: GoldenCan - changes: - - message: Added a Security Clown Mask which is obtainable by hacking a SecDrobe. - type: Add - id: 6989 - time: '2024-07-27T04:09:24.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30249 - author: Plykiya changes: - message: Thief game rule now properly selects more than one thief. @@ -3942,3 +3935,10 @@ id: 7488 time: '2024-10-04T09:34:49.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32423 +- author: slarticodefast + changes: + - message: Light bulbs now fit into the trash bag again. + type: Fix + id: 7489 + time: '2024-10-05T18:44:47.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32452 From 126c1786de2ca4112433f797bcba68ef715b364f Mon Sep 17 00:00:00 2001 From: Spessmann <156740760+Spessmann@users.noreply.github.com> Date: Sat, 5 Oct 2024 19:30:10 -0700 Subject: [PATCH 66/94] Cog update fix (#32657) * fixes for cog * ok fixed that --- Resources/Maps/cog.yml | 1409 ++++++++++++++++++++++++++++------------ 1 file changed, 998 insertions(+), 411 deletions(-) diff --git a/Resources/Maps/cog.yml b/Resources/Maps/cog.yml index 882aab9eb1..30b4730a57 100644 --- a/Resources/Maps/cog.yml +++ b/Resources/Maps/cog.yml @@ -47,6 +47,7 @@ tilemap: 112: FloorTechMaint2 13: FloorTechMaint3 115: FloorWhite + 40: FloorWhiteMini 20: FloorWhiteMono 125: FloorWood 5: FloorWoodLarge @@ -184,7 +185,7 @@ entities: version: 6 2,-1: ind: 2,-1 - tiles: YAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAYAAAAAADgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAADYAAAAAADgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAAgAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAAAgQAAAAAAYAAAAAABYAAAAAACBwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABCwAAAAAACwAAAAAACwAAAAAAgQAAAAAABwAAAAAAgQAAAAAAAwAAAAABAgAAAAABBwAAAAAAgQAAAAAAfQAAAAADfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABCwAAAAAAEgAAAAAACwAAAAAAgQAAAAAAYAAAAAACgQAAAAAAYAAAAAADBwAAAAAAYAAAAAACgQAAAAAAfQAAAAACfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACCwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAQgAAAAAAQgAAAAAAfQAAAAACYAAAAAACIAAAAAACIAAAAAADIAAAAAABIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAfQAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAABIAAAAAACgQAAAAAAIAAAAAABIAAAAAADgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAAAIAAAAAAAIAAAAAADYAAAAAAAIAAAAAABIAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAADIAAAAAABgQAAAAAAIAAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAADAgAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACBwAAAAAABwAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAA + tiles: YAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAYAAAAAADgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAADYAAAAAADgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAAgAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAYAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAAAgQAAAAAAYAAAAAABYAAAAAACBwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABCwAAAAAACwAAAAAACwAAAAAAgQAAAAAABwAAAAAAgQAAAAAAAwAAAAABAgAAAAABBwAAAAAAgQAAAAAAfQAAAAADfQAAAAAAKAAAAAAAKAAAAAAAgQAAAAAAIAAAAAABCwAAAAAAEgAAAAAACwAAAAAAgQAAAAAAYAAAAAACgQAAAAAAYAAAAAADBwAAAAAAYAAAAAACgQAAAAAAfQAAAAACfQAAAAAAgQAAAAAAKAAAAAAAgQAAAAAAIAAAAAACCwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAQgAAAAAAQgAAAAAAfQAAAAACYAAAAAACIAAAAAACIAAAAAADIAAAAAABIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAfQAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAABIAAAAAACgQAAAAAAIAAAAAABIAAAAAADgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAAAIAAAAAAAIAAAAAADYAAAAAAAIAAAAAABIAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAADIAAAAAABgQAAAAAAIAAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAADAgAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACBwAAAAAABwAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAA version: 6 2,0: ind: 2,0 @@ -490,6 +491,13 @@ entities: id: Arrows decals: 8243: 29,5 + - node: + color: '#FFFFFFFF' + id: Arrows + decals: + 8967: 6.0002394,17.436628 + 8968: 11.993295,17.42273 + 8969: 13.000239,17.436626 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -520,6 +528,9 @@ entities: 8200: 30,-9 8721: 57,11 8722: 58,11 + 8961: 9,17 + 8962: 10,17 + 8963: 16,17 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' @@ -836,6 +847,7 @@ entities: 8210: 40,4 8253: 31,6 8912: 51,-11 + 8970: 8,-14 - node: cleanable: True color: '#FFFFFFFF' @@ -1760,6 +1772,7 @@ entities: 8713: -33,67 8714: -33,68 8755: -3,19 + 8960: 33,-13 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -8964,14 +8977,14 @@ entities: 0: 511 0,-2: 0: 3581 + 1,-4: + 0: 17623 1,-2: 0: 41718 - 1,-4: - 0: 17638 + 1,-5: + 0: 21591 1,-3: 0: 25668 - 1,-5: - 0: 25687 2,-4: 0: 4095 2,-3: @@ -9710,9 +9723,9 @@ entities: 7,0: 0: 61006 8,-4: - 0: 33787 + 0: 41979 8,-3: - 0: 2746 + 0: 2744 8,-2: 0: 61167 8,-1: @@ -14040,6 +14053,12 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,-17.5 parent: 12 + - uid: 4683 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-10.5 + parent: 12 - uid: 5517 components: - type: Transform @@ -14161,11 +14180,6 @@ entities: rot: 3.141592653589793 rad pos: -9.5,-19.5 parent: 12 - - uid: 21885 - components: - - type: Transform - pos: 32.5,-10.5 - parent: 12 - uid: 22224 components: - type: Transform @@ -14187,6 +14201,12 @@ entities: - type: Transform pos: -23.5,58.5 parent: 12 + - uid: 26389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-15.5 + parent: 12 - uid: 27457 components: - type: Transform @@ -19146,6 +19166,13 @@ entities: rot: -12.566370614359172 rad pos: -3.622931,-15.409775 parent: 12 +- proto: Ash + entities: + - uid: 26653 + components: + - type: Transform + pos: -0.5,19.5 + parent: 12 - proto: Ashtray entities: - uid: 6886 @@ -22779,6 +22806,11 @@ entities: - type: Transform pos: -25.5,6.5 parent: 12 + - uid: 20 + components: + - type: Transform + pos: 11.5,24.5 + parent: 12 - uid: 51 components: - type: Transform @@ -22849,6 +22881,11 @@ entities: - type: Transform pos: 52.5,-11.5 parent: 12 + - uid: 185 + components: + - type: Transform + pos: 4.5,20.5 + parent: 12 - uid: 190 components: - type: Transform @@ -29594,11 +29631,6 @@ entities: - type: Transform pos: 11.5,19.5 parent: 12 - - uid: 9615 - components: - - type: Transform - pos: 3.5,19.5 - parent: 12 - uid: 9617 components: - type: Transform @@ -29614,11 +29646,6 @@ entities: - type: Transform pos: 4.5,22.5 parent: 12 - - uid: 9655 - components: - - type: Transform - pos: 4.5,21.5 - parent: 12 - uid: 9668 components: - type: Transform @@ -40279,6 +40306,21 @@ entities: - type: Transform pos: 55.5,2.5 parent: 12 + - uid: 26488 + components: + - type: Transform + pos: 5.5,-15.5 + parent: 12 + - uid: 26489 + components: + - type: Transform + pos: 4.5,-15.5 + parent: 12 + - uid: 26490 + components: + - type: Transform + pos: 4.5,-16.5 + parent: 12 - uid: 26500 components: - type: Transform @@ -40319,6 +40361,16 @@ entities: - type: Transform pos: 31.5,7.5 parent: 12 + - uid: 26536 + components: + - type: Transform + pos: 11.5,26.5 + parent: 12 + - uid: 26537 + components: + - type: Transform + pos: 11.5,25.5 + parent: 12 - uid: 26574 components: - type: Transform @@ -43719,8 +43771,8 @@ entities: - uid: 28714 components: - type: Transform - rot: -37.69911184307754 rad - pos: 54.474026,-5.1717267 + rot: -50.265482457436725 rad + pos: 55.51719,-5.372972 parent: 12 - proto: CableApcStack1 entities: @@ -43792,11 +43844,6 @@ entities: - type: Transform pos: 54.5,7.5 parent: 12 - - uid: 20 - components: - - type: Transform - pos: 32.5,-10.5 - parent: 12 - uid: 21 components: - type: Transform @@ -43877,11 +43924,6 @@ entities: - type: Transform pos: 8.5,28.5 parent: 12 - - uid: 681 - components: - - type: Transform - pos: 31.5,-10.5 - parent: 12 - uid: 693 components: - type: Transform @@ -45112,11 +45154,6 @@ entities: - type: Transform pos: -25.5,-55.5 parent: 12 - - uid: 5177 - components: - - type: Transform - pos: 33.5,-10.5 - parent: 12 - uid: 5179 components: - type: Transform @@ -51762,6 +51799,11 @@ entities: - type: Transform pos: -26.5,27.5 parent: 12 + - uid: 25832 + components: + - type: Transform + pos: 5.5,-15.5 + parent: 12 - uid: 25839 components: - type: Transform @@ -51772,6 +51814,11 @@ entities: - type: Transform pos: 36.5,0.5 parent: 12 + - uid: 26072 + components: + - type: Transform + pos: 7.5,-14.5 + parent: 12 - uid: 26079 components: - type: Transform @@ -51817,6 +51864,26 @@ entities: - type: Transform pos: -56.5,21.5 parent: 12 + - uid: 26154 + components: + - type: Transform + pos: 6.5,-15.5 + parent: 12 + - uid: 26202 + components: + - type: Transform + pos: 6.5,-16.5 + parent: 12 + - uid: 26261 + components: + - type: Transform + pos: 4.5,-15.5 + parent: 12 + - uid: 26262 + components: + - type: Transform + pos: 4.5,-16.5 + parent: 12 - uid: 26417 components: - type: Transform @@ -51872,6 +51939,31 @@ entities: - type: Transform pos: 58.5,1.5 parent: 12 + - uid: 26525 + components: + - type: Transform + pos: 6.5,-20.5 + parent: 12 + - uid: 26526 + components: + - type: Transform + pos: 6.5,-19.5 + parent: 12 + - uid: 26527 + components: + - type: Transform + pos: 6.5,-18.5 + parent: 12 + - uid: 26528 + components: + - type: Transform + pos: 6.5,-17.5 + parent: 12 + - uid: 26529 + components: + - type: Transform + pos: 6.5,-14.5 + parent: 12 - uid: 26543 components: - type: Transform @@ -52047,11 +52139,6 @@ entities: - type: Transform pos: 30.5,-4.5 parent: 12 - - uid: 26927 - components: - - type: Transform - pos: 33.5,-9.5 - parent: 12 - uid: 27028 components: - type: Transform @@ -55082,8 +55169,8 @@ entities: - uid: 28713 components: - type: Transform - rot: -37.69911184307754 rad - pos: 54.49033,-5.6204934 + rot: -50.265482457436725 rad + pos: 55.498672,-5.6926384 parent: 12 - proto: CableMV entities: @@ -56487,6 +56574,11 @@ entities: - type: Transform pos: -17.5,-24.5 parent: 12 + - uid: 4715 + components: + - type: Transform + pos: 4.5,-16.5 + parent: 12 - uid: 4800 components: - type: Transform @@ -56532,6 +56624,11 @@ entities: - type: Transform pos: -27.5,65.5 parent: 12 + - uid: 4988 + components: + - type: Transform + pos: 7.5,-14.5 + parent: 12 - uid: 5036 components: - type: Transform @@ -56582,6 +56679,26 @@ entities: - type: Transform pos: -1.5,1.5 parent: 12 + - uid: 5170 + components: + - type: Transform + pos: 9.5,-14.5 + parent: 12 + - uid: 5175 + components: + - type: Transform + pos: 10.5,-15.5 + parent: 12 + - uid: 5176 + components: + - type: Transform + pos: 12.5,-15.5 + parent: 12 + - uid: 5177 + components: + - type: Transform + pos: 15.5,-16.5 + parent: 12 - uid: 5272 components: - type: Transform @@ -56597,6 +56714,11 @@ entities: - type: Transform pos: 14.5,4.5 parent: 12 + - uid: 5303 + components: + - type: Transform + pos: 17.5,-16.5 + parent: 12 - uid: 5311 components: - type: Transform @@ -56605,7 +56727,7 @@ entities: - uid: 5378 components: - type: Transform - pos: 33.5,-9.5 + pos: 7.5,-21.5 parent: 12 - uid: 5405 components: @@ -56937,6 +57059,11 @@ entities: - type: Transform pos: 63.5,-23.5 parent: 12 + - uid: 6774 + components: + - type: Transform + pos: 9.5,-21.5 + parent: 12 - uid: 6891 components: - type: Transform @@ -57042,6 +57169,11 @@ entities: - type: Transform pos: 43.5,-12.5 parent: 12 + - uid: 7524 + components: + - type: Transform + pos: 11.5,-21.5 + parent: 12 - uid: 7580 components: - type: Transform @@ -57642,6 +57774,11 @@ entities: - type: Transform pos: 53.5,63.5 parent: 12 + - uid: 8805 + components: + - type: Transform + pos: 13.5,-21.5 + parent: 12 - uid: 9002 components: - type: Transform @@ -57817,6 +57954,11 @@ entities: - type: Transform pos: 62.5,-0.5 parent: 12 + - uid: 9615 + components: + - type: Transform + pos: 15.5,-21.5 + parent: 12 - uid: 9628 components: - type: Transform @@ -57832,6 +57974,11 @@ entities: - type: Transform pos: 30.5,4.5 parent: 12 + - uid: 9655 + components: + - type: Transform + pos: 17.5,-21.5 + parent: 12 - uid: 9671 components: - type: Transform @@ -58367,6 +58514,11 @@ entities: - type: Transform pos: -6.5,28.5 parent: 12 + - uid: 10655 + components: + - type: Transform + pos: 19.5,-21.5 + parent: 12 - uid: 10668 components: - type: Transform @@ -58427,6 +58579,11 @@ entities: - type: Transform pos: -47.5,15.5 parent: 12 + - uid: 11323 + components: + - type: Transform + pos: 13.5,-16.5 + parent: 12 - uid: 11331 components: - type: Transform @@ -58437,6 +58594,11 @@ entities: - type: Transform pos: 32.5,15.5 parent: 12 + - uid: 11371 + components: + - type: Transform + pos: 18.5,-21.5 + parent: 12 - uid: 11383 components: - type: Transform @@ -58477,6 +58639,11 @@ entities: - type: Transform pos: -9.5,-19.5 parent: 12 + - uid: 11574 + components: + - type: Transform + pos: 4.5,-15.5 + parent: 12 - uid: 11932 components: - type: Transform @@ -61052,6 +61219,11 @@ entities: - type: Transform pos: -60.5,24.5 parent: 12 + - uid: 17584 + components: + - type: Transform + pos: 5.5,-15.5 + parent: 12 - uid: 17735 components: - type: Transform @@ -61350,7 +61522,7 @@ entities: - uid: 18631 components: - type: Transform - pos: 33.5,-10.5 + pos: 8.5,-14.5 parent: 12 - uid: 18759 components: @@ -62752,6 +62924,11 @@ entities: - type: Transform pos: -6.5,32.5 parent: 12 + - uid: 21604 + components: + - type: Transform + pos: 11.5,-15.5 + parent: 12 - uid: 21705 components: - type: Transform @@ -62775,7 +62952,12 @@ entities: - uid: 21884 components: - type: Transform - pos: 32.5,-10.5 + pos: 13.5,-15.5 + parent: 12 + - uid: 21885 + components: + - type: Transform + pos: 14.5,-16.5 parent: 12 - uid: 21901 components: @@ -62902,6 +63084,11 @@ entities: - type: Transform pos: -31.5,70.5 parent: 12 + - uid: 23130 + components: + - type: Transform + pos: 16.5,-16.5 + parent: 12 - uid: 23713 components: - type: Transform @@ -63787,6 +63974,41 @@ entities: - type: Transform pos: -30.5,12.5 parent: 12 + - uid: 25824 + components: + - type: Transform + pos: 18.5,-16.5 + parent: 12 + - uid: 25825 + components: + - type: Transform + pos: 8.5,-21.5 + parent: 12 + - uid: 25826 + components: + - type: Transform + pos: 10.5,-21.5 + parent: 12 + - uid: 25827 + components: + - type: Transform + pos: 12.5,-21.5 + parent: 12 + - uid: 25828 + components: + - type: Transform + pos: 14.5,-21.5 + parent: 12 + - uid: 25829 + components: + - type: Transform + pos: 16.5,-21.5 + parent: 12 + - uid: 25830 + components: + - type: Transform + pos: 9.5,-15.5 + parent: 12 - uid: 25833 components: - type: Transform @@ -63827,6 +64049,41 @@ entities: - type: Transform pos: -27.5,-27.5 parent: 12 + - uid: 26263 + components: + - type: Transform + pos: 20.5,-21.5 + parent: 12 + - uid: 26264 + components: + - type: Transform + pos: 21.5,-21.5 + parent: 12 + - uid: 26276 + components: + - type: Transform + pos: 23.5,-21.5 + parent: 12 + - uid: 26311 + components: + - type: Transform + pos: 22.5,-21.5 + parent: 12 + - uid: 26368 + components: + - type: Transform + pos: 24.5,-21.5 + parent: 12 + - uid: 26382 + components: + - type: Transform + pos: 19.5,-22.5 + parent: 12 + - uid: 26383 + components: + - type: Transform + pos: 19.5,-20.5 + parent: 12 - uid: 26451 components: - type: Transform @@ -64527,86 +64784,6 @@ entities: - type: Transform pos: 54.5,1.5 parent: 12 - - uid: 28970 - components: - - type: Transform - pos: -6.5,-20.5 - parent: 12 - - uid: 28971 - components: - - type: Transform - pos: -5.5,-20.5 - parent: 12 - - uid: 28972 - components: - - type: Transform - pos: -4.5,-20.5 - parent: 12 - - uid: 28973 - components: - - type: Transform - pos: -4.5,-21.5 - parent: 12 - - uid: 28974 - components: - - type: Transform - pos: -4.5,-22.5 - parent: 12 - - uid: 28975 - components: - - type: Transform - pos: -3.5,-22.5 - parent: 12 - - uid: 28976 - components: - - type: Transform - pos: -1.5,-22.5 - parent: 12 - - uid: 28977 - components: - - type: Transform - pos: -0.5,-22.5 - parent: 12 - - uid: 28978 - components: - - type: Transform - pos: 0.5,-22.5 - parent: 12 - - uid: 28979 - components: - - type: Transform - pos: 1.5,-22.5 - parent: 12 - - uid: 28980 - components: - - type: Transform - pos: 2.5,-22.5 - parent: 12 - - uid: 28981 - components: - - type: Transform - pos: 3.5,-22.5 - parent: 12 - - uid: 28982 - components: - - type: Transform - pos: 4.5,-22.5 - parent: 12 - - uid: 28983 - components: - - type: Transform - pos: 5.5,-22.5 - parent: 12 - - uid: 28984 - components: - - type: Transform - pos: 6.5,-22.5 - parent: 12 - - uid: 28985 - components: - - type: Transform - pos: -2.5,-22.5 - parent: 12 - uid: 28986 components: - type: Transform @@ -65932,8 +66109,8 @@ entities: - uid: 28716 components: - type: Transform - rot: -37.69911184307754 rad - pos: 54.425102,-5.334914 + rot: -50.265482457436725 rad + pos: 55.50793,-5.5443873 parent: 12 - proto: CableMVStack1 entities: @@ -70937,12 +71114,6 @@ entities: rot: 3.141592653589793 rad pos: 30.5,15.5 parent: 12 - - uid: 11574 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-22.5 - parent: 12 - uid: 11688 components: - type: Transform @@ -72871,12 +73042,102 @@ entities: rot: 3.141592653589793 rad pos: -20.5,59.5 parent: 12 + - uid: 26414 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-22.5 + parent: 12 + - uid: 26421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-22.5 + parent: 12 + - uid: 26422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-22.5 + parent: 12 + - uid: 26432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-22.5 + parent: 12 + - uid: 26438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-22.5 + parent: 12 + - uid: 26440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-22.5 + parent: 12 + - uid: 26445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-22.5 + parent: 12 + - uid: 26446 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-22.5 + parent: 12 - uid: 26447 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,0.5 parent: 12 + - uid: 26452 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-22.5 + parent: 12 + - uid: 26455 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-22.5 + parent: 12 + - uid: 26461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-22.5 + parent: 12 + - uid: 26462 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-21.5 + parent: 12 + - uid: 26466 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-20.5 + parent: 12 + - uid: 26469 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-20.5 + parent: 12 + - uid: 26470 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-20.5 + parent: 12 - uid: 26778 components: - type: Transform @@ -73634,76 +73895,6 @@ entities: - type: Transform pos: -7.5,-20.5 parent: 12 - - uid: 28632 - components: - - type: Transform - pos: -6.5,-20.5 - parent: 12 - - uid: 28633 - components: - - type: Transform - pos: -5.5,-20.5 - parent: 12 - - uid: 28634 - components: - - type: Transform - pos: -4.5,-20.5 - parent: 12 - - uid: 28635 - components: - - type: Transform - pos: -4.5,-22.5 - parent: 12 - - uid: 28636 - components: - - type: Transform - pos: -3.5,-22.5 - parent: 12 - - uid: 28637 - components: - - type: Transform - pos: -2.5,-22.5 - parent: 12 - - uid: 28638 - components: - - type: Transform - pos: -1.5,-22.5 - parent: 12 - - uid: 28639 - components: - - type: Transform - pos: -0.5,-22.5 - parent: 12 - - uid: 28640 - components: - - type: Transform - pos: 0.5,-22.5 - parent: 12 - - uid: 28641 - components: - - type: Transform - pos: 1.5,-22.5 - parent: 12 - - uid: 28642 - components: - - type: Transform - pos: 2.5,-22.5 - parent: 12 - - uid: 28643 - components: - - type: Transform - pos: 3.5,-22.5 - parent: 12 - - uid: 28644 - components: - - type: Transform - pos: 4.5,-22.5 - parent: 12 - - uid: 28647 - components: - - type: Transform - pos: -4.5,-21.5 - parent: 12 - uid: 28922 components: - type: Transform @@ -76223,11 +76414,6 @@ entities: rot: 1.5707963267948966 rad pos: -22.5,0.5 parent: 12 - - uid: 23130 - components: - - type: Transform - pos: 56.427277,-4.6059856 - parent: 12 - uid: 23441 components: - type: Transform @@ -76252,6 +76438,11 @@ entities: rot: -1.5707963267948966 rad pos: 58.720875,57.492115 parent: 12 + - uid: 26532 + components: + - type: Transform + pos: 56.5,-4.5 + parent: 12 - uid: 27066 components: - type: Transform @@ -76818,11 +77009,6 @@ entities: - type: Transform pos: -13.5,-19.5 parent: 12 - - uid: 8805 - components: - - type: Transform - pos: 5.5,-15.5 - parent: 12 - uid: 9567 components: - type: Transform @@ -76978,6 +77164,16 @@ entities: - type: Transform pos: -45.5,31.5 parent: 12 + - uid: 26027 + components: + - type: Transform + pos: -0.5,10.5 + parent: 12 + - uid: 26205 + components: + - type: Transform + pos: 1.5,-23.5 + parent: 12 - uid: 26682 components: - type: Transform @@ -77265,11 +77461,6 @@ entities: - type: Transform pos: -52.5,-19.5 parent: 12 - - uid: 28442 - components: - - type: Transform - pos: 5.5,-14.5 - parent: 12 - uid: 30472 components: - type: Transform @@ -77552,11 +77743,6 @@ entities: - type: Transform pos: -56.5,-29.5 parent: 12 - - uid: 17584 - components: - - type: Transform - pos: 5.5,-16.5 - parent: 12 - uid: 18105 components: - type: Transform @@ -79090,11 +79276,6 @@ entities: - type: Transform pos: 53.5,-42.5 parent: 12 - - uid: 5303 - components: - - type: Transform - pos: 5.5,-14.5 - parent: 12 - uid: 9215 components: - type: Transform @@ -79232,6 +79413,12 @@ entities: rot: 3.141592653589793 rad pos: 46.5,58.5 parent: 12 + - uid: 25835 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-23.5 + parent: 12 - uid: 30201 components: - type: Transform @@ -79975,12 +80162,6 @@ entities: parent: 12 - proto: ComputerSolarControl entities: - - uid: 499 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-5.5 - parent: 12 - uid: 9217 components: - type: Transform @@ -80003,6 +80184,12 @@ entities: rot: 1.5707963267948966 rad pos: -52.5,47.5 parent: 12 + - uid: 26073 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,-5.5 + parent: 12 - uid: 31765 components: - type: Transform @@ -81917,11 +82104,6 @@ entities: - type: Transform pos: -30.5,30.5 parent: 12 - - uid: 21604 - components: - - type: Transform - pos: -22.5,44.5 - parent: 12 - proto: DefaultStationBeaconCryonics entities: - uid: 3938 @@ -82176,10 +82358,10 @@ entities: parent: 12 - proto: DefaultStationBeaconSingularity entities: - - uid: 26754 + - uid: 26654 components: - type: Transform - pos: 59.5,4.5 + pos: 60.5,5.5 parent: 12 - proto: DefaultStationBeaconSolars entities: @@ -82224,6 +82406,13 @@ entities: - type: Transform pos: 40.5,-38.5 parent: 12 +- proto: DefaultStationBeaconTEG + entities: + - uid: 26552 + components: + - type: Transform + pos: 11.5,14.5 + parent: 12 - proto: DefaultStationBeaconTelecoms entities: - uid: 21869 @@ -83451,6 +83640,12 @@ entities: - type: Transform pos: 23.5,11.5 parent: 12 + - uid: 26523 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-10.5 + parent: 12 - uid: 26729 components: - type: Transform @@ -84112,6 +84307,11 @@ entities: rot: 3.141592653589793 rad pos: -38.5,-41.5 parent: 12 + - uid: 26519 + components: + - type: Transform + pos: 30.5,-10.5 + parent: 12 - proto: DisposalMachineFrame entities: - uid: 12940 @@ -84121,6 +84321,12 @@ entities: parent: 12 - proto: DisposalPipe entities: + - uid: 19 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-14.5 + parent: 12 - uid: 357 components: - type: Transform @@ -84133,6 +84339,12 @@ entities: rot: -1.5707963267948966 rad pos: 17.5,-12.5 parent: 12 + - uid: 499 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-12.5 + parent: 12 - uid: 637 components: - type: Transform @@ -84518,6 +84730,12 @@ entities: rot: -1.5707963267948966 rad pos: 18.5,-12.5 parent: 12 + - uid: 2369 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-10.5 + parent: 12 - uid: 2538 components: - type: Transform @@ -85044,6 +85262,18 @@ entities: rot: 1.5707963267948966 rad pos: 49.5,45.5 parent: 12 + - uid: 4681 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-10.5 + parent: 12 + - uid: 4684 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-11.5 + parent: 12 - uid: 4695 components: - type: Transform @@ -90806,6 +91036,12 @@ entities: rot: 3.141592653589793 rad pos: 10.5,-23.5 parent: 12 + - uid: 26104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-13.5 + parent: 12 - uid: 26114 components: - type: Transform @@ -92988,6 +93224,11 @@ entities: rot: 3.141592653589793 rad pos: 16.5,-13.5 parent: 12 + - uid: 26522 + components: + - type: Transform + pos: 33.5,-9.5 + parent: 12 - uid: 27021 components: - type: Transform @@ -94153,6 +94394,13 @@ entities: rot: -12.566370614359172 rad pos: -29.330828,7.500151 parent: 12 +- proto: ElectrolysisUnitMachineCircuitboard + entities: + - uid: 26647 + components: + - type: Transform + pos: -3.5,21.5 + parent: 12 - proto: EmergencyFunnyOxygenTankFilled entities: - uid: 27129 @@ -101575,14 +101823,14 @@ entities: pos: 6.5,5.5 parent: 12 - type: AtmosPipeColor - color: '#947507FF' + color: '#FFA500FF' - uid: 2733 components: - type: Transform pos: 12.5,5.5 parent: 12 - type: AtmosPipeColor - color: '#947507FF' + color: '#FFA500FF' - uid: 2734 components: - type: Transform @@ -101590,7 +101838,7 @@ entities: pos: 12.5,-0.5 parent: 12 - type: AtmosPipeColor - color: '#947507FF' + color: '#FFA500FF' - uid: 2758 components: - type: Transform @@ -102092,7 +102340,7 @@ entities: pos: 3.5,7.5 parent: 12 - type: AtmosPipeColor - color: '#947507FF' + color: '#FFA500FF' - uid: 5427 components: - type: Transform @@ -102155,7 +102403,7 @@ entities: pos: 6.5,7.5 parent: 12 - type: AtmosPipeColor - color: '#947507FF' + color: '#FFA500FF' - uid: 6220 components: - type: Transform @@ -104037,6 +104285,40 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 26573 + components: + - type: Transform + pos: 10.5,24.5 + parent: 12 + - uid: 26576 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,24.5 + parent: 12 + - uid: 26594 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,27.5 + parent: 12 + - uid: 26595 + components: + - type: Transform + pos: 13.5,27.5 + parent: 12 + - uid: 26596 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,24.5 + parent: 12 + - uid: 26602 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,24.5 + parent: 12 - uid: 26985 components: - type: Transform @@ -106016,7 +106298,7 @@ entities: pos: 11.5,5.5 parent: 12 - type: AtmosPipeColor - color: '#947507FF' + color: '#FFA500FF' - uid: 2448 components: - type: Transform @@ -106055,7 +106337,7 @@ entities: pos: 4.5,7.5 parent: 12 - type: AtmosPipeColor - color: '#947507FF' + color: '#FFA500FF' - uid: 2677 components: - type: Transform @@ -106071,7 +106353,7 @@ entities: pos: 5.5,7.5 parent: 12 - type: AtmosPipeColor - color: '#947507FF' + color: '#FFA500FF' - uid: 2692 components: - type: Transform @@ -106297,7 +106579,7 @@ entities: pos: 10.5,5.5 parent: 12 - type: AtmosPipeColor - color: '#947507FF' + color: '#FFA500FF' - uid: 3464 components: - type: Transform @@ -107887,7 +108169,7 @@ entities: pos: 12.5,2.5 parent: 12 - type: AtmosPipeColor - color: '#947507FF' + color: '#FFA500FF' - uid: 4390 components: - type: Transform @@ -109318,7 +109600,7 @@ entities: pos: 12.5,4.5 parent: 12 - type: AtmosPipeColor - color: '#947507FF' + color: '#FFA500FF' - uid: 5387 components: - type: Transform @@ -109342,7 +109624,7 @@ entities: pos: 9.5,5.5 parent: 12 - type: AtmosPipeColor - color: '#947507FF' + color: '#FFA500FF' - uid: 5399 components: - type: Transform @@ -109374,7 +109656,7 @@ entities: pos: 7.5,5.5 parent: 12 - type: AtmosPipeColor - color: '#947507FF' + color: '#FFA500FF' - uid: 5408 components: - type: Transform @@ -109398,7 +109680,7 @@ entities: pos: 6.5,6.5 parent: 12 - type: AtmosPipeColor - color: '#947507FF' + color: '#FFA500FF' - uid: 5418 components: - type: Transform @@ -109406,7 +109688,7 @@ entities: pos: 8.5,5.5 parent: 12 - type: AtmosPipeColor - color: '#947507FF' + color: '#FFA500FF' - uid: 5422 components: - type: Transform @@ -109530,7 +109812,7 @@ entities: pos: 12.5,1.5 parent: 12 - type: AtmosPipeColor - color: '#947507FF' + color: '#FFA500FF' - uid: 5634 components: - type: Transform @@ -109893,7 +110175,7 @@ entities: pos: 3.5,9.5 parent: 12 - type: AtmosPipeColor - color: '#947507FF' + color: '#FFA500FF' - uid: 6854 components: - type: Transform @@ -110707,7 +110989,7 @@ entities: pos: 3.5,8.5 parent: 12 - type: AtmosPipeColor - color: '#947507FF' + color: '#FFA500FF' - uid: 7117 components: - type: Transform @@ -110715,7 +110997,7 @@ entities: pos: 3.5,10.5 parent: 12 - type: AtmosPipeColor - color: '#947507FF' + color: '#FFA500FF' - uid: 7119 components: - type: Transform @@ -110731,7 +111013,7 @@ entities: pos: 3.5,11.5 parent: 12 - type: AtmosPipeColor - color: '#947507FF' + color: '#FFA500FF' - uid: 7137 components: - type: Transform @@ -110787,7 +111069,7 @@ entities: pos: 3.5,12.5 parent: 12 - type: AtmosPipeColor - color: '#947507FF' + color: '#FFA500FF' - uid: 7147 components: - type: Transform @@ -112420,7 +112702,7 @@ entities: pos: 12.5,0.5 parent: 12 - type: AtmosPipeColor - color: '#947507FF' + color: '#FFA500FF' - uid: 8981 components: - type: Transform @@ -114019,15 +114301,7 @@ entities: pos: 13.5,-0.5 parent: 12 - type: AtmosPipeColor - color: '#947507FF' - - uid: 11323 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#947507FF' + color: '#FFA500FF' - uid: 11344 components: - type: Transform @@ -114113,7 +114387,7 @@ entities: pos: 12.5,3.5 parent: 12 - type: AtmosPipeColor - color: '#947507FF' + color: '#FFA500FF' - uid: 11592 components: - type: Transform @@ -124947,6 +125221,12 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 25831 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,14.5 + parent: 12 - uid: 25959 components: - type: Transform @@ -125260,6 +125540,100 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 26559 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,19.5 + parent: 12 + - uid: 26561 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,20.5 + parent: 12 + - uid: 26562 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,21.5 + parent: 12 + - uid: 26563 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,22.5 + parent: 12 + - uid: 26572 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,23.5 + parent: 12 + - uid: 26578 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,23.5 + parent: 12 + - uid: 26581 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,22.5 + parent: 12 + - uid: 26582 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,21.5 + parent: 12 + - uid: 26585 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,20.5 + parent: 12 + - uid: 26587 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,19.5 + parent: 12 + - uid: 26603 + components: + - type: Transform + pos: 9.5,25.5 + parent: 12 + - uid: 26604 + components: + - type: Transform + pos: 9.5,26.5 + parent: 12 + - uid: 26605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,27.5 + parent: 12 + - uid: 26608 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,27.5 + parent: 12 + - uid: 26612 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,25.5 + parent: 12 + - uid: 26613 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,26.5 + parent: 12 - uid: 26629 components: - type: Transform @@ -134737,7 +135111,28 @@ entities: pos: 3.5,13.5 parent: 12 - type: AtmosPipeColor - color: '#947507FF' + color: '#FFA500FF' + - uid: 26045 + components: + - type: MetaData + name: volumetric gas pump to TEG + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-0.5 + parent: 12 + - type: AtmosPipeColor + color: '#FFA500FF' + - uid: 26556 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,18.5 + parent: 12 + - uid: 26592 + components: + - type: Transform + pos: 12.5,18.5 + parent: 12 - proto: Gauze entities: - uid: 13825 @@ -141877,6 +142272,24 @@ entities: - type: Transform pos: -40.5,57.5 parent: 12 + - uid: 26156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,22.5 + parent: 12 + - uid: 26157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,20.5 + parent: 12 + - uid: 26158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,20.5 + parent: 12 - uid: 26171 components: - type: Transform @@ -141990,6 +142403,12 @@ entities: rot: 1.5707963267948966 rad pos: -43.5,-54.5 parent: 12 + - uid: 26201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,22.5 + parent: 12 - uid: 26229 components: - type: Transform @@ -144638,6 +145057,12 @@ entities: - type: Transform pos: -45.5,-19.5 parent: 12 + - uid: 26617 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,27.5 + parent: 12 - uid: 28293 components: - type: Transform @@ -146019,11 +146444,6 @@ entities: parent: 12 - proto: LockerElectricalSuppliesFilled entities: - - uid: 2369 - components: - - type: Transform - pos: 33.5,-11.5 - parent: 12 - uid: 4523 components: - type: Transform @@ -146059,6 +146479,11 @@ entities: - type: Transform pos: 48.5,63.5 parent: 12 + - uid: 26159 + components: + - type: Transform + pos: 33.5,-12.5 + parent: 12 - uid: 32071 components: - type: Transform @@ -146593,15 +147018,15 @@ entities: - type: Transform pos: 47.5,53.5 parent: 12 - - uid: 27154 + - uid: 26203 components: - type: Transform - pos: -54.5,-17.5 + pos: 4.5,-14.5 parent: 12 - - uid: 28050 + - uid: 27154 components: - type: Transform - pos: 3.5,-23.5 + pos: -54.5,-17.5 parent: 12 - proto: LogicGateOr entities: @@ -148631,6 +149056,33 @@ entities: - type: Transform pos: 54.333927,24.618994 parent: 12 + - uid: 26645 + components: + - type: Transform + pos: 58.5,6.5 + parent: 12 + - type: Paper + content: >- + Notes to self: + + + - [bold]BUILD METEOR DEFENCE FOR TESLA!!![/bold] + + - Don't put tesla coils or grounding rods near the emitters + + - Tesla coils need to be hooked up to HV to generate power, emitters need to be hooked up to MV to work + + - Make sure [bold]ALL[/bold] the emitters and containment field generators are turned on and locked before starting the tesla + + - Turn off the PA after the tesla starts + + - Remember to repair tesla coils and grounding rods using welding fuel + + - Don't put the emitters too close to the tesla, don't put the tesla coils too far from the tesla + + - Make sure the emitters are not shooting at the tesla coils or grounding rods + + - [bold]WEAR INSULATED GLOVES WHEN WORKING ON THE TESLA!!![/bold] - uid: 29970 components: - type: Transform @@ -149077,13 +149529,14 @@ entities: - uid: 8435 components: - type: Transform - rot: -6.283185307179586 rad - pos: 53.5426,-3.492909 + rot: -43.98229715025713 rad + pos: 61.374832,-3.3119311 parent: 12 - uid: 8436 components: - type: Transform - pos: 61.5,-3.5 + rot: -43.98229715025713 rad + pos: 61.708168,-3.4995613 parent: 12 - uid: 16482 components: @@ -149748,6 +150201,13 @@ entities: rot: -6.283185307179586 rad pos: -2.5359287,58.81089 parent: 12 +- proto: PlushieSpaceLizard + entities: + - uid: 26670 + components: + - type: Transform + pos: -3.4178286,7.476963 + parent: 12 - proto: PlushieVox entities: - uid: 21518 @@ -149881,8 +150341,11 @@ entities: - uid: 2465 components: - type: Transform + anchored: True pos: 8.5,-13.5 parent: 12 + - type: Physics + bodyType: Static - proto: PortableScrubber entities: - uid: 1760 @@ -154113,6 +154576,11 @@ entities: rot: 3.141592653589793 rad pos: 58.5,-49.5 parent: 12 + - uid: 26520 + components: + - type: Transform + pos: 33.5,-9.5 + parent: 12 - uid: 26560 components: - type: Transform @@ -154488,11 +154956,6 @@ entities: - type: Transform pos: 39.5,-19.5 parent: 12 - - uid: 7524 - components: - - type: Transform - pos: 54.5,-5.5 - parent: 12 - uid: 8040 components: - type: Transform @@ -154981,6 +155444,11 @@ entities: - type: Transform pos: -34.5,-34.5 parent: 12 + - uid: 26007 + components: + - type: Transform + pos: 55.5,-5.5 + parent: 12 - uid: 26301 components: - type: Transform @@ -157609,6 +158077,24 @@ entities: - type: Transform pos: 9.5,19.5 parent: 12 + - uid: 26622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,20.5 + parent: 12 + - uid: 26637 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,20.5 + parent: 12 + - uid: 26638 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,22.5 + parent: 12 - uid: 26639 components: - type: Transform @@ -157619,6 +158105,12 @@ entities: - type: Transform pos: 10.5,0.5 parent: 12 + - uid: 26642 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,22.5 + parent: 12 - uid: 26672 components: - type: Transform @@ -164012,6 +164504,13 @@ entities: - type: Transform pos: 49.57303,47.439972 parent: 12 +- proto: SheetPlasma + entities: + - uid: 26077 + components: + - type: Transform + pos: 39.5,4.5 + parent: 12 - proto: SheetPlasma1 entities: - uid: 22020 @@ -164028,14 +164527,6 @@ entities: - type: Transform pos: -35.41417,-37.542362 parent: 12 - - uid: 29092 - components: - - type: Transform - rot: -12.566370614359172 rad - pos: 39.49274,4.534418 - parent: 12 - - type: Stack - count: 20 - proto: SheetPlasteel entities: - uid: 7311 @@ -164051,8 +164542,14 @@ entities: - uid: 23173 components: - type: Transform - rot: -6.283185307179586 rad - pos: 57.489006,-5.2227006 + rot: -43.98229715025713 rad + pos: 53.468582,-3.3849072 + parent: 12 + - uid: 26101 + components: + - type: Transform + rot: -43.98229715025713 rad + pos: 57.301918,-5.261206 parent: 12 - proto: SheetPlastic entities: @@ -164117,7 +164614,8 @@ entities: - uid: 8439 components: - type: Transform - pos: 61.5,-3.5 + rot: -43.98229715025713 rad + pos: 57.63525,-5.083999 parent: 12 - uid: 8898 components: @@ -164165,14 +164663,14 @@ entities: parent: 12 - proto: SheetUranium1 entities: - - uid: 11371 + - uid: 26534 components: - type: Transform - rot: -18.84955592153876 rad - pos: 9.582282,-13.607407 + rot: -56.54866776461632 rad + pos: 9.501114,-13.461607 parent: 12 - type: Stack - count: 10 + count: 15 - proto: ShelfBar entities: - uid: 22816 @@ -166249,6 +166747,12 @@ entities: - type: Transform pos: 30.5,60.5 parent: 12 + - uid: 26064 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-10.5 + parent: 12 - uid: 28212 components: - type: Transform @@ -166392,6 +166896,11 @@ entities: - type: Transform pos: 43.38873,16.572454 parent: 12 + - uid: 26524 + components: + - type: Transform + pos: 33.465336,-10.465965 + parent: 12 - proto: SodaDispenser entities: - uid: 8983 @@ -170036,11 +170545,6 @@ entities: parent: 12 - proto: SubstationBasic entities: - - uid: 19 - components: - - type: Transform - pos: 33.5,-9.5 - parent: 12 - uid: 2121 components: - type: Transform @@ -170076,6 +170580,11 @@ entities: - type: Transform pos: -11.5,-19.5 parent: 12 + - uid: 4761 + components: + - type: Transform + pos: 4.5,-16.5 + parent: 12 - uid: 4890 components: - type: Transform @@ -170512,6 +171021,16 @@ entities: - SurveillanceCameraCommand nameSet: True id: AI core + - uid: 26204 + components: + - type: Transform + pos: 4.5,7.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI exterior - uid: 28804 components: - type: Transform @@ -170592,39 +171111,6 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Atmos lockers/engi hallway - - uid: 4715 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,1.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Engi hallway AME - - uid: 4761 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,16.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: TEG East - - uid: 6774 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,8.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Tesla containment - uid: 7157 components: - type: Transform @@ -170711,6 +171197,102 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Engineering entrance + - uid: 26102 + components: + - type: Transform + pos: 52.5,4.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Break room + - uid: 26133 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,1.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Containment entrance + - uid: 26139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,8.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Tesla North + - uid: 26533 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,4.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Station anchor + - uid: 26535 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,0.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Tesla South + - uid: 26549 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,-3.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Containment control room + - uid: 26551 + components: + - type: Transform + pos: 61.5,-3.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Containment airlock + - uid: 26553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,16.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: TEG East + - uid: 26646 + components: + - type: Transform + pos: 39.5,-2.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: AME hallway - uid: 27001 components: - type: Transform @@ -175994,10 +176576,10 @@ entities: bodyType: Dynamic - proto: TeslaGenerator entities: - - uid: 4988 + - uid: 26531 components: - type: Transform - pos: 60.5,10.5 + pos: 57.5,10.5 parent: 12 - proto: TeslaGroundingRod entities: @@ -176033,6 +176615,22 @@ entities: parent: 12 - type: Physics bodyType: Dynamic + - uid: 26153 + components: + - type: Transform + anchored: False + pos: 59.5,10.5 + parent: 12 + - type: Physics + bodyType: Dynamic + - uid: 26530 + components: + - type: Transform + anchored: False + pos: 60.5,10.5 + parent: 12 + - type: Physics + bodyType: Dynamic - proto: ThermomachineFreezerMachineCircuitBoard entities: - uid: 11244 @@ -176171,6 +176769,11 @@ entities: rot: 1.5707963267948966 rad pos: -6.5,54.5 parent: 12 + - uid: 26160 + components: + - type: Transform + pos: 33.5,-9.5 + parent: 12 - proto: ToiletEmpty entities: - uid: 4220 @@ -176751,6 +177354,11 @@ entities: parent: 12 - proto: TrashBakedBananaPeel entities: + - uid: 26132 + components: + - type: Transform + pos: -1.5,21.5 + parent: 12 - uid: 31148 components: - type: Transform @@ -178005,6 +178613,11 @@ entities: parent: 12 - proto: VendingMachineTankDispenserEngineering entities: + - uid: 26669 + components: + - type: Transform + pos: 11.5,-13.5 + parent: 12 - uid: 27384 components: - type: Transform @@ -178601,12 +179214,6 @@ entities: rot: 1.5707963267948966 rad pos: 3.5,-16.5 parent: 12 - - uid: 185 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-16.5 - parent: 12 - uid: 186 components: - type: Transform @@ -179119,11 +179726,6 @@ entities: - type: Transform pos: -31.5,-33.5 parent: 12 - - uid: 683 - components: - - type: Transform - pos: 32.5,-11.5 - parent: 12 - uid: 685 components: - type: Transform @@ -180097,27 +180699,12 @@ entities: rot: -1.5707963267948966 rad pos: 63.5,-3.5 parent: 12 - - uid: 4681 - components: - - type: Transform - pos: 10.5,22.5 - parent: 12 - uid: 4682 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-1.5 parent: 12 - - uid: 4683 - components: - - type: Transform - pos: 12.5,20.5 - parent: 12 - - uid: 4684 - components: - - type: Transform - pos: 10.5,20.5 - parent: 12 - uid: 4685 components: - type: Transform @@ -180358,30 +180945,12 @@ entities: rot: 1.5707963267948966 rad pos: 34.5,-10.5 parent: 12 - - uid: 5170 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-9.5 - parent: 12 - uid: 5172 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,-12.5 parent: 12 - - uid: 5175 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-12.5 - parent: 12 - - uid: 5176 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-12.5 - parent: 12 - uid: 5189 components: - type: Transform @@ -182306,11 +182875,6 @@ entities: rot: 1.5707963267948966 rad pos: -9.5,15.5 parent: 12 - - uid: 10655 - components: - - type: Transform - pos: 12.5,22.5 - parent: 12 - uid: 10669 components: - type: Transform @@ -186369,6 +186933,17 @@ entities: rot: -1.5707963267948966 rad pos: -24.5,66.5 parent: 12 + - uid: 25870 + components: + - type: Transform + pos: 5.5,-16.5 + parent: 12 + - uid: 25889 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-14.5 + parent: 12 - uid: 25902 components: - type: Transform @@ -186679,12 +187254,6 @@ entities: - type: Transform pos: 5.5,-10.5 parent: 12 - - uid: 27991 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-15.5 - parent: 12 - uid: 28046 components: - type: Transform @@ -186848,12 +187417,6 @@ entities: - type: Transform pos: -4.5,7.5 parent: 12 - - uid: 28522 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-14.5 - parent: 12 - uid: 28527 components: - type: Transform @@ -188356,6 +188919,18 @@ entities: - type: Transform pos: -29.5,-22.5 parent: 12 + - uid: 681 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-9.5 + parent: 12 + - uid: 683 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-11.5 + parent: 12 - uid: 686 components: - type: Transform @@ -195138,6 +195713,18 @@ entities: - type: Transform pos: -21.5,-9.5 parent: 12 + - uid: 26155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-12.5 + parent: 12 + - uid: 26162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-11.5 + parent: 12 - uid: 26184 components: - type: Transform From 867efe8b5ba551b85a167aa5dfbe9afe03899730 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D1=80=D1=82?= <123451459+JustArt1m@users.noreply.github.com> Date: Sun, 6 Oct 2024 15:48:49 +0300 Subject: [PATCH 67/94] Add flowers to loadout (#32097) * Add_Poppy&Lily * Add_FlowerWreath * Add_Headflowers Sprites, meta, prototype * Id_Changes * Changes * Update_Sprite * Desc_Change * Scale_Change * Sprite_Scaling --- .../Entities/Clothing/Head/misc.yml | 11 +++++++++++ .../Loadouts/Miscellaneous/trinkets.yml | 13 +++++++++++++ .../Prototypes/Loadouts/loadout_groups.yml | 2 ++ .../Misc/hairflower.rsi/equipped-HELMET.png | Bin 0 -> 297 bytes .../Head/Misc/hairflower.rsi/icon.png | Bin 0 -> 442 bytes .../Head/Misc/hairflower.rsi/meta.json | 18 ++++++++++++++++++ 6 files changed, 44 insertions(+) create mode 100644 Resources/Textures/Clothing/Head/Misc/hairflower.rsi/equipped-HELMET.png create mode 100644 Resources/Textures/Clothing/Head/Misc/hairflower.rsi/icon.png create mode 100644 Resources/Textures/Clothing/Head/Misc/hairflower.rsi/meta.json diff --git a/Resources/Prototypes/Entities/Clothing/Head/misc.yml b/Resources/Prototypes/Entities/Clothing/Head/misc.yml index 22ea8ed6ba..254eaf37c8 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/misc.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/misc.yml @@ -312,3 +312,14 @@ - WhitelistChameleon - type: StaticPrice price: 1 + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatHairflower + name: hairflower + description: A beautiful hairflower that can be inserted between locks of hair. + components: + - type: Sprite + sprite: Clothing/Head/Misc/hairflower.rsi + - type: Clothing + sprite: Clothing/Head/Misc/hairflower.rsi diff --git a/Resources/Prototypes/Loadouts/Miscellaneous/trinkets.yml b/Resources/Prototypes/Loadouts/Miscellaneous/trinkets.yml index ea70828ce4..14c1174a7d 100644 --- a/Resources/Prototypes/Loadouts/Miscellaneous/trinkets.yml +++ b/Resources/Prototypes/Loadouts/Miscellaneous/trinkets.yml @@ -8,6 +8,19 @@ department: Command time: 3600 # 1 hour +# Flowers +- type: loadout + id: FlowerWreath + storage: + back: + - ClothingHeadHatFlowerWreath + +- type: loadout + id: Hairflower + storage: + back: + - ClothingHeadHatHairflower + # Plushies - type: loadout id: PlushieLizard diff --git a/Resources/Prototypes/Loadouts/loadout_groups.yml b/Resources/Prototypes/Loadouts/loadout_groups.yml index 1483fc3c11..069dae3ae1 100644 --- a/Resources/Prototypes/Loadouts/loadout_groups.yml +++ b/Resources/Prototypes/Loadouts/loadout_groups.yml @@ -5,6 +5,8 @@ minLimit: 0 maxLimit: 3 loadouts: + - FlowerWreath + - Hairflower - PlushieLizard - PlushieSpaceLizard - Lighter diff --git a/Resources/Textures/Clothing/Head/Misc/hairflower.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Misc/hairflower.rsi/equipped-HELMET.png new file mode 100644 index 0000000000000000000000000000000000000000..d1a436b83793c3d52c053dfcff4d88fe84243253 GIT binary patch literal 297 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=A3R+gLn`LHowbpZ$x(#$eph3R z?z3mt+kIz7Hru{f`YfuYbEbmQ9N!w5zPXwYjLmgoKHW0$eK}K9*Wq$)L+R0p*X!mS zSG2Tw{>E>5SmEdRDSH|UJ>Jbv*&TUhySgSSd=tPx$bV)=(R9J=Wmc44jFcgJPN*c)EK)_l%c2e+=)oaH>roKSOyhDe)Ltdg&z@wib zLy4x2U9Z4ULjz499TEw}jVf7AI<)@4Aj?1Z_}qIX11&B8olcX77vs@RjVH@h(7S>K zEXJc%m|qc~&~}pq zurIjCa&J|n%Qb5ep31cN;%qCk6I428y#a&} zV2pu?z&Xd$=Q{v=bIi3iI2}-_Fj2wg!#+6Y+6k3!^Kf;6R~uGIvK(oe0@$bF`Su3D z!J(QfqIU{Tb%W}JB+Kz~e|I$RD Date: Sun, 6 Oct 2024 12:49:56 +0000 Subject: [PATCH 68/94] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index b46f5c46be..cfa746141e 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Plykiya - changes: - - message: Thief game rule now properly selects more than one thief. - type: Fix - id: 6990 - time: '2024-07-27T07:27:21.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30393 - author: BombasterDS changes: - message: Added new plant mutations for apple, sugarcane and galaxythistle @@ -3942,3 +3935,10 @@ id: 7489 time: '2024-10-05T18:44:47.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32452 +- author: Just_Art + changes: + - message: Added a flower wreath and hairflower to loadout! + type: Add + id: 7490 + time: '2024-10-06T12:48:49.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32097 From 46a2eb545e39a63f48b8da3d1fa78da47e0f6db2 Mon Sep 17 00:00:00 2001 From: Golinth Date: Sun, 6 Oct 2024 08:33:02 -0500 Subject: [PATCH 69/94] Fully Revert Clown Waddling (#32652) Fully revert Clown Waddling (revival of #29161) A sad day, see #29156 for discussion --- .../Movement/Systems/WaddleAnimationSystem.cs | 149 ------------------ .../Movement/Systems/WaddleAnimationSystem.cs | 5 - .../Components/WaddleWhenWornComponent.cs | 36 ----- .../EntitySystems/WaddleClothingSystem.cs | 32 ---- .../Components/WaddleAnimationComponent.cs | 74 --------- .../Systems/SharedWaddleAnimationSystem.cs | 106 ------------- .../Entities/Clothing/Shoes/misc.yml | 2 - .../Entities/Clothing/Shoes/specific.yml | 1 - 8 files changed, 405 deletions(-) delete mode 100644 Content.Client/Movement/Systems/WaddleAnimationSystem.cs delete mode 100644 Content.Server/Movement/Systems/WaddleAnimationSystem.cs delete mode 100644 Content.Shared/Clothing/Components/WaddleWhenWornComponent.cs delete mode 100644 Content.Shared/Clothing/EntitySystems/WaddleClothingSystem.cs delete mode 100644 Content.Shared/Movement/Components/WaddleAnimationComponent.cs delete mode 100644 Content.Shared/Movement/Systems/SharedWaddleAnimationSystem.cs diff --git a/Content.Client/Movement/Systems/WaddleAnimationSystem.cs b/Content.Client/Movement/Systems/WaddleAnimationSystem.cs deleted file mode 100644 index 0ed2d04f69..0000000000 --- a/Content.Client/Movement/Systems/WaddleAnimationSystem.cs +++ /dev/null @@ -1,149 +0,0 @@ -using System.Numerics; -using Content.Client.Buckle; -using Content.Client.Gravity; -using Content.Shared.ActionBlocker; -using Content.Shared.Mobs.Systems; -using Content.Shared.Movement.Components; -using Content.Shared.Movement.Systems; -using Robust.Client.Animations; -using Robust.Client.GameObjects; -using Robust.Shared.Animations; - -namespace Content.Client.Movement.Systems; - -public sealed class WaddleAnimationSystem : SharedWaddleAnimationSystem -{ - [Dependency] private readonly AnimationPlayerSystem _animation = default!; - [Dependency] private readonly GravitySystem _gravity = default!; - [Dependency] private readonly ActionBlockerSystem _actionBlocker = default!; - [Dependency] private readonly BuckleSystem _buckle = default!; - [Dependency] private readonly MobStateSystem _mobState = default!; - - public override void Initialize() - { - base.Initialize(); - - SubscribeAllEvent(OnStartWaddling); - SubscribeLocalEvent(OnAnimationCompleted); - SubscribeAllEvent(OnStopWaddling); - } - - private void OnStartWaddling(StartedWaddlingEvent msg, EntitySessionEventArgs args) - { - if (TryComp(GetEntity(msg.Entity), out var comp)) - StartWaddling((GetEntity(msg.Entity), comp)); - } - - private void OnStopWaddling(StoppedWaddlingEvent msg, EntitySessionEventArgs args) - { - if (TryComp(GetEntity(msg.Entity), out var comp)) - StopWaddling((GetEntity(msg.Entity), comp)); - } - - private void StartWaddling(Entity entity) - { - if (_animation.HasRunningAnimation(entity.Owner, entity.Comp.KeyName)) - return; - - if (!TryComp(entity.Owner, out var mover)) - return; - - if (_gravity.IsWeightless(entity.Owner)) - return; - - if (!_actionBlocker.CanMove(entity.Owner, mover)) - return; - - // Do nothing if buckled in - if (_buckle.IsBuckled(entity.Owner)) - return; - - // Do nothing if crit or dead (for obvious reasons) - if (_mobState.IsIncapacitated(entity.Owner)) - return; - - PlayWaddleAnimationUsing( - (entity.Owner, entity.Comp), - CalculateAnimationLength(entity.Comp, mover), - CalculateTumbleIntensity(entity.Comp) - ); - } - - private static float CalculateTumbleIntensity(WaddleAnimationComponent component) - { - return component.LastStep ? 360 - component.TumbleIntensity : component.TumbleIntensity; - } - - private static float CalculateAnimationLength(WaddleAnimationComponent component, InputMoverComponent mover) - { - return mover.Sprinting ? component.AnimationLength * component.RunAnimationLengthMultiplier : component.AnimationLength; - } - - private void OnAnimationCompleted(Entity entity, ref AnimationCompletedEvent args) - { - if (args.Key != entity.Comp.KeyName) - return; - - if (!TryComp(entity.Owner, out var mover)) - return; - - PlayWaddleAnimationUsing( - (entity.Owner, entity.Comp), - CalculateAnimationLength(entity.Comp, mover), - CalculateTumbleIntensity(entity.Comp) - ); - } - - private void StopWaddling(Entity entity) - { - if (!_animation.HasRunningAnimation(entity.Owner, entity.Comp.KeyName)) - return; - - _animation.Stop(entity.Owner, entity.Comp.KeyName); - - if (!TryComp(entity.Owner, out var sprite)) - return; - - sprite.Offset = new Vector2(); - sprite.Rotation = Angle.FromDegrees(0); - } - - private void PlayWaddleAnimationUsing(Entity entity, float len, float tumbleIntensity) - { - entity.Comp.LastStep = !entity.Comp.LastStep; - - var anim = new Animation() - { - Length = TimeSpan.FromSeconds(len), - AnimationTracks = - { - new AnimationTrackComponentProperty() - { - ComponentType = typeof(SpriteComponent), - Property = nameof(SpriteComponent.Rotation), - InterpolationMode = AnimationInterpolationMode.Linear, - KeyFrames = - { - new AnimationTrackProperty.KeyFrame(Angle.FromDegrees(0), 0), - new AnimationTrackProperty.KeyFrame(Angle.FromDegrees(tumbleIntensity), len/2), - new AnimationTrackProperty.KeyFrame(Angle.FromDegrees(0), len/2), - } - }, - new AnimationTrackComponentProperty() - { - ComponentType = typeof(SpriteComponent), - Property = nameof(SpriteComponent.Offset), - InterpolationMode = AnimationInterpolationMode.Linear, - KeyFrames = - { - new AnimationTrackProperty.KeyFrame(new Vector2(), 0), - new AnimationTrackProperty.KeyFrame(entity.Comp.HopIntensity, len/2), - new AnimationTrackProperty.KeyFrame(new Vector2(), len/2), - } - } - } - }; - - _animation.Play(entity.Owner, anim, entity.Comp.KeyName); - } -} diff --git a/Content.Server/Movement/Systems/WaddleAnimationSystem.cs b/Content.Server/Movement/Systems/WaddleAnimationSystem.cs deleted file mode 100644 index e6083210e1..0000000000 --- a/Content.Server/Movement/Systems/WaddleAnimationSystem.cs +++ /dev/null @@ -1,5 +0,0 @@ -using Content.Shared.Movement.Systems; - -namespace Content.Server.Movement.Systems; - -public sealed class WaddleAnimationSystem : SharedWaddleAnimationSystem; diff --git a/Content.Shared/Clothing/Components/WaddleWhenWornComponent.cs b/Content.Shared/Clothing/Components/WaddleWhenWornComponent.cs deleted file mode 100644 index fb7490ef4f..0000000000 --- a/Content.Shared/Clothing/Components/WaddleWhenWornComponent.cs +++ /dev/null @@ -1,36 +0,0 @@ -using System.Numerics; -using Robust.Shared.GameStates; - -namespace Content.Shared.Clothing.Components; - -/// -/// Defines something as causing waddling when worn. -/// -[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] -public sealed partial class WaddleWhenWornComponent : Component -{ - /// - /// How high should they hop during the waddle? Higher hop = more energy. - /// - [DataField, AutoNetworkedField] - public Vector2 HopIntensity = new(0, 0.25f); - - /// - /// How far should they rock backward and forward during the waddle? - /// Each step will alternate between this being a positive and negative rotation. More rock = more scary. - /// - [DataField, AutoNetworkedField] - public float TumbleIntensity = 20.0f; - - /// - /// How long should a complete step take? Less time = more chaos. - /// - [DataField, AutoNetworkedField] - public float AnimationLength = 0.66f; - - /// - /// How much shorter should the animation be when running? - /// - [DataField, AutoNetworkedField] - public float RunAnimationLengthMultiplier = 0.568f; -} diff --git a/Content.Shared/Clothing/EntitySystems/WaddleClothingSystem.cs b/Content.Shared/Clothing/EntitySystems/WaddleClothingSystem.cs deleted file mode 100644 index b445eb258e..0000000000 --- a/Content.Shared/Clothing/EntitySystems/WaddleClothingSystem.cs +++ /dev/null @@ -1,32 +0,0 @@ -using Content.Shared.Clothing; -using Content.Shared.Clothing.Components; -using Content.Shared.Movement.Components; -using Content.Shared.Inventory.Events; - -namespace Content.Shared.Clothing.EntitySystems; - -public sealed class WaddleClothingSystem : EntitySystem -{ - public override void Initialize() - { - base.Initialize(); - - SubscribeLocalEvent(OnGotEquipped); - SubscribeLocalEvent(OnGotUnequipped); - } - - private void OnGotEquipped(EntityUid entity, WaddleWhenWornComponent comp, ClothingGotEquippedEvent args) - { - var waddleAnimComp = EnsureComp(args.Wearer); - - waddleAnimComp.AnimationLength = comp.AnimationLength; - waddleAnimComp.HopIntensity = comp.HopIntensity; - waddleAnimComp.RunAnimationLengthMultiplier = comp.RunAnimationLengthMultiplier; - waddleAnimComp.TumbleIntensity = comp.TumbleIntensity; - } - - private void OnGotUnequipped(EntityUid entity, WaddleWhenWornComponent comp, ClothingGotUnequippedEvent args) - { - RemComp(args.Wearer); - } -} diff --git a/Content.Shared/Movement/Components/WaddleAnimationComponent.cs b/Content.Shared/Movement/Components/WaddleAnimationComponent.cs deleted file mode 100644 index 3cd9a3749e..0000000000 --- a/Content.Shared/Movement/Components/WaddleAnimationComponent.cs +++ /dev/null @@ -1,74 +0,0 @@ -using System.Numerics; -using Robust.Shared.Serialization; - -namespace Content.Shared.Movement.Components; - -/// -/// Declares that an entity has started to waddle like a duck/clown. -/// -/// The newly be-waddled. -[Serializable, NetSerializable] -public sealed class StartedWaddlingEvent(NetEntity entity) : EntityEventArgs -{ - public NetEntity Entity = entity; -} - -/// -/// Declares that an entity has stopped waddling like a duck/clown. -/// -/// The former waddle-er. -[Serializable, NetSerializable] -public sealed class StoppedWaddlingEvent(NetEntity entity) : EntityEventArgs -{ - public NetEntity Entity = entity; -} - -/// -/// Defines something as having a waddle animation when it moves. -/// -[RegisterComponent, AutoGenerateComponentState] -public sealed partial class WaddleAnimationComponent : Component -{ - /// - /// What's the name of this animation? Make sure it's unique so it can play along side other animations. - /// This prevents someone accidentally causing two identical waddling effects to play on someone at the same time. - /// - [DataField] - public string KeyName = "Waddle"; - - /// - /// How high should they hop during the waddle? Higher hop = more energy. - /// - [DataField, AutoNetworkedField] - public Vector2 HopIntensity = new(0, 0.25f); - - /// - /// How far should they rock backward and forward during the waddle? - /// Each step will alternate between this being a positive and negative rotation. More rock = more scary. - /// - [DataField, AutoNetworkedField] - public float TumbleIntensity = 20.0f; - - /// - /// How long should a complete step take? Less time = more chaos. - /// - [DataField, AutoNetworkedField] - public float AnimationLength = 0.66f; - - /// - /// How much shorter should the animation be when running? - /// - [DataField, AutoNetworkedField] - public float RunAnimationLengthMultiplier = 0.568f; - - /// - /// Stores which step we made last, so if someone cancels out of the animation mid-step then restarts it looks more natural. - /// - public bool LastStep; - - /// - /// Stores if we're currently waddling so we can start/stop as appropriate and can tell other systems our state. - /// - [AutoNetworkedField] - public bool IsCurrentlyWaddling; -} diff --git a/Content.Shared/Movement/Systems/SharedWaddleAnimationSystem.cs b/Content.Shared/Movement/Systems/SharedWaddleAnimationSystem.cs deleted file mode 100644 index cebae8093b..0000000000 --- a/Content.Shared/Movement/Systems/SharedWaddleAnimationSystem.cs +++ /dev/null @@ -1,106 +0,0 @@ -using Content.Shared.Buckle.Components; -using Content.Shared.Gravity; -using Content.Shared.Movement.Components; -using Content.Shared.Movement.Events; -using Content.Shared.Movement.Systems; -using Content.Shared.Standing; -using Content.Shared.Stunnable; -using Robust.Shared.Timing; - -namespace Content.Shared.Movement.Systems; - -public abstract class SharedWaddleAnimationSystem : EntitySystem -{ - [Dependency] private readonly IGameTiming _timing = default!; - - public override void Initialize() - { - // Startup - SubscribeLocalEvent(OnComponentStartup); - - // Start moving possibilities - SubscribeLocalEvent(OnMovementInput); - SubscribeLocalEvent(OnStood); - - // Stop moving possibilities - SubscribeLocalEvent((Entity ent, ref StunnedEvent _) => StopWaddling(ent)); - SubscribeLocalEvent((Entity ent, ref DownedEvent _) => StopWaddling(ent)); - SubscribeLocalEvent((Entity ent, ref BuckledEvent _) => StopWaddling(ent)); - SubscribeLocalEvent(OnGravityChanged); - } - - private void OnGravityChanged(Entity ent, ref GravityChangedEvent args) - { - if (!args.HasGravity && ent.Comp.IsCurrentlyWaddling) - StopWaddling(ent); - } - - private void OnComponentStartup(Entity entity, ref ComponentStartup args) - { - if (!TryComp(entity.Owner, out var moverComponent)) - return; - - // If the waddler is currently moving, make them start waddling - if ((moverComponent.HeldMoveButtons & MoveButtons.AnyDirection) == MoveButtons.AnyDirection) - { - RaiseNetworkEvent(new StartedWaddlingEvent(GetNetEntity(entity.Owner))); - } - } - - private void OnMovementInput(Entity entity, ref MoveInputEvent args) - { - // Prediction mitigation. Prediction means that MoveInputEvents are spammed repeatedly, even though you'd assume - // they're once-only for the user actually doing something. As such do nothing if we're just repeating this FoR. - if (!_timing.IsFirstTimePredicted) - { - return; - } - - if (!args.HasDirectionalMovement && entity.Comp.IsCurrentlyWaddling) - { - StopWaddling(entity); - - return; - } - - // Only start waddling if we're not currently AND we're actually moving. - if (entity.Comp.IsCurrentlyWaddling || !args.HasDirectionalMovement) - return; - - entity.Comp.IsCurrentlyWaddling = true; - - RaiseNetworkEvent(new StartedWaddlingEvent(GetNetEntity(entity.Owner))); - } - - private void OnStood(Entity entity, ref StoodEvent args) - { - // Prediction mitigation. Prediction means that MoveInputEvents are spammed repeatedly, even though you'd assume - // they're once-only for the user actually doing something. As such do nothing if we're just repeating this FoR. - if (!_timing.IsFirstTimePredicted) - { - return; - } - - if (!TryComp(entity.Owner, out var mover)) - { - return; - } - - if ((mover.HeldMoveButtons & MoveButtons.AnyDirection) == MoveButtons.None) - return; - - if (entity.Comp.IsCurrentlyWaddling) - return; - - entity.Comp.IsCurrentlyWaddling = true; - - RaiseNetworkEvent(new StartedWaddlingEvent(GetNetEntity(entity.Owner))); - } - - private void StopWaddling(Entity entity) - { - entity.Comp.IsCurrentlyWaddling = false; - - RaiseNetworkEvent(new StoppedWaddlingEvent(GetNetEntity(entity.Owner))); - } -} diff --git a/Resources/Prototypes/Entities/Clothing/Shoes/misc.yml b/Resources/Prototypes/Entities/Clothing/Shoes/misc.yml index ea4c9d9c7c..61dda89d13 100644 --- a/Resources/Prototypes/Entities/Clothing/Shoes/misc.yml +++ b/Resources/Prototypes/Entities/Clothing/Shoes/misc.yml @@ -47,8 +47,6 @@ collection: FootstepDuck params: variation: 0.07 - - type: WaddleWhenWorn - tumbleIntensity: 10 # smaller than clown shoes - type: Construction graph: ClothingShoeSlippersDuck node: shoes diff --git a/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml b/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml index bd37135e98..a4fbe012c5 100644 --- a/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml +++ b/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml @@ -15,7 +15,6 @@ parent: [ClothingShoesBaseButcherable, ClothingSlotBase] id: ClothingShoesClownBase components: - - type: WaddleWhenWorn - type: ItemSlots slots: item: From a6c468b6971c1731da5f030e98036e6d80822dd1 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 6 Oct 2024 13:34:08 +0000 Subject: [PATCH 70/94] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index cfa746141e..dd28bae785 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: BombasterDS - changes: - - message: Added new plant mutations for apple, sugarcane and galaxythistle - type: Add - id: 6991 - time: '2024-07-27T15:08:49.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/28993 - author: Spessmann changes: - message: Thief objectives for figurines and stamps now require less items @@ -3942,3 +3935,10 @@ id: 7490 time: '2024-10-06T12:48:49.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32097 +- author: Golinth + changes: + - message: Removed clown waddling until implemented properly + type: Remove + id: 7491 + time: '2024-10-06T13:33:02.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32652 From 6b10e00da495379d61b35e3b809d2564cc3228c6 Mon Sep 17 00:00:00 2001 From: Scribbles0 <91828755+Scribbles0@users.noreply.github.com> Date: Sun, 6 Oct 2024 18:24:44 -0700 Subject: [PATCH 71/94] oasis update (#32679) sec apcs and ai core wiring --- Resources/Maps/oasis.yml | 273 ++++++++++++++++++++++++++++++++++----- 1 file changed, 238 insertions(+), 35 deletions(-) diff --git a/Resources/Maps/oasis.yml b/Resources/Maps/oasis.yml index 8cde5f558c..15a719bb53 100644 --- a/Resources/Maps/oasis.yml +++ b/Resources/Maps/oasis.yml @@ -14470,7 +14470,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -75908.84 + secondsUntilStateChange: -76151.9 state: Opening - uid: 6934 components: @@ -14482,7 +14482,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -75911.48 + secondsUntilStateChange: -76154.53 state: Opening - uid: 6935 components: @@ -14494,7 +14494,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -75910.33 + secondsUntilStateChange: -76153.38 state: Opening - uid: 6936 components: @@ -14505,7 +14505,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -75909.55 + secondsUntilStateChange: -76152.6 state: Opening - proto: AirlockTheatreLocked entities: @@ -15707,12 +15707,6 @@ entities: rot: 3.141592653589793 rad pos: -20.5,-5.5 parent: 2 - - uid: 2421 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-18.5 - parent: 2 - uid: 2763 components: - type: Transform @@ -15885,6 +15879,30 @@ entities: rot: 3.141592653589793 rad pos: 25.5,35.5 parent: 2 + - uid: 29578 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-13.5 + parent: 2 + - uid: 29579 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-8.5 + parent: 2 + - uid: 29580 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-23.5 + parent: 2 + - uid: 29581 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-17.5 + parent: 2 - proto: APCElectronics entities: - uid: 5818 @@ -42197,27 +42215,27 @@ entities: - uid: 4624 components: - type: Transform - pos: 38.5,-17.5 + pos: 54.5,-17.5 parent: 2 - uid: 4625 components: - type: Transform - pos: 39.5,-17.5 + pos: 34.5,-13.5 parent: 2 - uid: 4626 components: - type: Transform - pos: 40.5,-17.5 + pos: 39.5,-11.5 parent: 2 - uid: 4627 components: - type: Transform - pos: 41.5,-17.5 + pos: 55.5,-17.5 parent: 2 - uid: 4628 components: - type: Transform - pos: 41.5,-18.5 + pos: 53.5,-14.5 parent: 2 - uid: 4629 components: @@ -42292,7 +42310,7 @@ entities: - uid: 4643 components: - type: Transform - pos: 38.5,-16.5 + pos: 47.5,-14.5 parent: 2 - uid: 4644 components: @@ -42404,11 +42422,6 @@ entities: - type: Transform pos: 31.5,-15.5 parent: 2 - - uid: 4666 - components: - - type: Transform - pos: 41.5,-17.5 - parent: 2 - uid: 4667 components: - type: Transform @@ -42652,12 +42665,7 @@ entities: - uid: 4823 components: - type: Transform - pos: 50.5,-16.5 - parent: 2 - - uid: 4824 - components: - - type: Transform - pos: 50.5,-15.5 + pos: 60.5,18.5 parent: 2 - uid: 4825 components: @@ -43042,7 +43050,7 @@ entities: - uid: 5414 components: - type: Transform - pos: 39.5,-18.5 + pos: 46.5,-8.5 parent: 2 - uid: 5463 components: @@ -50027,7 +50035,7 @@ entities: - uid: 13051 components: - type: Transform - pos: 56.5,16.5 + pos: 45.5,-8.5 parent: 2 - uid: 13052 components: @@ -56209,6 +56217,46 @@ entities: - type: Transform pos: -59.5,-8.5 parent: 2 + - uid: 29575 + components: + - type: Transform + pos: 60.5,19.5 + parent: 2 + - uid: 29576 + components: + - type: Transform + pos: 60.5,20.5 + parent: 2 + - uid: 29577 + components: + - type: Transform + pos: 60.5,21.5 + parent: 2 + - uid: 29582 + components: + - type: Transform + pos: 33.5,-23.5 + parent: 2 + - uid: 29583 + components: + - type: Transform + pos: 32.5,-23.5 + parent: 2 + - uid: 29584 + components: + - type: Transform + pos: 31.5,-23.5 + parent: 2 + - uid: 29585 + components: + - type: Transform + pos: 37.5,-20.5 + parent: 2 + - uid: 29586 + components: + - type: Transform + pos: 37.5,-19.5 + parent: 2 - proto: CableApcStack1 entities: - uid: 23589 @@ -63885,7 +63933,7 @@ entities: - uid: 418 components: - type: Transform - pos: 39.5,-18.5 + pos: 46.5,-8.5 parent: 2 - uid: 867 components: @@ -63927,6 +63975,11 @@ entities: - type: Transform pos: -25.5,0.5 parent: 2 + - uid: 2421 + components: + - type: Transform + pos: 53.5,-17.5 + parent: 2 - uid: 3299 components: - type: Transform @@ -64200,12 +64253,17 @@ entities: - uid: 4564 components: - type: Transform - pos: 40.5,-17.5 + pos: 54.5,-17.5 parent: 2 - uid: 4565 components: - type: Transform - pos: 39.5,-17.5 + pos: 55.5,-17.5 + parent: 2 + - uid: 4666 + components: + - type: Transform + pos: 47.5,-8.5 parent: 2 - uid: 4686 components: @@ -64657,6 +64715,11 @@ entities: - type: Transform pos: 43.5,-37.5 parent: 2 + - uid: 4824 + components: + - type: Transform + pos: 48.5,-8.5 + parent: 2 - uid: 4855 components: - type: Transform @@ -69467,6 +69530,146 @@ entities: - type: Transform pos: 25.5,35.5 parent: 2 + - uid: 29587 + components: + - type: Transform + pos: 45.5,-8.5 + parent: 2 + - uid: 29588 + components: + - type: Transform + pos: 40.5,-21.5 + parent: 2 + - uid: 29589 + components: + - type: Transform + pos: 39.5,-21.5 + parent: 2 + - uid: 29590 + components: + - type: Transform + pos: 38.5,-21.5 + parent: 2 + - uid: 29591 + components: + - type: Transform + pos: 36.5,-21.5 + parent: 2 + - uid: 29592 + components: + - type: Transform + pos: 35.5,-21.5 + parent: 2 + - uid: 29593 + components: + - type: Transform + pos: 34.5,-21.5 + parent: 2 + - uid: 29594 + components: + - type: Transform + pos: 37.5,-21.5 + parent: 2 + - uid: 29595 + components: + - type: Transform + pos: 34.5,-22.5 + parent: 2 + - uid: 29596 + components: + - type: Transform + pos: 34.5,-23.5 + parent: 2 + - uid: 29597 + components: + - type: Transform + pos: 33.5,-23.5 + parent: 2 + - uid: 29598 + components: + - type: Transform + pos: 32.5,-23.5 + parent: 2 + - uid: 29599 + components: + - type: Transform + pos: 31.5,-23.5 + parent: 2 + - uid: 29600 + components: + - type: Transform + pos: 40.5,-17.5 + parent: 2 + - uid: 29601 + components: + - type: Transform + pos: 39.5,-17.5 + parent: 2 + - uid: 29602 + components: + - type: Transform + pos: 38.5,-17.5 + parent: 2 + - uid: 29603 + components: + - type: Transform + pos: 38.5,-16.5 + parent: 2 + - uid: 29604 + components: + - type: Transform + pos: 38.5,-14.5 + parent: 2 + - uid: 29605 + components: + - type: Transform + pos: 38.5,-15.5 + parent: 2 + - uid: 29606 + components: + - type: Transform + pos: 38.5,-13.5 + parent: 2 + - uid: 29607 + components: + - type: Transform + pos: 38.5,-12.5 + parent: 2 + - uid: 29608 + components: + - type: Transform + pos: 38.5,-11.5 + parent: 2 + - uid: 29609 + components: + - type: Transform + pos: 37.5,-11.5 + parent: 2 + - uid: 29610 + components: + - type: Transform + pos: 36.5,-11.5 + parent: 2 + - uid: 29611 + components: + - type: Transform + pos: 35.5,-11.5 + parent: 2 + - uid: 29612 + components: + - type: Transform + pos: 34.5,-11.5 + parent: 2 + - uid: 29613 + components: + - type: Transform + pos: 34.5,-12.5 + parent: 2 + - uid: 29614 + components: + - type: Transform + pos: 34.5,-13.5 + parent: 2 - proto: CableTerminal entities: - uid: 6405 @@ -94055,7 +94258,7 @@ entities: pos: -13.5,-1.5 parent: 2 - type: Door - secondsUntilStateChange: -67232.83 + secondsUntilStateChange: -67475.88 - type: DeviceNetwork deviceLists: - 18275 @@ -138604,7 +138807,7 @@ entities: pos: 36.5,-35.5 parent: 2 - type: Door - secondsUntilStateChange: -104064.67 + secondsUntilStateChange: -104307.73 state: Opening - uid: 5211 components: @@ -189959,7 +190162,7 @@ entities: pos: 24.5,2.5 parent: 21002 - type: Door - secondsUntilStateChange: -449269.3 + secondsUntilStateChange: -449512.38 state: Opening - uid: 28863 components: From eecbfb63a0dedc20abb7e195a71427081bc8b6dd Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Mon, 7 Oct 2024 19:19:42 +0200 Subject: [PATCH 72/94] Move client dumpentities command to "DEBUG" (#32687) --- Resources/clientCommandPerms.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/clientCommandPerms.yml b/Resources/clientCommandPerms.yml index 11418621fc..2e613a0fce 100644 --- a/Resources/clientCommandPerms.yml +++ b/Resources/clientCommandPerms.yml @@ -20,7 +20,6 @@ - net_watchent - devwindow - fill - - dumpentities - ">" - gcf - gc @@ -73,6 +72,7 @@ - detachent - localdelete - fullstatereset + - dumpentities - Flags: MAPPING Commands: From f22f9e39c5e9af1a8f622e12eb2f916b69c6be22 Mon Sep 17 00:00:00 2001 From: Saphire Lattice Date: Tue, 8 Oct 2024 04:42:42 +0600 Subject: [PATCH 73/94] Change minibomb to be explosion resistant and start timer on damage (#32429) * Make minibomb explosion resistant and trigger timer on damage * Tune damage behaviour and threshold for minibomb --- .../Thresholds/Behaviors/TimerStartBehavior.cs | 10 ++++++++++ .../Objects/Weapons/Throwable/grenades.yml | 16 ++++++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 Content.Server/Destructible/Thresholds/Behaviors/TimerStartBehavior.cs diff --git a/Content.Server/Destructible/Thresholds/Behaviors/TimerStartBehavior.cs b/Content.Server/Destructible/Thresholds/Behaviors/TimerStartBehavior.cs new file mode 100644 index 0000000000..97a5f8b7ef --- /dev/null +++ b/Content.Server/Destructible/Thresholds/Behaviors/TimerStartBehavior.cs @@ -0,0 +1,10 @@ +namespace Content.Server.Destructible.Thresholds.Behaviors; + +[DataDefinition] +public sealed partial class TimerStartBehavior : IThresholdBehavior +{ + public void Execute(EntityUid owner, DestructibleSystem system, EntityUid? cause = null) + { + system.TriggerSystem.StartTimer(owner, cause); + } +} diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/grenades.yml b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/grenades.yml index a279c56378..8f253097ab 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/grenades.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/grenades.yml @@ -106,6 +106,22 @@ components: - type: Sprite sprite: Objects/Weapons/Grenades/syndgrenade.rsi + - type: ExplosionResistance + damageCoefficient: 0.1 + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 10 + behaviors: + - !type:TimerStartBehavior + - trigger: + !type:DamageTrigger + damage: 45 + behaviors: + - !type:TriggerBehavior + - !type:DoActsBehavior + acts: ["Destruction"] - type: OnUseTimerTrigger delay: 5 - type: ExplodeOnTrigger From 34df781668bc1b2fec4c84111b4ee040d80de4ee Mon Sep 17 00:00:00 2001 From: PJBot Date: Mon, 7 Oct 2024 22:43:51 +0000 Subject: [PATCH 74/94] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index dd28bae785..62ef075a6c 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Spessmann - changes: - - message: Thief objectives for figurines and stamps now require less items - type: Tweak - id: 6992 - time: '2024-07-27T23:11:27.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30390 - author: metalgearsloth changes: - message: Moved VGRoid from 1,000m away to ~500m. @@ -3942,3 +3935,11 @@ id: 7491 time: '2024-10-06T13:33:02.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32652 +- author: SaphireLattice + changes: + - message: Minibomb is now explosion resistant and will start counting down if damaged + by a C4 + type: Tweak + id: 7492 + time: '2024-10-07T22:42:43.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32429 From 38fd54a1bf06d3f9e9d5a9e04388d872501391a0 Mon Sep 17 00:00:00 2001 From: Ubaser <134914314+UbaserB@users.noreply.github.com> Date: Tue, 8 Oct 2024 12:59:06 +1100 Subject: [PATCH 75/94] Update Core (#32665) * add * remove invalids * fix * yes --- Resources/Maps/core.yml | 37786 +++++++++++++++++--------------------- 1 file changed, 16354 insertions(+), 21432 deletions(-) diff --git a/Resources/Maps/core.yml b/Resources/Maps/core.yml index 6968f69c4d..1c5b67b500 100644 --- a/Resources/Maps/core.yml +++ b/Resources/Maps/core.yml @@ -899,6 +899,8 @@ entities: 7347: 63,-36 7354: 62,-37 7410: 23,-53 + 7417: -55,-46 + 7418: -41,-46 - node: cleanable: True color: '#FFFFFFFF' @@ -1503,6 +1505,8 @@ entities: 6990: -33,-5 6991: -31,-5 7406: 8,-49 + 7419: -4,-12 + 7420: -5,-12 - node: cleanable: True color: '#FFFFFFFF' @@ -10325,7 +10329,8 @@ entities: 1,5: 1: 47359 1,6: - 1: 15291 + 1: 15289 + 7: 2 1,7: 1: 65307 1,8: @@ -10359,7 +10364,8 @@ entities: -3,7: 1: 55807 -3,8: - 1: 3549 + 1: 3533 + 8: 16 -2,5: 1: 30719 -2,6: @@ -11612,6 +11618,36 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.6852 + - 81.57766 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.824873 + - 82.1031 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance @@ -11890,6 +11926,22 @@ entities: - 493 - 492 - 491 + - uid: 1973 + components: + - type: Transform + pos: 0.5,49.5 + parent: 2 + - type: DeviceList + devices: + - 8585 + - 8586 + - 8581 + - 8582 + - 8583 + - 8584 + - 18743 + - 18741 + - 18742 - uid: 2086 components: - type: Transform @@ -13265,22 +13317,6 @@ entities: - 18684 - 18683 - 18682 - - uid: 8462 - components: - - type: Transform - pos: 1.5,49.5 - parent: 2 - - type: DeviceList - devices: - - 8585 - - 8586 - - 8581 - - 8582 - - 8583 - - 8584 - - 18743 - - 18741 - - 18742 - uid: 8463 components: - type: Transform @@ -15227,21 +15263,21 @@ entities: rot: 1.5707963267948966 rad pos: 73.5,-2.5 parent: 2 - - uid: 15229 + - uid: 15230 components: - type: MetaData name: Evacuation pod docking airlock - type: Transform rot: 1.5707963267948966 rad - pos: 73.5,1.5 + pos: 73.5,5.5 parent: 2 - - uid: 15230 + - uid: 17539 components: - type: MetaData name: Evacuation pod docking airlock - type: Transform rot: 1.5707963267948966 rad - pos: 73.5,5.5 + pos: 73.5,1.5 parent: 2 - uid: 21378 components: @@ -17040,16 +17076,22 @@ entities: parent: 2 - proto: AirlockSalvageGlassLocked entities: - - uid: 5544 + - uid: 8230 components: - type: MetaData name: Salvage airlock - type: Transform - rot: -1.5707963267948966 rad pos: 32.5,18.5 parent: 2 - proto: AirlockScienceGlassLocked entities: + - uid: 1988 + components: + - type: MetaData + name: Artifact chamber airlock + - type: Transform + pos: 78.5,-13.5 + parent: 2 - uid: 7106 components: - type: MetaData @@ -17078,13 +17120,10 @@ entities: - type: Transform pos: 65.5,-21.5 parent: 2 - - uid: 7353 - components: - - type: Transform - pos: 78.5,-13.5 - parent: 2 - uid: 7354 components: + - type: MetaData + name: Artifact chamber airlock - type: Transform pos: 78.5,-17.5 parent: 2 @@ -17593,6 +17632,9 @@ entities: - type: Transform pos: -1.5,45.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 1973 - uid: 18756 components: - type: Transform @@ -18318,12 +18360,12 @@ entities: - type: Transform pos: 16.69675,-24.555443 parent: 2 -- proto: AnomalyLocatorUnpowered +- proto: AnomalyLocatorEmpty entities: - - uid: 7240 + - uid: 6028 components: - type: Transform - pos: 67.51584,-14.324951 + pos: 67.48892,-14.349368 parent: 2 - proto: AnomalyScanner entities: @@ -20404,16 +20446,6 @@ entities: - type: Transform pos: -32.5,-2.5 parent: 2 - - uid: 22465 - components: - - type: Transform - pos: -33.5,-2.5 - parent: 2 - - uid: 22466 - components: - - type: Transform - pos: -33.5,-1.5 - parent: 2 - proto: Autolathe entities: - uid: 127 @@ -21209,13 +21241,6 @@ entities: - type: Transform pos: -50.5,-20.5 parent: 2 -- proto: Bible - entities: - - uid: 6028 - components: - - type: Transform - pos: -30.352081,-37.38564 - parent: 2 - proto: BikeHorn entities: - uid: 1228 @@ -21230,6 +21255,18 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: Biogenerator + entities: + - uid: 2019 + components: + - type: Transform + pos: 3.5,50.5 + parent: 2 + - uid: 2020 + components: + - type: Transform + pos: -30.5,14.5 + parent: 2 - proto: BlastDoor entities: - uid: 157 @@ -21329,10 +21366,8 @@ entities: - type: Transform pos: 82.5,-18.5 parent: 2 - - uid: 7934 + - uid: 16684 components: - - type: MetaData - name: Disposals blast door - type: Transform pos: -9.5,-41.5 parent: 2 @@ -21952,10 +21987,10 @@ entities: - type: Transform pos: -4.63874,48.68385 parent: 2 - - uid: 14241 + - uid: 8009 components: - type: Transform - pos: -30.688831,14.685245 + pos: -31.929813,14.762749 parent: 2 - uid: 16333 components: @@ -63891,15 +63926,15 @@ entities: parent: 2 - proto: DiseaseSwab entities: - - uid: 5270 + - uid: 1972 components: - type: Transform - pos: 3.6125865,51.851067 + pos: 3.3475041,52.103363 parent: 2 - - uid: 21883 + - uid: 2013 components: - type: Transform - pos: 3.422883,51.88294 + pos: 3.2537541,52.134613 parent: 2 - proto: DisposalBend entities: @@ -69810,6 +69845,18 @@ entities: - type: Transform pos: 51.5,-38.5 parent: 2 + - uid: 1955 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,45.5 + parent: 2 + - uid: 2010 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,50.5 + parent: 2 - uid: 2295 components: - type: Transform @@ -69846,6 +69893,12 @@ entities: rot: -1.5707963267948966 rad pos: 61.5,-6.5 parent: 2 + - uid: 5469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,51.5 + parent: 2 - uid: 5991 components: - type: Transform @@ -70351,12 +70404,6 @@ entities: - type: Transform pos: -8.5,29.5 parent: 2 - - uid: 17450 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,51.5 - parent: 2 - uid: 17451 components: - type: Transform @@ -70504,12 +70551,6 @@ entities: rot: 3.141592653589793 rad pos: -16.5,-4.5 parent: 2 - - uid: 21911 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,45.5 - parent: 2 - uid: 22321 components: - type: Transform @@ -72957,12 +72998,18 @@ entities: rot: 3.141592653589793 rad pos: -2.5,44.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 1973 - uid: 8582 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,44.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 1973 - uid: 8593 components: - type: Transform @@ -73872,11 +73919,17 @@ entities: - type: Transform pos: -5.5,45.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 1973 - uid: 8584 components: - type: Transform pos: 2.5,45.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 1973 - uid: 8620 components: - type: Transform @@ -74944,11 +74997,17 @@ entities: - type: Transform pos: -2.5,49.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 1973 - uid: 8586 components: - type: Transform pos: -1.5,49.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 1973 - uid: 8595 components: - type: Transform @@ -94809,6 +94868,9 @@ entities: - type: Transform pos: -2.5,45.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 1973 - type: AtmosPipeColor color: '#0335FCFF' - uid: 18744 @@ -96024,6 +96086,9 @@ entities: - type: Transform pos: -0.5,45.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 1973 - type: AtmosPipeColor color: '#FF1212FF' - uid: 18755 @@ -99920,6 +99985,11 @@ entities: - type: Transform pos: 62.5,28.5 parent: 2 + - uid: 16176 + components: + - type: Transform + pos: 25.5,-63.5 + parent: 2 - uid: 16294 components: - type: Transform @@ -101582,11 +101652,6 @@ entities: - type: Transform pos: 19.5,-71.5 parent: 2 - - uid: 22046 - components: - - type: Transform - pos: 25.5,-63.5 - parent: 2 - uid: 22047 components: - type: Transform @@ -101908,6 +101973,11 @@ entities: - type: Transform pos: 23.5,26.5 parent: 2 + - uid: 5550 + components: + - type: Transform + pos: 31.5,26.5 + parent: 2 - uid: 7876 components: - type: Transform @@ -101973,11 +102043,6 @@ entities: - type: Transform pos: 3.5,-42.5 parent: 2 - - uid: 15608 - components: - - type: Transform - pos: 31.5,26.5 - parent: 2 - uid: 15609 components: - type: Transform @@ -102567,6 +102632,13 @@ entities: - type: Transform pos: -31.5,34.5 parent: 2 +- proto: Handcuffs + entities: + - uid: 7240 + components: + - type: Transform + pos: 48.17024,-38.59788 + parent: 2 - proto: HandheldGPSBasic entities: - uid: 14948 @@ -102814,10 +102886,10 @@ entities: parent: 2 - proto: HydroponicsToolClippers entities: - - uid: 5267 + - uid: 1965 components: - type: Transform - pos: 3.4828591,51.077652 + pos: 3.5818791,51.900238 parent: 2 - uid: 21332 components: @@ -102826,10 +102898,10 @@ entities: parent: 2 - proto: HydroponicsToolMiniHoe entities: - - uid: 5266 + - uid: 1975 components: - type: Transform - pos: 3.4094758,50.54562 + pos: 3.5662541,51.509613 parent: 2 - uid: 16334 components: @@ -102838,10 +102910,10 @@ entities: parent: 2 - proto: HydroponicsToolSpade entities: - - uid: 5269 + - uid: 1976 components: - type: Transform - pos: 3.5378966,50.582314 + pos: 3.6443791,51.618988 parent: 2 - uid: 16335 components: @@ -103009,6 +103081,11 @@ entities: parent: 2 - proto: InflatableWall entities: + - uid: 1991 + components: + - type: Transform + pos: -33.5,9.5 + parent: 2 - uid: 9229 components: - type: Transform @@ -103553,12 +103630,6 @@ entities: - type: Transform pos: 35.535755,-32.141846 parent: 2 - - uid: 5946 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.28428,-38.068363 - parent: 2 - uid: 5947 components: - type: Transform @@ -103575,6 +103646,12 @@ entities: - type: Transform pos: 54.507133,11.775886 parent: 2 + - uid: 8836 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.404613,-37.97288 + parent: 2 - uid: 9178 components: - type: Transform @@ -104067,8 +104144,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 1.8978093 - - 7.139378 + - 1.8978151 + - 7.1394 - 0 - 0 - 0 @@ -104601,8 +104678,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -104619,9 +104696,9 @@ entities: showEnts: False occludes: True ents: - - 5718 - - 20230 - 20229 + - 20230 + - 5718 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -105260,10 +105337,15 @@ entities: parent: 2 - proto: MicrowaveMachineCircuitboard entities: - - uid: 17481 + - uid: 1977 + components: + - type: Transform + pos: -31.664188,14.512749 + parent: 2 + - uid: 3582 components: - type: Transform - pos: -31.524014,14.605584 + pos: -31.195438,15.497125 parent: 2 - proto: MiniGravityGeneratorCircuitboard entities: @@ -106385,13 +106467,6 @@ entities: - type: Transform pos: 21.69673,-35.586906 parent: 2 - - uid: 21452 - components: - - type: Transform - pos: -1.3248596,-17.594215 - parent: 2 - - type: Stack - count: 15 - proto: Pen entities: - uid: 1543 @@ -106566,204 +106641,6 @@ entities: parent: 2 - proto: PlasmaReinforcedWindowDirectional entities: - - uid: 1972 - components: - - type: Transform - pos: 13.5,-30.5 - parent: 2 - - uid: 1973 - components: - - type: Transform - pos: 15.5,-30.5 - parent: 2 - - uid: 1974 - components: - - type: Transform - pos: 16.5,-30.5 - parent: 2 - - uid: 1975 - components: - - type: Transform - pos: 12.5,-30.5 - parent: 2 - - uid: 1976 - components: - - type: Transform - pos: 14.5,-30.5 - parent: 2 - - uid: 1977 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,2.5 - parent: 2 - - uid: 1978 - components: - - type: Transform - pos: -12.5,0.5 - parent: 2 - - uid: 1979 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,1.5 - parent: 2 - - uid: 1980 - components: - - type: Transform - pos: -10.5,0.5 - parent: 2 - - uid: 1981 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,2.5 - parent: 2 - - uid: 1982 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,2.5 - parent: 2 - - uid: 1983 - components: - - type: Transform - pos: 32.5,-13.5 - parent: 2 - - uid: 1984 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-5.5 - parent: 2 - - uid: 1985 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-5.5 - parent: 2 - - uid: 1986 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-5.5 - parent: 2 - - uid: 1987 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-5.5 - parent: 2 - - uid: 1988 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-5.5 - parent: 2 - - uid: 1989 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-5.5 - parent: 2 - - uid: 1990 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-11.5 - parent: 2 - - uid: 1991 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-13.5 - parent: 2 - - uid: 1992 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-12.5 - parent: 2 - - uid: 1993 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,-16.5 - parent: 2 - - uid: 1994 - components: - - type: Transform - pos: 78.5,-18.5 - parent: 2 - - uid: 1995 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,-16.5 - parent: 2 - - uid: 1996 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,-18.5 - parent: 2 - - uid: 1997 - components: - - type: Transform - pos: 78.5,-12.5 - parent: 2 - - uid: 1998 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,-12.5 - parent: 2 - - uid: 1999 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,-12.5 - parent: 2 - - uid: 2000 - components: - - type: Transform - pos: 78.5,-16.5 - parent: 2 - - uid: 2001 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,-16.5 - parent: 2 - - uid: 2003 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,-12.5 - parent: 2 - - uid: 2004 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,21.5 - parent: 2 - - uid: 2005 - components: - - type: Transform - pos: -43.5,21.5 - parent: 2 - - uid: 2006 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,21.5 - parent: 2 - - uid: 2007 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,21.5 - parent: 2 - uid: 5901 components: - type: Transform @@ -106817,444 +106694,6 @@ entities: - type: Transform pos: -43.5,22.5 parent: 2 - - uid: 22904 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-10.5 - parent: 2 - - uid: 22905 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-10.5 - parent: 2 - - uid: 22906 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-10.5 - parent: 2 - - uid: 22907 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-11.5 - parent: 2 - - uid: 22908 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-12.5 - parent: 2 - - uid: 22909 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-13.5 - parent: 2 - - uid: 22931 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,-18.5 - parent: 2 - - uid: 22932 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,-18.5 - parent: 2 - - uid: 22933 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-16.5 - parent: 2 - - uid: 22934 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-17.5 - parent: 2 - - uid: 22935 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-18.5 - parent: 2 - - uid: 22936 - components: - - type: Transform - pos: 84.5,-18.5 - parent: 2 - - uid: 22937 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,-18.5 - parent: 2 - - uid: 22938 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,-17.5 - parent: 2 - - uid: 22939 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,-16.5 - parent: 2 - - uid: 22940 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 84.5,-16.5 - parent: 2 - - uid: 22941 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 84.5,-12.5 - parent: 2 - - uid: 22942 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-12.5 - parent: 2 - - uid: 22943 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-13.5 - parent: 2 - - uid: 22944 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-14.5 - parent: 2 - - uid: 22945 - components: - - type: Transform - pos: 84.5,-14.5 - parent: 2 - - uid: 22946 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,-14.5 - parent: 2 - - uid: 22947 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,-13.5 - parent: 2 - - uid: 22948 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,-12.5 - parent: 2 - - uid: 23034 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-5.5 - parent: 2 - - uid: 23035 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-5.5 - parent: 2 - - uid: 23036 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-5.5 - parent: 2 - - uid: 23037 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-5.5 - parent: 2 - - uid: 23038 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-5.5 - parent: 2 - - uid: 23039 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-5.5 - parent: 2 - - uid: 23040 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-5.5 - parent: 2 - - uid: 23041 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-5.5 - parent: 2 - - uid: 23042 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-5.5 - parent: 2 - - uid: 23043 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-5.5 - parent: 2 - - uid: 23044 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-5.5 - parent: 2 - - uid: 23045 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-5.5 - parent: 2 - - uid: 23046 - components: - - type: Transform - pos: 26.5,-5.5 - parent: 2 - - uid: 23047 - components: - - type: Transform - pos: 24.5,-5.5 - parent: 2 - - uid: 23048 - components: - - type: Transform - pos: 22.5,-5.5 - parent: 2 - - uid: 23049 - components: - - type: Transform - pos: 20.5,-5.5 - parent: 2 - - uid: 23050 - components: - - type: Transform - pos: 18.5,-5.5 - parent: 2 - - uid: 23051 - components: - - type: Transform - pos: 16.5,-5.5 - parent: 2 - - uid: 23084 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-30.5 - parent: 2 - - uid: 23085 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-30.5 - parent: 2 - - uid: 23086 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-30.5 - parent: 2 - - uid: 23087 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-30.5 - parent: 2 - - uid: 23088 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-30.5 - parent: 2 - - uid: 23089 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-30.5 - parent: 2 - - uid: 23090 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-30.5 - parent: 2 - - uid: 23216 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,23.5 - parent: 2 - - uid: 23217 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,23.5 - parent: 2 - - uid: 23218 - components: - - type: Transform - pos: -41.5,23.5 - parent: 2 - - uid: 23219 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,23.5 - parent: 2 - - uid: 23220 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,25.5 - parent: 2 - - uid: 23221 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,25.5 - parent: 2 - - uid: 23222 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,25.5 - parent: 2 - - uid: 23223 - components: - - type: Transform - pos: -43.5,25.5 - parent: 2 - - uid: 23224 - components: - - type: Transform - pos: -45.5,23.5 - parent: 2 - - uid: 23225 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,23.5 - parent: 2 - - uid: 23226 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,23.5 - parent: 2 - - uid: 23227 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,23.5 - parent: 2 - - uid: 23228 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,0.5 - parent: 2 - - uid: 23229 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,2.5 - parent: 2 - - uid: 23230 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,1.5 - parent: 2 - - uid: 23231 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,0.5 - parent: 2 - - uid: 23232 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,0.5 - parent: 2 - - uid: 23233 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,1.5 - parent: 2 - - uid: 23234 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,2.5 - parent: 2 - - uid: 23235 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,2.5 - parent: 2 - - uid: 23236 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,1.5 - parent: 2 - - uid: 23237 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,0.5 - parent: 2 - - uid: 23291 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,-14.5 - parent: 2 - - uid: 23292 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,-14.5 - parent: 2 - - uid: 23293 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,-14.5 - parent: 2 - - uid: 23294 - components: - - type: Transform - pos: 78.5,-14.5 - parent: 2 - proto: PlasmaWindoorSecureArmoryLocked entities: - uid: 21596 @@ -108523,15 +107962,6 @@ entities: enabled: False - type: ApcPowerReceiver powerLoad: 0 - - uid: 1634 - components: - - type: Transform - pos: -32.5,17.5 - parent: 2 - - type: PointLight - enabled: False - - type: ApcPowerReceiver - powerLoad: 0 - uid: 1635 components: - type: Transform @@ -108861,13 +108291,9 @@ entities: - uid: 1678 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,11.5 + rot: -1.5707963267948966 rad + pos: -28.5,15.5 parent: 2 - - type: PointLight - enabled: False - - type: ApcPowerReceiver - powerLoad: 0 - uid: 1679 components: - type: Transform @@ -109112,6 +108538,17 @@ entities: - type: Transform pos: -29.5,7.5 parent: 2 + - uid: 1974 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,50.5 + parent: 2 + - uid: 2027 + components: + - type: Transform + pos: 1.5,48.5 + parent: 2 - uid: 2683 components: - type: Transform @@ -109838,25 +109275,6 @@ entities: enabled: False - type: ApcPowerReceiver powerLoad: 0 - - uid: 6040 - components: - - type: Transform - pos: 1.5,48.5 - parent: 2 - - type: PointLight - enabled: False - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6042 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,50.5 - parent: 2 - - type: PointLight - enabled: False - - type: ApcPowerReceiver - powerLoad: 0 - uid: 6045 components: - type: Transform @@ -110230,6 +109648,12 @@ entities: enabled: False - type: ApcPowerReceiver powerLoad: 0 + - uid: 7839 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,15.5 + parent: 2 - uid: 7988 components: - type: Transform @@ -113730,6 +113154,11 @@ entities: rot: 3.141592653589793 rad pos: 40.5,-26.5 parent: 2 + - uid: 5946 + components: + - type: Transform + pos: 1.5,49.5 + parent: 2 - uid: 7040 components: - type: Transform @@ -113963,12 +113392,6 @@ entities: rot: 3.141592653589793 rad pos: -16.5,26.5 parent: 2 - - uid: 8836 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,49.5 - parent: 2 - uid: 8837 components: - type: Transform @@ -115043,38254 +114466,33753 @@ entities: rot: 3.141592653589793 rad pos: 9.5,-0.5 parent: 21128 -- proto: ReinforcedWindow +- proto: ReinforcedPlasmaWindow entities: - - uid: 5115 + - uid: 1978 components: - type: Transform - pos: -39.5,18.5 + pos: 13.5,-30.5 parent: 2 - - uid: 6870 + - uid: 1979 components: - type: Transform - pos: 60.5,20.5 + pos: 15.5,-30.5 parent: 2 - - uid: 6892 + - uid: 1980 components: - type: Transform - pos: 59.5,20.5 + pos: 16.5,-30.5 parent: 2 - - uid: 6896 + - uid: 1981 components: - type: Transform - pos: 58.5,20.5 + pos: 12.5,-30.5 parent: 2 - - uid: 6929 + - uid: 1982 components: - type: Transform - pos: 60.5,22.5 + pos: 14.5,-30.5 parent: 2 - - uid: 6930 + - uid: 1983 components: - type: Transform - pos: 59.5,22.5 + pos: -10.5,1.5 parent: 2 - - uid: 6931 + - uid: 1984 components: - type: Transform - pos: 58.5,22.5 + pos: -12.5,2.5 parent: 2 - - uid: 15873 + - uid: 1986 components: - type: Transform - pos: -40.5,18.5 + pos: -10.5,0.5 parent: 2 - - uid: 17254 + - uid: 1987 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,-52.5 + pos: 78.5,-16.5 parent: 2 -- proto: RemoteSignaller - entities: - - uid: 3270 + - uid: 1989 components: - - type: MetaData - desc: Bolts all doors and windoors in the HoP's room. - name: Lockdown remote - type: Transform - pos: 40.97135,-23.35855 + pos: 78.5,-12.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 3516: - - Pressed: DoorBolt - - Pressed: Close - - Pressed: AutoClose - 49: - - Pressed: DoorBolt - - Pressed: AutoClose - - Pressed: Close - 3489: - - Pressed: Close - - Pressed: AutoClose - - Pressed: DoorBolt - - uid: 20229 - components: - - type: MetaData - desc: Just incase you need a double layer of security to the armory! - name: perma blast door remote - - type: Transform - parent: 4586 - - type: DeviceLinkSource - linkedPorts: - 20613: - - Pressed: Toggle - 20612: - - Pressed: Toggle - 20611: - - Pressed: Toggle - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 20230 + - uid: 1990 components: - - type: MetaData - desc: Helpful for troublesome prisoners trying to break out in perma! - name: armory blast door remote - type: Transform - parent: 4586 - - type: DeviceLinkSource - linkedPorts: - 4719: - - Pressed: Toggle - 4895: - - Pressed: Toggle - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ResearchAndDevelopmentServer - entities: - - uid: 7429 + pos: 78.5,-14.5 + parent: 2 + - uid: 1992 components: - type: Transform - pos: 71.5,-29.5 + pos: 84.5,-16.5 parent: 2 -- proto: RevolverCapGun - entities: - - uid: 16113 + - uid: 1993 components: - type: Transform - pos: 58.457176,26.640175 + pos: 84.5,-17.5 parent: 2 -- proto: RobustHarvestChemistryBottle - entities: - - uid: 16065 + - uid: 1994 components: - type: Transform - pos: -30.329456,14.528995 + pos: 84.5,-18.5 parent: 2 -- proto: RubberStampApproved - entities: - - uid: 16307 + - uid: 1995 components: - type: Transform - pos: 28.655685,10.5061245 + pos: 84.5,-12.5 parent: 2 - - uid: 16905 + - uid: 1996 components: - type: Transform - pos: 44.978428,-23.253704 + pos: 84.5,-13.5 parent: 2 -- proto: RubberStampDenied - entities: - - uid: 16306 + - uid: 1997 components: - type: Transform - pos: 28.325459,10.518355 + pos: 84.5,-14.5 parent: 2 - - uid: 16917 + - uid: 1998 components: - type: Transform - pos: 44.978428,-23.482008 + pos: -43.5,25.5 parent: 2 -- proto: SalvageMagnet - entities: - - uid: 6058 + - uid: 1999 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,21.5 + pos: -43.5,21.5 parent: 2 -- proto: Screen - entities: - - uid: 3271 + - uid: 2000 components: - type: Transform - pos: 15.5,38.5 + pos: -41.5,23.5 parent: 2 - - uid: 7573 + - uid: 2001 components: - type: Transform - pos: -2.5,18.5 + pos: -45.5,23.5 parent: 2 - - uid: 10319 + - uid: 2006 components: - type: Transform - pos: 18.5,10.5 + pos: -10.5,2.5 parent: 2 - - uid: 10320 + - uid: 2007 components: - type: Transform - pos: 40.5,6.5 + pos: -12.5,0.5 parent: 2 - - uid: 12087 + - uid: 2008 components: - type: Transform - pos: 71.5,-19.5 + pos: -12.5,1.5 parent: 2 - - uid: 14883 + - uid: 2009 components: - type: Transform - pos: -45.5,-5.5 + pos: 78.5,-18.5 parent: 2 - - uid: 16012 + - uid: 2039 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-34.5 + pos: 22.5,-5.5 parent: 2 - - uid: 16057 + - uid: 2040 components: - type: Transform - pos: 55.5,-22.5 + pos: 24.5,-5.5 parent: 2 - - uid: 16166 + - uid: 2042 components: - type: Transform - pos: 65.5,-27.5 + pos: 20.5,-5.5 parent: 2 - - uid: 16445 + - uid: 2045 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-34.5 + pos: 26.5,-5.5 parent: 2 - - uid: 16617 + - uid: 15235 components: - type: Transform - pos: 11.5,-34.5 + pos: 32.5,-13.5 parent: 2 - - uid: 16618 + - uid: 16089 components: - type: Transform - pos: 6.5,-25.5 + pos: 18.5,-5.5 parent: 2 - - uid: 16804 + - uid: 16119 components: - type: Transform - pos: -57.5,-26.5 + pos: 16.5,-5.5 parent: 2 - - uid: 16940 + - uid: 16125 components: - type: Transform - pos: 40.5,-31.5 + pos: 32.5,-10.5 parent: 2 - - uid: 17205 + - uid: 16126 components: - type: Transform - pos: 25.5,-34.5 + pos: 32.5,-11.5 parent: 2 - - uid: 17223 + - uid: 16155 components: - type: Transform - rot: 4.71238898038469 rad - pos: 30.5,-24.5 + pos: 32.5,-12.5 parent: 2 - - uid: 20293 +- proto: ReinforcedWindow + entities: + - uid: 1634 components: - type: Transform - pos: -31.5,-5.5 + pos: 19.5,22.5 parent: 2 - - uid: 20311 + - uid: 1944 components: - type: Transform - pos: -6.5,-32.5 + pos: -34.5,-3.5 parent: 2 - - uid: 20312 + - uid: 1952 components: - type: Transform - pos: -22.5,-20.5 + pos: -34.5,-2.5 parent: 2 - - uid: 20313 + - uid: 1985 components: - type: Transform - pos: -17.5,-5.5 + pos: 0.5,7.5 parent: 2 - - uid: 20796 + - uid: 2003 components: - type: Transform - pos: -21.5,22.5 + pos: -50.5,-49.5 parent: 2 - - uid: 20797 + - uid: 2004 components: - type: Transform - pos: -9.5,30.5 + pos: 7.5,0.5 parent: 2 - - uid: 20798 + - uid: 2005 components: - type: Transform - pos: -3.5,49.5 + pos: 0.5,-6.5 parent: 2 - - uid: 20799 + - uid: 2028 components: - type: Transform - pos: 35.5,10.5 + pos: -44.5,-5.5 parent: 2 - - uid: 20800 + - uid: 2029 components: - type: Transform - pos: 23.5,24.5 + pos: -19.5,-46.5 parent: 2 - - uid: 20801 + - uid: 2030 components: - type: Transform - pos: 48.5,15.5 + pos: -17.5,-46.5 parent: 2 - - uid: 20802 + - uid: 2031 components: - type: Transform - pos: 44.5,-9.5 + pos: 0.5,-10.5 parent: 2 - - uid: 20803 + - uid: 2032 components: - type: Transform - pos: 22.5,-19.5 + pos: -1.5,-10.5 parent: 2 - - uid: 20806 + - uid: 2033 components: - type: Transform - pos: 26.5,-40.5 + pos: -8.5,-20.5 parent: 2 - - uid: 20808 + - uid: 2034 components: - type: Transform - pos: -1.5,-38.5 + pos: -9.5,-20.5 parent: 2 - - uid: 20809 + - uid: 2036 components: - type: Transform - pos: -44.5,-32.5 + pos: -0.5,-24.5 parent: 2 - - uid: 20810 + - uid: 2038 components: - type: Transform - pos: -50.5,-32.5 + pos: 0.5,-28.5 parent: 2 - - uid: 20811 + - uid: 2044 components: - type: Transform - pos: -55.5,2.5 + pos: 30.5,-10.5 parent: 2 - - uid: 20812 + - uid: 2046 components: - type: Transform - pos: -55.5,0.5 + pos: 30.5,-11.5 parent: 2 - - uid: 20813 + - uid: 2047 components: - type: Transform - pos: -42.5,9.5 + pos: 30.5,-12.5 parent: 2 - - uid: 20814 + - uid: 2048 components: - type: Transform - pos: -49.5,-5.5 + pos: 30.5,-13.5 parent: 2 - - uid: 20816 + - uid: 2695 components: - type: Transform - pos: -38.5,-11.5 + pos: 30.5,-16.5 parent: 2 - - uid: 21033 + - uid: 2957 components: - type: Transform - pos: 31.5,24.5 + pos: 26.5,-16.5 parent: 2 - - uid: 21034 + - uid: 2982 components: - type: Transform - pos: -33.5,8.5 + pos: -22.5,-12.5 parent: 2 - - uid: 22184 + - uid: 2983 components: - type: Transform - pos: 21.5,-51.5 + pos: -22.5,-15.5 parent: 2 - - uid: 22188 + - uid: 2984 components: - type: Transform - pos: 19.5,-74.5 + pos: 25.5,-27.5 parent: 2 - - uid: 22189 + - uid: 3053 components: - type: Transform - pos: 21.5,-66.5 + pos: 28.5,-27.5 parent: 2 - - uid: 22190 + - uid: 3159 components: - type: Transform - pos: 17.5,-66.5 + pos: 24.5,-27.5 parent: 2 -- proto: Screwdriver - entities: - - uid: 2052 + - uid: 3161 components: - type: Transform - pos: -4.4728403,-17.587566 + pos: -27.5,12.5 parent: 2 - - uid: 7717 + - uid: 3182 components: - type: Transform - pos: 27.200108,-41.24766 + pos: -41.5,-31.5 parent: 2 -- proto: SecurityTechFab - entities: - - uid: 5043 + - uid: 3186 components: - type: Transform - pos: 7.5,30.5 + pos: -41.5,-30.5 parent: 2 -- proto: SeedExtractor - entities: - - uid: 5236 + - uid: 3187 components: - type: Transform - pos: -3.5,51.5 + pos: -57.5,3.5 parent: 2 - - uid: 16260 + - uid: 3188 components: - type: Transform - pos: -31.5,17.5 + pos: -56.5,3.5 parent: 2 -- proto: ShardGlass - entities: - - uid: 6994 + - uid: 3190 components: - type: Transform - pos: 37.799515,9.717336 + pos: -57.5,-2.5 parent: 2 - - uid: 15987 + - uid: 3191 components: - type: Transform - pos: 37.220566,10.453447 + pos: -55.5,1.5 parent: 2 - - uid: 17064 + - uid: 3192 components: - type: Transform - pos: 38.60945,9.960392 + pos: -45.5,-39.5 parent: 2 -- proto: SheetGlass - entities: - - uid: 2054 + - uid: 3193 components: - type: Transform - pos: -5.303391,-23.421415 + pos: -43.5,-42.5 parent: 2 - - uid: 4395 + - uid: 3301 components: - type: Transform - pos: 30.404766,-0.06552839 + pos: -6.5,25.5 parent: 2 - - uid: 7254 + - uid: 3304 components: - type: Transform - pos: 58.962917,-11.384084 + pos: -10.5,25.5 parent: 2 - - uid: 8196 + - uid: 3375 components: - type: Transform - pos: 10.711848,-40.45789 + pos: -14.5,25.5 parent: 2 - - uid: 15156 + - uid: 3376 components: - type: Transform - pos: -33.249187,38.611046 + pos: -46.5,8.5 parent: 2 - - uid: 20556 + - uid: 3529 components: - type: Transform - pos: 5.544655,27.559452 + pos: -49.5,8.5 parent: 2 - - type: Stack - count: 15 - - uid: 20886 + - uid: 3530 components: - type: Transform - pos: 23.487421,19.497616 + pos: -48.5,8.5 parent: 2 -- proto: SheetPlasma - entities: - - uid: 7262 + - uid: 3568 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.45334,-7.4422317 + pos: -50.5,8.5 parent: 2 - - uid: 21253 + - uid: 3569 components: - type: Transform - pos: 7.572357,0.5568676 - parent: 21128 - - type: Stack - count: 15 - - uid: 21570 + pos: -45.5,-5.5 + parent: 2 + - uid: 3571 components: - type: Transform - pos: 34.50172,-1.4871633 + pos: -50.5,-5.5 parent: 2 - - type: Stack - count: 15 - - uid: 21882 + - uid: 3574 components: - type: Transform - pos: 6.5330257,-14.510506 + rot: 1.5707963267948966 rad + pos: -45.5,14.5 parent: 2 - - type: Stack - count: 15 -- proto: SheetPlasma1 - entities: - - uid: 17337 + - uid: 3583 components: - type: Transform - pos: 23.631372,-65.50266 + rot: 1.5707963267948966 rad + pos: -49.5,14.5 parent: 2 - - type: Stack - count: 15 - - uid: 21880 + - uid: 3584 components: - type: Transform - pos: 15.5072975,-22.504484 + rot: 1.5707963267948966 rad + pos: -48.5,14.5 parent: 2 - - type: Stack - count: 15 -- proto: SheetPlasteel - entities: - - uid: 7622 + - uid: 3585 components: - type: Transform - pos: 21.439888,-35.48906 + pos: -49.5,-5.5 parent: 2 -- proto: SheetPlastic - entities: - - uid: 1942 + - uid: 3586 components: - type: Transform - pos: 5.388405,27.434452 + pos: -50.5,-18.5 parent: 2 - - type: Stack - count: 15 - - uid: 2056 + - uid: 3649 components: - type: Transform - pos: -5.037766,-23.452665 + pos: -47.5,-18.5 parent: 2 - - uid: 7159 + - uid: 3672 components: - type: Transform - pos: 58.244167,-11.384084 + pos: -51.5,-17.5 parent: 2 - - uid: 15157 + - uid: 3673 components: - type: Transform - pos: -32.858562,38.579796 + pos: -48.5,-30.5 parent: 2 - - uid: 23343 + - uid: 3674 components: - type: Transform - pos: 23.378046,19.38824 + pos: -44.5,-18.5 parent: 2 -- proto: SheetRPGlass - entities: - - uid: 5108 + - uid: 3675 components: - type: Transform - pos: -1.5633564,-17.410757 + pos: 35.5,-39.5 parent: 2 - - type: Stack - count: 15 -- proto: SheetSteel - entities: - - uid: 1960 + - uid: 3676 components: - type: Transform - pos: 23.549921,19.57574 + pos: 37.5,-39.5 parent: 2 - - uid: 2058 + - uid: 3682 components: - type: Transform - pos: -5.490891,-23.421415 + pos: 32.5,-39.5 parent: 2 - - uid: 2059 + - uid: 3695 components: - type: Transform - pos: 13.431305,-15.361163 + pos: 39.5,-39.5 parent: 2 - - uid: 2060 + - uid: 3753 components: - type: Transform - pos: 13.559727,-15.471238 + pos: 41.5,-39.5 parent: 2 - - uid: 4393 + - uid: 3773 components: - type: Transform - pos: 30.423111,0.55823207 + pos: 43.5,-39.5 parent: 2 - - uid: 7253 + - uid: 3774 components: - type: Transform - pos: 58.494167,-11.36325 + pos: 46.5,-39.5 parent: 2 - - uid: 8195 + - uid: 3779 components: - type: Transform - pos: 10.393852,-40.433426 + pos: 48.5,-39.5 parent: 2 - - uid: 15155 + - uid: 3807 components: - type: Transform - pos: -33.561687,38.65792 + pos: 33.5,1.5 parent: 2 - - uid: 16653 + - uid: 3822 components: - type: Transform - pos: 13.535873,34.51549 + pos: 34.5,1.5 parent: 2 - - uid: 21944 + - uid: 3823 components: - type: Transform - pos: 5.65403,27.653202 + pos: 40.5,-2.5 parent: 2 - - type: Stack - count: 15 -- proto: SheetSteel10 - entities: - - uid: 20573 + - uid: 3824 components: - type: Transform - pos: -38.542088,26.524464 + pos: 0.5,25.5 parent: 2 -- proto: SheetUranium - entities: - - uid: 20347 + - uid: 3825 components: - type: Transform - pos: 6.5942326,-13.459567 + pos: -5.5,22.5 parent: 2 - - type: Stack - count: 15 -- proto: ShelfChemistryChemistrySecure - entities: - - uid: 1813 + - uid: 3828 components: - type: Transform - pos: 42.5,14.5 + pos: 2.5,54.5 parent: 2 -- proto: ShotGunCabinetFilled - entities: - - uid: 8186 + - uid: 3835 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,33.5 + pos: 0.5,54.5 parent: 2 -- proto: ShuttersNormal - entities: - - uid: 2061 + - uid: 3851 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-26.5 + pos: -1.5,54.5 parent: 2 - - uid: 2062 + - uid: 3905 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-25.5 + pos: 1.5,44.5 parent: 2 - - uid: 2063 + - uid: 3918 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-27.5 + pos: -29.5,32.5 parent: 2 - - uid: 6546 + - uid: 3922 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-7.5 + pos: -13.5,37.5 parent: 2 - - uid: 6547 + - uid: 3952 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-6.5 + pos: 24.5,15.5 parent: 2 - - uid: 6548 + - uid: 3963 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-0.5 + pos: 36.5,23.5 parent: 2 - - uid: 6549 + - uid: 3974 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-1.5 + pos: 35.5,23.5 parent: 2 - - uid: 6550 + - uid: 3975 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-3.5 + pos: 34.5,23.5 parent: 2 - - uid: 6551 + - uid: 3976 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-4.5 + pos: 33.5,23.5 parent: 2 - - uid: 16146 + - uid: 3977 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,28.5 + pos: -65.5,-29.5 parent: 2 - - uid: 16147 + - uid: 3978 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,28.5 + pos: -68.5,-31.5 parent: 2 -- proto: ShuttersNormalOpen - entities: - - uid: 2064 + - uid: 3979 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-0.5 + pos: -65.5,-33.5 parent: 2 - - uid: 2065 + - uid: 3980 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,0.5 + pos: 45.5,10.5 parent: 2 - - uid: 2066 + - uid: 3981 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,1.5 + pos: -42.5,-42.5 parent: 2 - - uid: 2067 + - uid: 3982 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,2.5 + pos: -44.5,-42.5 parent: 2 - - uid: 2068 + - uid: 3983 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,3.5 + pos: 44.5,-1.5 parent: 2 - - uid: 2693 + - uid: 3984 components: - type: Transform - pos: 43.5,10.5 + pos: 44.5,-0.5 parent: 2 - - uid: 2694 + - uid: 3985 components: - type: Transform - pos: 42.5,10.5 + pos: -49.5,-49.5 parent: 2 - - uid: 2908 + - uid: 3986 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,-52.5 + pos: -48.5,-49.5 parent: 2 - - uid: 4423 + - uid: 3987 components: - type: Transform - pos: -45.5,-18.5 + pos: -47.5,-49.5 parent: 2 - - uid: 4424 + - uid: 3988 components: - type: Transform - pos: -44.5,-18.5 + pos: -46.5,-49.5 parent: 2 - - uid: 4425 + - uid: 3989 components: - type: Transform - pos: -43.5,-18.5 + pos: -45.5,-49.5 parent: 2 - - uid: 4540 + - uid: 3990 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-27.5 + pos: -44.5,-49.5 parent: 2 - - uid: 4542 + - uid: 4218 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-27.5 + pos: -52.5,-63.5 parent: 2 - - uid: 4543 + - uid: 4219 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-27.5 + pos: -52.5,-60.5 parent: 2 - - uid: 4544 + - uid: 4221 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-27.5 + pos: -52.5,-61.5 parent: 2 - - uid: 4545 + - uid: 4228 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-27.5 + pos: -52.5,-62.5 parent: 2 - - uid: 4546 + - uid: 4230 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-27.5 + pos: -17.5,-44.5 parent: 2 - - uid: 4547 + - uid: 4231 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-27.5 + pos: 52.5,10.5 parent: 2 - - uid: 5655 + - uid: 4232 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,21.5 + pos: -45.5,-40.5 parent: 2 - - uid: 5661 + - uid: 4246 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,20.5 + pos: -49.5,-40.5 parent: 2 - - uid: 7033 + - uid: 4249 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,14.5 + pos: 62.5,-13.5 parent: 2 - - uid: 7377 + - uid: 4251 components: - type: Transform - pos: -20.5,10.5 + pos: 66.5,-13.5 parent: 2 - - uid: 8280 + - uid: 4252 components: - type: Transform - pos: 33.5,-39.5 + pos: 72.5,-12.5 parent: 2 - - uid: 8281 + - uid: 4294 components: - type: Transform - pos: 32.5,-39.5 + pos: -54.5,-33.5 parent: 2 - - uid: 8437 + - uid: 4310 components: - type: Transform - pos: 34.5,-39.5 + pos: 64.5,16.5 parent: 2 - - uid: 8587 + - uid: 4311 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,54.5 + pos: 27.5,-47.5 parent: 2 - - uid: 8588 + - uid: 4312 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,54.5 + pos: 26.5,-47.5 parent: 2 - - uid: 8589 + - uid: 4313 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,54.5 + pos: 28.5,-49.5 parent: 2 - - uid: 8590 + - uid: 4344 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,54.5 + pos: 28.5,-47.5 parent: 2 - - uid: 8591 + - uid: 4682 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,54.5 + pos: 17.5,-48.5 parent: 2 - - uid: 8592 + - uid: 4704 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,54.5 + pos: 17.5,-47.5 parent: 2 - - uid: 8687 + - uid: 4706 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-22.5 + pos: 13.5,-63.5 parent: 2 - - uid: 8688 + - uid: 4752 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-22.5 + pos: -10.5,-41.5 parent: 2 - - uid: 8689 + - uid: 4761 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-22.5 + pos: -6.5,0.5 parent: 2 - - uid: 8691 + - uid: 4778 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-22.5 + pos: 2.5,-40.5 parent: 2 - - uid: 8744 + - uid: 4783 components: - type: Transform - pos: 48.5,-39.5 + pos: 2.5,-39.5 parent: 2 - - uid: 8747 + - uid: 4805 components: - type: Transform - pos: 45.5,10.5 + pos: -4.5,-42.5 parent: 2 - - uid: 8748 + - uid: 4807 components: - type: Transform - pos: 46.5,10.5 + pos: 13.5,-65.5 parent: 2 - - uid: 8768 + - uid: 4931 components: - type: Transform - pos: 47.5,-39.5 + pos: 13.5,-64.5 parent: 2 - - uid: 9248 + - uid: 4932 components: - type: Transform - pos: 46.5,-39.5 + pos: -29.5,31.5 parent: 2 - - uid: 12915 + - uid: 4991 components: - type: Transform - pos: 42.5,-39.5 + pos: -23.5,12.5 parent: 2 - - uid: 14724 + - uid: 4992 components: - type: Transform - pos: 38.5,-39.5 + pos: -19.5,-47.5 parent: 2 - - uid: 15408 + - uid: 4994 components: - type: Transform - pos: -22.5,10.5 + pos: -34.5,36.5 parent: 2 - - uid: 15409 + - uid: 5104 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,14.5 + pos: -34.5,37.5 parent: 2 - - uid: 15410 + - uid: 5105 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,13.5 + pos: 73.5,4.5 parent: 2 - - uid: 15411 + - uid: 5115 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,12.5 + pos: -39.5,18.5 parent: 2 - - uid: 16627 + - uid: 5121 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,33.5 + pos: 72.5,-1.5 parent: 2 - - uid: 17478 + - uid: 5122 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,12.5 + pos: 73.5,2.5 parent: 2 - - uid: 17479 + - uid: 5197 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,13.5 + pos: 72.5,4.5 parent: 2 - - uid: 17480 + - uid: 5198 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,14.5 + pos: 72.5,6.5 parent: 2 - - uid: 17492 + - uid: 5199 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-15.5 + pos: 72.5,0.5 parent: 2 - - uid: 17493 + - uid: 5200 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-14.5 + pos: 72.5,2.5 parent: 2 - - uid: 17494 + - uid: 5201 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-13.5 + pos: 73.5,0.5 parent: 2 - - uid: 17495 + - uid: 5202 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-12.5 + pos: -13.5,42.5 parent: 2 - - uid: 17496 + - uid: 5203 components: - type: Transform - pos: -16.5,-28.5 + pos: -12.5,42.5 parent: 2 - - uid: 17497 + - uid: 5204 components: - type: Transform - pos: -15.5,-28.5 + pos: 84.5,-29.5 parent: 2 - - uid: 17498 + - uid: 5205 components: - type: Transform - pos: -17.5,-28.5 + pos: 84.5,-28.5 parent: 2 - - uid: 17502 + - uid: 5206 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,24.5 + pos: 84.5,-27.5 parent: 2 - - uid: 17503 + - uid: 5208 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,23.5 + pos: 84.5,-26.5 parent: 2 - - uid: 17512 + - uid: 5230 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,14.5 + pos: 84.5,-25.5 parent: 2 - - uid: 17514 + - uid: 5266 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,13.5 + rot: 1.5707963267948966 rad + pos: 49.5,23.5 parent: 2 - - uid: 17515 + - uid: 5267 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,12.5 + pos: -67.5,-27.5 parent: 2 - - uid: 17521 + - uid: 5269 components: - type: Transform - pos: 57.5,-15.5 + pos: 66.5,-36.5 parent: 2 - - uid: 17522 + - uid: 5270 components: - type: Transform - pos: 58.5,-15.5 + pos: 66.5,-34.5 parent: 2 - - uid: 17523 + - uid: 5426 components: - type: Transform - pos: 59.5,-15.5 + pos: -23.5,-46.5 parent: 2 - - uid: 17524 + - uid: 5454 components: - type: Transform - pos: 60.5,-15.5 + pos: 10.5,41.5 parent: 2 - - uid: 19928 + - uid: 5462 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,15.5 + pos: -23.5,-47.5 parent: 2 - - uid: 20807 + - uid: 5480 components: - type: Transform - pos: -0.5,-28.5 + pos: -17.5,-43.5 parent: 2 - - uid: 20827 + - uid: 5481 components: - type: Transform - pos: 0.5,-28.5 + pos: -17.5,-47.5 parent: 2 - - uid: 21746 + - uid: 5482 components: - type: Transform - pos: -21.5,10.5 + pos: -66.5,-29.5 parent: 2 - - uid: 22199 + - uid: 5487 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-71.5 + pos: -65.5,-27.5 parent: 2 - - uid: 22860 + - uid: 5544 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,15.5 + pos: -67.5,-29.5 parent: 2 - - uid: 22861 + - uid: 5546 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,19.5 + pos: 24.5,25.5 parent: 2 - - uid: 22862 + - uid: 5547 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,25.5 + pos: 27.5,26.5 parent: 2 -- proto: ShuttersRadiationOpen - entities: - - uid: 2069 + - uid: 5636 components: - type: Transform - pos: 2.5,-10.5 + pos: 27.5,25.5 parent: 2 - - uid: 2070 + - uid: 5643 components: - type: Transform - pos: 1.5,-10.5 + pos: -22.5,10.5 parent: 2 - - uid: 2071 + - uid: 5658 components: - type: Transform - pos: 0.5,-10.5 + pos: -13.5,22.5 parent: 2 - - uid: 2072 + - uid: 5662 components: - type: Transform - pos: -0.5,-10.5 - parent: 2 - - uid: 2073 - components: - - type: Transform - pos: -1.5,-10.5 - parent: 2 - - uid: 20350 - components: - - type: Transform - pos: -0.5,-18.5 - parent: 2 - - uid: 20351 - components: - - type: Transform - pos: 0.5,-18.5 - parent: 2 - - uid: 20352 - components: - - type: Transform - pos: 1.5,-18.5 - parent: 2 -- proto: ShuttersWindowOpen - entities: - - uid: 4616 - components: - - type: Transform - pos: 35.5,-39.5 - parent: 2 - - uid: 4617 - components: - - type: Transform - pos: 36.5,-39.5 - parent: 2 - - uid: 4618 - components: - - type: Transform - pos: 37.5,-39.5 - parent: 2 - - uid: 4620 - components: - - type: Transform - pos: 39.5,-39.5 - parent: 2 - - uid: 4621 - components: - - type: Transform - pos: 40.5,-39.5 - parent: 2 - - uid: 4622 - components: - - type: Transform - pos: 41.5,-39.5 - parent: 2 - - uid: 4624 - components: - - type: Transform - pos: 43.5,-39.5 - parent: 2 - - uid: 4625 - components: - - type: Transform - pos: 44.5,-39.5 - parent: 2 - - uid: 4626 - components: - - type: Transform - pos: 45.5,-39.5 - parent: 2 -- proto: ShuttleConsoleCircuitboard - entities: - - uid: 21318 - components: - - type: Transform - pos: 7.516014,2.0782585 - parent: 21128 -- proto: ShuttleWindow - entities: - - uid: 21176 - components: - - type: Transform - pos: 0.5,-0.5 - parent: 21128 - - uid: 21177 - components: - - type: Transform - pos: 0.5,0.5 - parent: 21128 - - uid: 21178 - components: - - type: Transform - pos: 1.5,0.5 - parent: 21128 - - uid: 21179 - components: - - type: Transform - pos: 3.5,0.5 - parent: 21128 - - uid: 21180 - components: - - type: Transform - pos: 7.5,3.5 - parent: 21128 - - uid: 21181 - components: - - type: Transform - pos: 7.5,4.5 - parent: 21128 - - uid: 21182 - components: - - type: Transform - pos: 9.5,3.5 - parent: 21128 - - uid: 21183 - components: - - type: Transform - pos: 10.5,-3.5 - parent: 21128 - - uid: 21193 - components: - - type: Transform - pos: 5.5,-2.5 - parent: 21128 - - uid: 21194 - components: - - type: Transform - pos: 5.5,-4.5 - parent: 21128 -- proto: SignAi - entities: - - uid: 21407 - components: - - type: Transform - pos: 17.5,-41.5 - parent: 2 - - uid: 22196 - components: - - type: Transform - pos: 18.5,-61.5 - parent: 2 -- proto: SignAiUpload - entities: - - uid: 21887 - components: - - type: Transform - pos: 20.5,-41.5 - parent: 2 - - uid: 22186 - components: - - type: Transform - pos: 21.5,-53.5 - parent: 2 -- proto: SignalButton - entities: - - uid: 2074 - components: - - type: MetaData - name: Radiation shutters button - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-11.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 2069: - - Pressed: Toggle - 2070: - - Pressed: Toggle - 2071: - - Pressed: Toggle - 2072: - - Pressed: Toggle - 2073: - - Pressed: Toggle - - uid: 2075 - components: - - type: MetaData - name: secure supply button - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-12.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 160: - - Pressed: Toggle - 159: - - Pressed: Toggle - - uid: 2076 - components: - - type: MetaData - name: Blast chamber doors button - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-14.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 158: - - Pressed: Toggle - 157: - - Pressed: Toggle - 16939: - - Pressed: Toggle - - uid: 2077 - components: - - type: MetaData - name: Door bolt button - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-11.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 6: - - Pressed: DoorBolt - - uid: 2079 - components: - - type: MetaData - name: Door bolt button - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-11.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 7: - - Pressed: DoorBolt - - uid: 15610 - components: - - type: MetaData - name: Lights off button - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-25.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 12667: - - Pressed: Toggle - - uid: 20353 - components: - - type: MetaData - name: Radiation shutters button - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-24.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 20352: - - Pressed: Toggle - 20351: - - Pressed: Toggle - 20350: - - Pressed: Toggle - - uid: 21867 - components: - - type: MetaData - name: Medical exit button - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-2.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 6514: - - Pressed: Open - 6515: - - Pressed: Open - 6516: - - Pressed: Open -- proto: SignalButtonDirectional - entities: - - uid: 2100 - components: - - type: MetaData - name: Shutters button - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,12.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 8747: - - Pressed: Toggle - 8748: - - Pressed: Toggle - 2693: - - Pressed: Toggle - 2694: - - Pressed: Toggle - - uid: 4520 - components: - - type: MetaData - name: Shutters button - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-16.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 4425: - - Pressed: Toggle - 4424: - - Pressed: Toggle - 4423: - - Pressed: Toggle - - uid: 4548 - components: - - type: MetaData - name: Shutters button - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-31.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 4547: - - Pressed: Toggle - 4546: - - Pressed: Toggle - 4545: - - Pressed: Toggle - 4544: - - Pressed: Toggle - 4543: - - Pressed: Toggle - 4542: - - Pressed: Toggle - 4540: - - Pressed: Toggle - - uid: 5653 - components: - - type: MetaData - name: Shutters button - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,21.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 5655: - - Pressed: Toggle - 5661: - - Pressed: Toggle - 22861: - - Pressed: Toggle - - uid: 5757 - components: - - type: MetaData - name: Secure storage doors button - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,5.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 5465: - - Pressed: Toggle - 5466: - - Pressed: Toggle - 5464: - - Pressed: Toggle - - uid: 6961 - components: - - type: MetaData - name: containment button - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,16.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 6960: - - Pressed: Toggle - 6905: - - Pressed: DoorBolt - - uid: 7032 - components: - - type: MetaData - name: Lights off button - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,11.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 14224: - - Pressed: Toggle - - uid: 7039 - components: - - type: MetaData - name: Lights off button - - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,-22.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 16058: - - Pressed: Toggle - - uid: 7054 - components: - - type: MetaData - name: Lights off button - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-31.5 - parent: 2 - - uid: 8185 - components: - - type: MetaData - name: Shutters button - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-26.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 8691: - - Pressed: Toggle - 8689: - - Pressed: Toggle - 8688: - - Pressed: Toggle - 8687: - - Pressed: Toggle - - uid: 8530 - components: - - type: MetaData - name: Door bolt button - - type: Transform - pos: 17.5,26.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 8242: - - Pressed: DoorBolt - - uid: 8532 - components: - - type: MetaData - name: Door bolt button - - type: Transform - pos: 17.5,24.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 8243: - - Pressed: DoorBolt - - uid: 12911 - components: - - type: MetaData - name: Shutters button - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-1.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 2064: - - Pressed: Toggle - 2065: - - Pressed: Toggle - 2066: - - Pressed: Toggle - 2067: - - Pressed: Toggle - 2068: - - Pressed: Toggle - - uid: 12913 - components: - - type: MetaData - name: Blast doors button - - type: Transform - pos: 27.5,24.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 5517: - - Pressed: Toggle - 5516: - - Pressed: Toggle - - uid: 12914 - components: - - type: MetaData - name: Blast doors button - - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,-12.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 7332: - - Pressed: Toggle - 7333: - - Pressed: Toggle - 7334: - - Pressed: Toggle - - uid: 12916 - components: - - type: MetaData - name: Blast doors button - - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,-16.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 7335: - - Pressed: Toggle - 7336: - - Pressed: Toggle - 7337: - - Pressed: Toggle - - uid: 14403 - components: - - type: MetaData - name: Janitorial service light button - - type: Transform - pos: 2.9529366,23.045258 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 20777: - - Pressed: Toggle - - uid: 14879 - components: - - type: MetaData - name: Lights off button - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-11.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 1686: - - Pressed: Toggle - - uid: 14901 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-37.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 7934: - - Pressed: Toggle - - uid: 15913 - components: - - type: MetaData - name: Shutters button - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,15.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 15410: - - Pressed: Toggle - 15409: - - Pressed: Toggle - 15411: - - Pressed: Toggle - 15408: - - Pressed: Toggle - 21746: - - Pressed: Toggle - 7377: - - Pressed: Toggle - - uid: 16121 - components: - - type: MetaData - name: Lights off button - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-11.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 1688: - - Pressed: Toggle - - uid: 16148 - components: - - type: Transform - pos: 57.5,28.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 16147: - - Pressed: Toggle - - uid: 16149 - components: - - type: Transform - pos: 61.5,28.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 16146: - - Pressed: Toggle - - uid: 16628 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,31.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 16627: - - Pressed: Toggle - - uid: 16704 - components: - - type: MetaData - name: Shutters button - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-36.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 12915: - - Pressed: Toggle - 14724: - - Pressed: Toggle - 8437: - - Pressed: Toggle - 4626: - - Pressed: Toggle - 4625: - - Pressed: Toggle - 4624: - - Pressed: Toggle - 8281: - - Pressed: Toggle - 4622: - - Pressed: Toggle - 4621: - - Pressed: Toggle - 4620: - - Pressed: Toggle - 8280: - - Pressed: Toggle - 4618: - - Pressed: Toggle - 4617: - - Pressed: Toggle - 4616: - - Pressed: Toggle - 8744: - - Pressed: Toggle - 8768: - - Pressed: Toggle - 9248: - - Pressed: Toggle - - uid: 17461 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-27.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 20807: - - Pressed: Toggle - 20827: - - Pressed: Toggle - - uid: 17491 - components: - - type: MetaData - name: Shutters button - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-16.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 17492: - - Pressed: Toggle - 17493: - - Pressed: Toggle - 17494: - - Pressed: Toggle - 17495: - - Pressed: Toggle - - uid: 17499 - components: - - type: MetaData - name: Shutters button - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-28.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 17498: - - Pressed: Toggle - 17496: - - Pressed: Toggle - 17497: - - Pressed: Toggle - - uid: 17505 - components: - - type: MetaData - name: Shutters button - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,22.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 17503: - - Pressed: Toggle - 17502: - - Pressed: Toggle - 22862: - - Pressed: Toggle - - uid: 17507 - components: - - type: MetaData - name: Shutters button - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,53.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 8587: - - Pressed: Toggle - 8588: - - Pressed: Toggle - 8589: - - Pressed: Toggle - 8590: - - Pressed: Toggle - 8591: - - Pressed: Toggle - 8592: - - Pressed: Toggle - - uid: 17516 - components: - - type: MetaData - name: Shutters button - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,9.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 17515: - - Pressed: Toggle - 17514: - - Pressed: Toggle - 17512: - - Pressed: Toggle - 22860: - - Pressed: Toggle - - uid: 17517 - components: - - type: MetaData - name: Shutters button - - type: Transform - pos: 46.5,-5.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 6547: - - Pressed: Toggle - 6546: - - Pressed: Toggle - - uid: 17518 - components: - - type: MetaData - name: Shutters button - - type: Transform - pos: 46.5,-2.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 6550: - - Pressed: Toggle - 6551: - - Pressed: Toggle - - uid: 17519 - components: - - type: MetaData - name: Shutters button - - type: Transform - pos: 46.5,0.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 6548: - - Pressed: Toggle - 6549: - - Pressed: Toggle - - uid: 17520 - components: - - type: MetaData - name: Shutters button - - type: Transform - pos: 61.5,-10.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 17524: - - Pressed: Toggle - 17523: - - Pressed: Toggle - 17522: - - Pressed: Toggle - 17521: - - Pressed: Toggle - - uid: 17526 - components: - - type: MetaData - name: Lockdown button - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-51.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 17259: - - Pressed: DoorBolt - 2908: - - Pressed: Toggle - - uid: 18465 - components: - - type: MetaData - name: Shutters button - - type: Transform - pos: 35.5,16.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 7033: - - Pressed: Toggle - 19928: - - Pressed: Toggle - - uid: 20319 - components: - - type: MetaData - name: Blast doors button - - type: Transform - pos: 61.5,-21.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 7121: - - Pressed: Toggle - 7123: - - Pressed: Toggle - - uid: 20781 - components: - - type: MetaData - name: Janitorial service light button - - type: Transform - pos: -5.5,-24.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 20783: - - Pressed: Toggle - - uid: 20784 - components: - - type: MetaData - name: Janitorial service light button - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,11.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 20778: - - Pressed: Toggle - - uid: 20785 - components: - - type: MetaData - name: Janitorial service light button - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,2.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 20779: - - Pressed: Toggle - - uid: 20786 - components: - - type: MetaData - name: Janitorial service light button - - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,-16.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 20780: - - Pressed: Toggle - - uid: 21235 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-1.5 - parent: 21128 - - type: DeviceLinkSource - linkedPorts: - 21191: - - Pressed: Toggle - 21192: - - Pressed: Toggle - - uid: 21451 - components: - - type: MetaData - name: lockdown button - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.47196,16.864159 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 6727: - - Pressed: DoorBolt - - Pressed: Close - - Pressed: AutoClose - - uid: 21844 - components: - - type: MetaData - name: Shutters button - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,10.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 17478: - - Pressed: Toggle - 17480: - - Pressed: Toggle - 17479: - - Pressed: Toggle - - uid: 21873 - components: - - type: MetaData - name: Lights off button - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,11.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 21874: - - Pressed: Toggle - - uid: 21875 - components: - - type: MetaData - name: Lights off button - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,32.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 14851: - - Pressed: Toggle - - uid: 21876 - components: - - type: MetaData - name: Lights off button - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-26.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 21877: - - Pressed: Toggle -- proto: SignAnomaly - entities: - - uid: 8366 - components: - - type: Transform - pos: 72.5,-15.5 - parent: 2 -- proto: SignAnomaly2 - entities: - - uid: 7214 - components: - - type: Transform - pos: 66.5,-11.5 - parent: 2 -- proto: SignArcade - entities: - - uid: 2145 - components: - - type: Transform - pos: -44.5,8.5 - parent: 2 - - uid: 3123 - components: - - type: Transform - pos: -50.5,8.5 - parent: 2 -- proto: SignArmory - entities: - - uid: 4749 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,29.5 - parent: 2 -- proto: SignAtmos - entities: - - uid: 2080 - components: - - type: Transform - pos: 22.5,-23.5 - parent: 2 - - uid: 4791 - components: - - type: Transform - pos: 15.5,-10.5 - parent: 2 - - uid: 8347 - components: - - type: Transform - pos: 14.5,-19.5 - parent: 2 -- proto: SignBar - entities: - - uid: 6812 - components: - - type: Transform - pos: -18.5,4.5 - parent: 2 -- proto: SignBio - entities: - - uid: 6811 - components: - - type: Transform - pos: 52.5,15.5 - parent: 2 -- proto: SignBiohazardMed - entities: - - uid: 21893 - components: - - type: Transform - pos: 47.5,10.5 - parent: 2 -- proto: SignBridge - entities: - - uid: 6813 - components: - - type: Transform - pos: 46.5,-21.5 - parent: 2 -- proto: SignCargo - entities: - - uid: 6814 - components: - - type: Transform - pos: 22.5,9.5 - parent: 2 -- proto: SignCargoDock - entities: - - uid: 21894 - components: - - type: Transform - pos: 30.5,24.5 - parent: 2 - - uid: 21895 - components: - - type: Transform - pos: 24.5,24.5 - parent: 2 -- proto: SignChapel - entities: - - uid: 2082 - components: - - type: Transform - pos: -25.5,-32.5 - parent: 2 -- proto: SignChem - entities: - - uid: 5964 - components: - - type: Transform - pos: 41.5,10.5 - parent: 2 - - uid: 8369 - components: - - type: Transform - pos: 42.5,16.5 - parent: 2 -- proto: SignConference - entities: - - uid: 2699 - components: - - type: Transform - pos: 30.5,-28.5 - parent: 2 -- proto: SignCryogenicsMed - entities: - - uid: 7038 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-2.5 - parent: 2 -- proto: SignDangerMed - entities: - - uid: 17068 - components: - - type: Transform - pos: 30.5,-52.5 - parent: 2 - - uid: 20805 - components: - - type: Transform - pos: 27.5,-57.5 - parent: 2 - - uid: 21077 - components: - - type: Transform - pos: 55.5,-43.5 - parent: 2 - - uid: 21125 - components: - - type: Transform - pos: 50.5,-43.5 - parent: 2 - - uid: 22095 - components: - - type: Transform - pos: 11.5,-52.5 - parent: 2 - - uid: 22500 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-35.5 - parent: 2 -- proto: SignDirectionalBar - entities: - - uid: 13599 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,-5.5 - parent: 2 - - uid: 13600 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-32.5 - parent: 2 - - uid: 13601 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-11.5 - parent: 2 - - uid: 13602 - components: - - type: Transform - pos: 18.5,-25.5 - parent: 2 - - uid: 13603 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,9.5 - parent: 2 - - uid: 13604 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,18.5 - parent: 2 - - uid: 21869 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.509625,-34.787674 - parent: 2 -- proto: SignDirectionalBrig - entities: - - uid: 13605 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,26.5 - parent: 2 -- proto: SignDirectionalChapel - entities: - - uid: 13606 - components: - - type: Transform - pos: -22.495113,-11.233777 - parent: 2 - - uid: 13607 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.491245,-32.232563 - parent: 2 -- proto: SignDirectionalChemistry - entities: - - uid: 13608 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,6.5 - parent: 2 -- proto: SignDirectionalCryo - entities: - - uid: 13609 - components: - - type: Transform - pos: 52.5,9.5 - parent: 2 -- proto: SignDirectionalDorms - entities: - - uid: 13610 - components: - - type: Transform - pos: -27.5,8.5 - parent: 2 - - uid: 13611 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-32.5 - parent: 2 -- proto: SignDirectionalEng - entities: - - uid: 13612 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.511724,-32.217175 - parent: 2 - - uid: 20489 - components: - - type: Transform - pos: -25.510857,-5.767983 - parent: 2 - - uid: 20864 - components: - - type: Transform - pos: 16.5,1.5 - parent: 2 -- proto: SignDirectionalEvac - entities: - - uid: 13613 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.4961,-32.779675 - parent: 2 - - uid: 13614 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.494131,8.773048 - parent: 2 - - uid: 13615 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,18.5 - parent: 2 - - uid: 13616 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,1.5 - parent: 2 - - uid: 13617 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-17.5 - parent: 2 - - uid: 13618 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-34.5 - parent: 2 - - uid: 17454 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.502985,-24.238998 - parent: 2 -- proto: SignDirectionalFood - entities: - - uid: 13619 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-32.5 - parent: 2 - - uid: 13620 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.499298,18.229422 - parent: 2 -- proto: SignDirectionalGravity - entities: - - uid: 13621 - components: - - type: Transform - pos: 44.51204,-17.745241 - parent: 2 -- proto: SignDirectionalHop - entities: - - uid: 13622 - components: - - type: Transform - pos: 18.493233,9.222223 - parent: 2 - - uid: 13623 - components: - - type: Transform - pos: -25.5,-7.5 - parent: 2 -- proto: SignDirectionalJanitor - entities: - - uid: 13624 - components: - - type: Transform - pos: -25.505726,-7.2018347 - parent: 2 - - uid: 13625 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.482073,18.78723 - parent: 2 - - uid: 13626 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.543232,-17.25335 - parent: 2 -- proto: SignDirectionalLibrary - entities: - - uid: 13627 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.480328,-32.243916 - parent: 2 - - uid: 13628 - components: - - type: Transform - pos: -27.506214,8.259279 - parent: 2 - - uid: 13629 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,18.5 - parent: 2 -- proto: SignDirectionalMed - entities: - - uid: 17449 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.470295,-5.772457 - parent: 2 - - uid: 20486 - components: - - type: Transform - pos: -25.5,-5.5 - parent: 2 - - uid: 20487 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.499676,16.214537 - parent: 2 - - uid: 20490 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.495012,18.771885 - parent: 2 - - uid: 20491 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.508957,-25.217173 - parent: 2 - - uid: 21908 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.512268,-21.218489 - parent: 2 - - uid: 21910 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.47832,-32.75125 - parent: 2 -- proto: SignDirectionalSalvage - entities: - - uid: 13630 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.51097,17.851742 - parent: 2 -- proto: SignDirectionalSci - entities: - - uid: 7179 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-21.5 - parent: 2 - - uid: 13631 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.482822,1.7950348 - parent: 2 - - uid: 13632 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-17.5 - parent: 2 - - uid: 13633 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.500166,-25.753792 - parent: 2 - - uid: 13634 - components: - - type: Transform - pos: -25.51464,-7.7475777 - parent: 2 - - uid: 13647 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.51245,-24.757616 - parent: 2 -- proto: SignDirectionalSec - entities: - - uid: 13635 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,16.5 - parent: 2 - - uid: 13636 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.51479,-5.215695 - parent: 2 - - uid: 13637 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-24.5 - parent: 2 - - uid: 13638 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.51868,-17.241924 - parent: 2 - - uid: 13639 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.507929,1.2496392 - parent: 2 -- proto: SignDirectionalSupply - entities: - - uid: 13640 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.46845,-17.784672 - parent: 2 - - uid: 13641 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.479525,-32.753902 - parent: 2 - - uid: 13642 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.510996,-34.195675 - parent: 2 - - uid: 13643 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.50406,16.777948 - parent: 2 - - uid: 13644 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.515841,18.759907 - parent: 2 - - uid: 20488 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.510857,-5.235952 - parent: 2 -- proto: SignDirectionalWash - entities: - - uid: 13645 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,18.5 - parent: 2 - - uid: 13646 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.4859295,18.77162 - parent: 2 -- proto: SignDisposalSpace - entities: - - uid: 7904 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-37.5 - parent: 2 -- proto: SignDoors - entities: - - uid: 6816 - components: - - type: Transform - pos: 37.5,19.5 - parent: 2 - - uid: 8119 - components: - - type: Transform - pos: -54.5,-59.5 - parent: 2 - - uid: 8349 - components: - - type: Transform - pos: -40.5,-59.5 - parent: 2 - - uid: 8351 - components: - - type: Transform - pos: -40.5,-64.5 - parent: 2 - - uid: 8352 - components: - - type: Transform - pos: -54.5,-64.5 - parent: 2 -- proto: SignElectricalMed - entities: - - uid: 6817 - components: - - type: Transform - pos: -10.5,-17.5 - parent: 2 - - uid: 6818 - components: - - type: Transform - pos: 13.5,-23.5 - parent: 2 - - uid: 7864 - components: - - type: Transform - pos: 13.5,-78.5 - parent: 2 - - uid: 8356 - components: - - type: Transform - pos: -52.5,8.5 - parent: 2 - - uid: 8357 - components: - - type: Transform - pos: 40.5,-14.5 - parent: 2 - - uid: 8358 - components: - - type: Transform - pos: 37.5,8.5 - parent: 2 - - uid: 8359 - components: - - type: Transform - pos: 0.5,13.5 - parent: 2 - - uid: 8360 - components: - - type: Transform - pos: -5.5,13.5 - parent: 2 - - uid: 9268 - components: - - type: Transform - pos: -12.5,-12.5 - parent: 2 - - uid: 9348 - components: - - type: Transform - pos: -2.5,-37.5 - parent: 2 - - uid: 17335 - components: - - type: Transform - pos: -2.5,16.5 - parent: 2 - - uid: 17506 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,55.5 - parent: 2 - - uid: 17508 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,55.5 - parent: 2 - - uid: 17509 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,51.5 - parent: 2 - - uid: 17510 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,43.5 - parent: 2 - - uid: 17511 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,42.5 - parent: 2 - - uid: 20349 - components: - - type: Transform - pos: -0.5,-38.5 - parent: 2 - - uid: 21111 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-37.5 - parent: 2 - - uid: 22016 - components: - - type: Transform - pos: 27.5,-66.5 - parent: 2 - - uid: 22018 - components: - - type: Transform - pos: 11.5,-66.5 - parent: 2 - - uid: 22019 - components: - - type: Transform - pos: 25.5,-78.5 - parent: 2 - - uid: 22029 - components: - - type: Transform - pos: 22.5,-63.5 - parent: 2 - - uid: 22434 - components: - - type: Transform - pos: 14.5,-37.5 - parent: 2 - - uid: 22435 - components: - - type: Transform - pos: 52.5,-30.5 - parent: 2 - - uid: 22436 - components: - - type: Transform - pos: -37.5,-36.5 - parent: 2 - - uid: 22440 - components: - - type: Transform - pos: -22.5,33.5 - parent: 2 - - uid: 22441 - components: - - type: Transform - pos: -61.5,-21.5 - parent: 2 - - uid: 22442 - components: - - type: Transform - pos: 63.5,-29.5 - parent: 2 - - uid: 22443 - components: - - type: Transform - pos: 88.5,-21.5 - parent: 2 - - uid: 22444 - components: - - type: Transform - pos: 62.5,10.5 - parent: 2 -- proto: SignEngine - entities: - - uid: 6819 - components: - - type: Transform - pos: 15.5,-23.5 - parent: 2 -- proto: SignEngineering - entities: - - uid: 2083 - components: - - type: Transform - pos: -4.5,-28.5 - parent: 2 - - uid: 15951 - components: - - type: Transform - pos: 15.5,0.5 - parent: 2 -- proto: SignEscapePods - entities: - - uid: 15261 - components: - - type: Transform - pos: 66.5,4.5 - parent: 2 - - uid: 15262 - components: - - type: Transform - pos: 66.5,0.5 - parent: 2 - - uid: 15263 - components: - - type: Transform - pos: 66.5,-3.5 - parent: 2 - - uid: 16026 - components: - - type: Transform - pos: -21.5,-45.5 - parent: 2 - - uid: 17016 - components: - - type: Transform - pos: -19.5,-45.5 - parent: 2 -- proto: SignEVA - entities: - - uid: 7704 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-34.5 - parent: 2 -- proto: SignExamroom - entities: - - uid: 6810 - components: - - type: Transform - pos: 48.5,0.5 - parent: 2 -- proto: SignFire - entities: - - uid: 8361 - components: - - type: Transform - pos: 15.5,-14.5 - parent: 2 -- proto: SignFlammableMed - entities: - - uid: 8362 - components: - - type: Transform - pos: 32.5,-9.5 - parent: 2 - - uid: 8363 - components: - - type: Transform - pos: 32.5,-14.5 - parent: 2 -- proto: SignGravity - entities: - - uid: 19808 - components: - - type: Transform - pos: 51.5,-37.5 - parent: 2 -- proto: SignHead - entities: - - uid: 2084 - components: - - type: Transform - pos: 45.5,-22.5 - parent: 2 -- proto: SignHydro1 - entities: - - uid: 2085 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,15.5 - parent: 2 -- proto: SignInterrogation - entities: - - uid: 4822 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,29.5 - parent: 2 -- proto: SignJanitor - entities: - - uid: 6821 - components: - - type: Transform - pos: -14.5,-28.5 - parent: 2 -- proto: SignLawyer - entities: - - uid: 6823 - components: - - type: Transform - pos: -46.5,-18.5 - parent: 2 -- proto: SignLibrary - entities: - - uid: 6822 - components: - - type: Transform - pos: -22.5,-16.5 - parent: 2 -- proto: SignMagneticsMed - entities: - - uid: 22501 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-33.5 - parent: 2 -- proto: SignMail - entities: - - uid: 6815 - components: - - type: Transform - pos: 22.5,16.5 - parent: 2 -- proto: SignMaterials - entities: - - uid: 4375 - components: - - type: Transform - pos: 31.5,1.5 - parent: 2 -- proto: SignMedical - entities: - - uid: 6824 - components: - - type: Transform - pos: 44.5,0.5 - parent: 2 -- proto: SignMorgue - entities: - - uid: 6665 - components: - - type: Transform - pos: 50.5,-8.5 - parent: 2 - - uid: 14213 - components: - - type: Transform - pos: 47.5,-11.5 - parent: 2 -- proto: SignNanotrasen1 - entities: - - uid: 19752 - components: - - type: Transform - pos: 34.5,-21.5 - parent: 2 -- proto: SignNanotrasen2 - entities: - - uid: 19751 - components: - - type: Transform - pos: 35.5,-21.5 - parent: 2 -- proto: SignNanotrasen3 - entities: - - uid: 19750 - components: - - type: Transform - pos: 36.5,-21.5 - parent: 2 -- proto: SignNanotrasen4 - entities: - - uid: 19749 - components: - - type: Transform - pos: 37.5,-21.5 - parent: 2 -- proto: SignNanotrasen5 - entities: - - uid: 19748 - components: - - type: Transform - pos: 38.5,-21.5 - parent: 2 -- proto: SignNews - entities: - - uid: 3096 - components: - - type: Transform - pos: -52.5,-27.5 - parent: 2 -- proto: SignNTMine - entities: - - uid: 7084 - components: - - type: Transform - pos: 32.5,17.5 - parent: 2 -- proto: SignPrison - entities: - - uid: 5110 - components: - - type: Transform - pos: -2.5,35.5 - parent: 2 -- proto: SignRadiationMed - entities: - - uid: 2091 - components: - - type: Transform - pos: -2.5,-15.5 - parent: 2 -- proto: SignReception - entities: - - uid: 854 - components: - - type: Transform - pos: 24.5,15.5 - parent: 2 - - uid: 21597 - components: - - type: Transform - pos: 57.5,-15.5 - parent: 2 - - uid: 21598 - components: - - type: Transform - pos: 44.5,-22.5 - parent: 2 - - uid: 21599 - components: - - type: Transform - pos: 0.5,25.5 - parent: 2 -- proto: SignRedOne - entities: - - uid: 21619 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.497345,-11.735416 - parent: 2 -- proto: SignRedTwo - entities: - - uid: 21620 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.505127,-11.735416 - parent: 2 -- proto: SignRestroom - entities: - - uid: 20295 - components: - - type: Transform - pos: 15.5,22.5 - parent: 2 -- proto: SignRND - entities: - - uid: 21928 - components: - - type: Transform - pos: 61.5,-15.5 - parent: 2 -- proto: SignRobo - entities: - - uid: 7162 - components: - - type: Transform - pos: 60.5,-21.5 - parent: 2 -- proto: SignSalvage - entities: - - uid: 855 - components: - - type: Transform - pos: 32.5,19.5 - parent: 2 -- proto: SignScience - entities: - - uid: 7158 - components: - - type: Transform - pos: 62.5,-18.5 - parent: 2 -- proto: SignSecureMed - entities: - - uid: 1969 - components: - - type: Transform - pos: -29.5,-1.5 - parent: 2 - - uid: 6827 - components: - - type: Transform - pos: 21.5,-19.5 - parent: 2 - - uid: 15635 - components: - - type: Transform - pos: -41.5,22.5 - parent: 2 - - uid: 15929 - components: - - type: Transform - pos: -45.5,22.5 - parent: 2 - - uid: 16658 - components: - - type: Transform - pos: -41.5,24.5 - parent: 2 - - uid: 16659 - components: - - type: Transform - pos: -45.5,24.5 - parent: 2 - - uid: 17248 - components: - - type: Transform - pos: 49.5,-56.5 - parent: 2 - - uid: 17249 - components: - - type: Transform - pos: 43.5,-57.5 - parent: 2 - - uid: 17250 - components: - - type: Transform - pos: 39.5,-52.5 - parent: 2 - - uid: 17251 - components: - - type: Transform - pos: 55.5,-48.5 - parent: 2 - - uid: 17252 - components: - - type: Transform - pos: 61.5,-56.5 - parent: 2 - - uid: 17253 - components: - - type: Transform - pos: 64.5,-48.5 - parent: 2 - - uid: 21950 - components: - - type: Transform - pos: 53.5,-35.5 - parent: 2 - - uid: 22024 - components: - - type: Transform - pos: 15.5,-67.5 - parent: 2 - - uid: 22025 - components: - - type: Transform - pos: 15.5,-74.5 - parent: 2 - - uid: 22026 - components: - - type: Transform - pos: 23.5,-74.5 - parent: 2 - - uid: 22027 - components: - - type: Transform - pos: 23.5,-67.5 - parent: 2 -- proto: SignSecureMedRed - entities: - - uid: 6826 - components: - - type: Transform - pos: 25.5,-5.5 - parent: 2 -- proto: SignSecurity - entities: - - uid: 5111 - components: - - type: Transform - pos: 0.5,22.5 - parent: 2 -- proto: SignServer - entities: - - uid: 21937 - components: - - type: Transform - pos: 71.5,-24.5 - parent: 2 -- proto: SignShipDock - entities: - - uid: 8354 - components: - - type: Transform - pos: -55.5,-0.5 - parent: 2 - - uid: 8355 - components: - - type: Transform - pos: -55.5,3.5 - parent: 2 -- proto: SignSmoking - entities: - - uid: 6825 - components: - - type: Transform - pos: 27.5,-14.5 - parent: 2 -- proto: SignSpace - entities: - - uid: 3616 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,-2.5 - parent: 2 - - uid: 3617 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,5.5 - parent: 2 - - uid: 5726 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,17.5 - parent: 2 - - uid: 6828 - components: - - type: Transform - pos: -5.5,-12.5 - parent: 2 - - uid: 21938 - components: - - type: Transform - pos: -10.5,40.5 - parent: 2 - - uid: 21948 - components: - - type: Transform - pos: 71.5,-33.5 - parent: 2 - - uid: 21951 - components: - - type: Transform - pos: -23.5,38.5 - parent: 2 - - uid: 21953 - components: - - type: Transform - pos: -57.5,-20.5 - parent: 2 - - uid: 21954 - components: - - type: Transform - pos: 68.5,20.5 - parent: 2 - - uid: 21991 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -68.5,-31.5 - parent: 2 - - uid: 22185 - components: - - type: Transform - pos: 20.5,-61.5 - parent: 2 -- proto: SignSurgery - entities: - - uid: 6886 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,3.5 - parent: 2 -- proto: SignTelecomms - entities: - - uid: 7586 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-35.5 - parent: 2 - - uid: 7591 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-35.5 - parent: 2 -- proto: SignToolStorage - entities: - - uid: 4404 - components: - - type: Transform - pos: 40.5,0.5 - parent: 2 -- proto: SignVault - entities: - - uid: 21949 - components: - - type: Transform - pos: 53.5,-34.5 - parent: 2 -- proto: SignVirology - entities: - - uid: 6829 - components: - - type: Transform - pos: 56.5,15.5 - parent: 2 -- proto: SignVox - entities: - - uid: 21377 - components: - - type: Transform - pos: -34.5,-1.5 - parent: 2 -- proto: SingularityGenerator - entities: - - uid: 2092 - components: - - type: Transform - pos: 4.5,-11.5 - parent: 2 - - uid: 3104 - components: - - type: Transform - pos: 0.5,0.5 - parent: 2 -- proto: Sink - entities: - - uid: 5948 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-29.5 - parent: 2 - - uid: 13488 - components: - - type: Transform - pos: 36.5,-22.5 - parent: 2 -- proto: SinkWide - entities: - - uid: 5258 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,45.5 - parent: 2 - - uid: 6755 - components: - - type: Transform - pos: -20.5,12.5 - parent: 2 - - uid: 8239 - components: - - type: Transform - pos: 13.5,26.5 - parent: 2 - - uid: 8240 - components: - - type: Transform - pos: 15.5,26.5 - parent: 2 - - uid: 9024 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,14.5 - parent: 2 - - uid: 14218 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,14.5 - parent: 2 - - uid: 16795 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,5.5 - parent: 2 -- proto: Skub - entities: - - uid: 17542 - components: - - type: Transform - pos: 85.054985,-7.3956304 - parent: 2 -- proto: SmartFridge - entities: - - uid: 5992 - components: - - type: Transform - pos: 44.5,10.5 - parent: 2 - - uid: 16772 - components: - - type: Transform - pos: -19.5,10.5 - parent: 2 -- proto: SMESBasic - entities: - - uid: 2095 - components: - - type: MetaData - name: Singularity SMES - - type: Transform - pos: 1.5,-17.5 - parent: 2 - - uid: 2096 - components: - - type: MetaData - name: Main SMES - - type: Transform - pos: -12.5,-17.5 - parent: 2 - - uid: 2097 - components: - - type: MetaData - name: Main SMES - - type: Transform - pos: -12.5,-14.5 - parent: 2 - - uid: 2098 - components: - - type: MetaData - name: Main SMES - - type: Transform - pos: -12.5,-15.5 - parent: 2 - - uid: 2099 - components: - - type: MetaData - name: Main SMES - - type: Transform - pos: -12.5,-16.5 - parent: 2 - - uid: 8097 - components: - - type: MetaData - name: South Solars SMES - - type: Transform - pos: -1.5,-37.5 - parent: 2 - - uid: 8098 - components: - - type: MetaData - name: South Solars SMES - - type: Transform - pos: -0.5,-37.5 - parent: 2 - - uid: 10575 - components: - - type: MetaData - name: Secure Command SMES - - type: Transform - pos: 54.5,-40.5 - parent: 2 - - uid: 15809 - components: - - type: MetaData - name: North Solars SMES - - type: Transform - pos: -28.5,34.5 - parent: 2 - - uid: 15810 - components: - - type: MetaData - name: North Solars SMES - - type: Transform - pos: -28.5,35.5 - parent: 2 - - uid: 20944 - components: - - type: MetaData - name: Rage Cage SMES - - type: Transform - pos: 88.5,-22.5 - parent: 2 - - uid: 22070 - components: - - type: MetaData - name: AI Core SMES - - type: Transform - pos: 23.5,-63.5 - parent: 2 -- proto: SodaDispenser - entities: - - uid: 2102 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,2.5 - parent: 2 - - uid: 2103 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,0.5 - parent: 2 - - uid: 16595 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,40.5 - parent: 2 -- proto: SolarPanel - entities: - - uid: 3207 - components: - - type: Transform - pos: 3.5,-52.5 - parent: 2 - - uid: 3279 - components: - - type: Transform - pos: 2.5,-48.5 - parent: 2 - - uid: 3281 - components: - - type: Transform - pos: 3.5,-48.5 - parent: 2 - - uid: 3295 - components: - - type: Transform - pos: 2.5,-52.5 - parent: 2 - - uid: 3297 - components: - - type: Transform - pos: 3.5,-50.5 - parent: 2 - - uid: 3323 - components: - - type: Transform - pos: 2.5,-50.5 - parent: 2 - - uid: 3324 - components: - - type: Transform - pos: -0.5,-50.5 - parent: 2 - - uid: 3669 - components: - - type: Transform - pos: -0.5,-48.5 - parent: 2 - - uid: 4999 - components: - - type: Transform - pos: -1.5,-48.5 - parent: 2 - - uid: 5000 - components: - - type: Transform - pos: -1.5,-50.5 - parent: 2 - - uid: 15083 - components: - - type: Transform - pos: -2.5,-48.5 - parent: 2 - - uid: 15474 - components: - - type: Transform - pos: -2.5,-50.5 - parent: 2 - - uid: 15475 - components: - - type: Transform - pos: -3.5,-48.5 - parent: 2 - - uid: 15476 - components: - - type: Transform - pos: -3.5,-50.5 - parent: 2 - - uid: 15477 - components: - - type: Transform - pos: -4.5,-50.5 - parent: 2 - - uid: 15478 - components: - - type: Transform - pos: -5.5,-50.5 - parent: 2 - - uid: 15479 - components: - - type: Transform - pos: -6.5,-50.5 - parent: 2 - - uid: 15480 - components: - - type: Transform - pos: -6.5,-48.5 - parent: 2 - - uid: 15481 - components: - - type: Transform - pos: -5.5,-48.5 - parent: 2 - - uid: 15482 - components: - - type: Transform - pos: -4.5,-48.5 - parent: 2 - - uid: 15483 - components: - - type: Transform - pos: -6.5,-46.5 - parent: 2 - - uid: 15484 - components: - - type: Transform - pos: -4.5,-46.5 - parent: 2 - - uid: 15485 - components: - - type: Transform - pos: -5.5,-46.5 - parent: 2 - - uid: 15486 - components: - - type: Transform - pos: -3.5,-46.5 - parent: 2 - - uid: 15487 - components: - - type: Transform - pos: -2.5,-46.5 - parent: 2 - - uid: 15488 - components: - - type: Transform - pos: -1.5,-46.5 - parent: 2 - - uid: 15489 - components: - - type: Transform - pos: -0.5,-46.5 - parent: 2 - - uid: 15490 - components: - - type: Transform - pos: -1.5,-44.5 - parent: 2 - - uid: 15491 - components: - - type: Transform - pos: -0.5,-44.5 - parent: 2 - - uid: 15492 - components: - - type: Transform - pos: -3.5,-44.5 - parent: 2 - - uid: 15493 - components: - - type: Transform - pos: -2.5,-44.5 - parent: 2 - - uid: 15494 - components: - - type: Transform - pos: -4.5,-44.5 - parent: 2 - - uid: 15495 - components: - - type: Transform - pos: -5.5,-44.5 - parent: 2 - - uid: 15496 - components: - - type: Transform - pos: -6.5,-44.5 - parent: 2 - - uid: 15497 - components: - - type: Transform - pos: -6.5,-52.5 - parent: 2 - - uid: 15498 - components: - - type: Transform - pos: -4.5,-52.5 - parent: 2 - - uid: 15499 - components: - - type: Transform - pos: -5.5,-52.5 - parent: 2 - - uid: 15500 - components: - - type: Transform - pos: -3.5,-52.5 - parent: 2 - - uid: 15501 - components: - - type: Transform - pos: -1.5,-52.5 - parent: 2 - - uid: 15502 - components: - - type: Transform - pos: -2.5,-52.5 - parent: 2 - - uid: 15503 - components: - - type: Transform - pos: -0.5,-52.5 - parent: 2 - - uid: 15504 - components: - - type: Transform - pos: -0.5,-54.5 - parent: 2 - - uid: 15505 - components: - - type: Transform - pos: -1.5,-54.5 - parent: 2 - - uid: 15506 - components: - - type: Transform - pos: -2.5,-54.5 - parent: 2 - - uid: 15507 - components: - - type: Transform - pos: -3.5,-54.5 - parent: 2 - - uid: 15508 - components: - - type: Transform - pos: -5.5,-54.5 - parent: 2 - - uid: 15509 - components: - - type: Transform - pos: -6.5,-54.5 - parent: 2 - - uid: 15510 - components: - - type: Transform - pos: -4.5,-54.5 - parent: 2 - - uid: 15533 - components: - - type: Transform - pos: 2.5,-46.5 - parent: 2 - - uid: 15534 - components: - - type: Transform - pos: 2.5,-44.5 - parent: 2 - - uid: 15570 - components: - - type: Transform - pos: 2.5,-54.5 - parent: 2 - - uid: 15571 - components: - - type: Transform - pos: 3.5,-54.5 - parent: 2 - - uid: 15693 - components: - - type: Transform - pos: -23.5,42.5 - parent: 2 - - uid: 15703 - components: - - type: Transform - pos: -28.5,48.5 - parent: 2 - - uid: 15704 - components: - - type: Transform - pos: -27.5,48.5 - parent: 2 - - uid: 15705 - components: - - type: Transform - pos: -25.5,48.5 - parent: 2 - - uid: 15706 - components: - - type: Transform - pos: -26.5,48.5 - parent: 2 - - uid: 15707 - components: - - type: Transform - pos: -24.5,48.5 - parent: 2 - - uid: 15708 - components: - - type: Transform - pos: -23.5,48.5 - parent: 2 - - uid: 15709 - components: - - type: Transform - pos: -20.5,48.5 - parent: 2 - - uid: 15710 - components: - - type: Transform - pos: -19.5,48.5 - parent: 2 - - uid: 15711 - components: - - type: Transform - pos: -19.5,46.5 - parent: 2 - - uid: 15712 - components: - - type: Transform - pos: -20.5,46.5 - parent: 2 - - uid: 15713 - components: - - type: Transform - pos: -20.5,44.5 - parent: 2 - - uid: 15714 - components: - - type: Transform - pos: -19.5,44.5 - parent: 2 - - uid: 15715 - components: - - type: Transform - pos: -19.5,42.5 - parent: 2 - - uid: 15716 - components: - - type: Transform - pos: -20.5,42.5 - parent: 2 - - uid: 15717 - components: - - type: Transform - pos: -24.5,42.5 - parent: 2 - - uid: 15718 - components: - - type: Transform - pos: -25.5,42.5 - parent: 2 - - uid: 15719 - components: - - type: Transform - pos: -26.5,42.5 - parent: 2 - - uid: 15720 - components: - - type: Transform - pos: -28.5,42.5 - parent: 2 - - uid: 15721 - components: - - type: Transform - pos: -28.5,44.5 - parent: 2 - - uid: 15722 - components: - - type: Transform - pos: -27.5,44.5 - parent: 2 - - uid: 15723 - components: - - type: Transform - pos: -26.5,44.5 - parent: 2 - - uid: 15724 - components: - - type: Transform - pos: -25.5,44.5 - parent: 2 - - uid: 15725 - components: - - type: Transform - pos: -24.5,44.5 - parent: 2 - - uid: 15726 - components: - - type: Transform - pos: -23.5,44.5 - parent: 2 - - uid: 15727 - components: - - type: Transform - pos: -27.5,42.5 - parent: 2 - - uid: 15729 - components: - - type: Transform - pos: -28.5,50.5 - parent: 2 - - uid: 15730 - components: - - type: Transform - pos: -27.5,50.5 - parent: 2 - - uid: 15731 - components: - - type: Transform - pos: -26.5,50.5 - parent: 2 - - uid: 15732 - components: - - type: Transform - pos: -25.5,50.5 - parent: 2 - - uid: 15733 - components: - - type: Transform - pos: -24.5,50.5 - parent: 2 - - uid: 15734 - components: - - type: Transform - pos: -23.5,50.5 - parent: 2 - - uid: 15735 - components: - - type: Transform - pos: -23.5,52.5 - parent: 2 - - uid: 15736 - components: - - type: Transform - pos: -24.5,52.5 - parent: 2 - - uid: 15737 - components: - - type: Transform - pos: -25.5,52.5 - parent: 2 - - uid: 15738 - components: - - type: Transform - pos: -27.5,52.5 - parent: 2 - - uid: 15739 - components: - - type: Transform - pos: -28.5,52.5 - parent: 2 - - uid: 15796 - components: - - type: Transform - pos: -23.5,46.5 - parent: 2 - - uid: 15797 - components: - - type: Transform - pos: -24.5,46.5 - parent: 2 - - uid: 15798 - components: - - type: Transform - pos: -26.5,46.5 - parent: 2 - - uid: 15799 - components: - - type: Transform - pos: -25.5,46.5 - parent: 2 - - uid: 15800 - components: - - type: Transform - pos: -27.5,46.5 - parent: 2 - - uid: 15801 - components: - - type: Transform - pos: -28.5,46.5 - parent: 2 - - uid: 15802 - components: - - type: Transform - pos: -26.5,52.5 - parent: 2 - - uid: 15803 - components: - - type: Transform - pos: -20.5,52.5 - parent: 2 - - uid: 15804 - components: - - type: Transform - pos: -19.5,52.5 - parent: 2 - - uid: 15806 - components: - - type: Transform - pos: -19.5,50.5 - parent: 2 - - uid: 15807 - components: - - type: Transform - pos: -20.5,50.5 - parent: 2 -- proto: SolarTracker - entities: - - uid: 15468 - components: - - type: Transform - pos: 1.5,-58.5 - parent: 2 - - uid: 15702 - components: - - type: Transform - pos: -22.5,55.5 - parent: 2 -- proto: SolidSecretDoor - entities: - - uid: 2339 - components: - - type: Transform - pos: -35.5,-42.5 - parent: 2 -- proto: SpaceCash100 - entities: - - uid: 2104 - components: - - type: Transform - pos: -19.177664,-3.0928874 - parent: 2 - - uid: 2105 - components: - - type: Transform - pos: -19.19601,-3.3864217 - parent: 2 - - uid: 16651 - components: - - type: Transform - parent: 16650 - - type: Stack - count: 500 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: SpaceHeater - entities: - - uid: 21477 - components: - - type: Transform - pos: 21.5,-17.5 - parent: 2 - - uid: 21478 - components: - - type: Transform - pos: 21.5,-16.5 - parent: 2 -- proto: SpacemenFigureSpawner - entities: - - uid: 15870 - components: - - type: Transform - pos: -17.5,-8.5 - parent: 2 -- proto: SpawnMechRipley - entities: - - uid: 22481 - components: - - type: Transform - pos: 27.5,8.5 - parent: 2 -- proto: SpawnMobAlexander - entities: - - uid: 21078 - components: - - type: Transform - pos: -21.5,13.5 - parent: 2 -- proto: SpawnMobButterfly - entities: - - uid: 13099 - components: - - type: Transform - pos: -47.5,-6.5 - parent: 2 - - uid: 13740 - components: - - type: Transform - pos: -49.5,-6.5 - parent: 2 - - uid: 13742 - components: - - type: Transform - pos: -45.5,-8.5 - parent: 2 - - uid: 14411 - components: - - type: Transform - pos: -48.5,-8.5 - parent: 2 - - uid: 16201 - components: - - type: Transform - pos: -46.5,-7.5 - parent: 2 -- proto: SpawnMobCatException - entities: - - uid: 6742 - components: - - type: Transform - pos: 59.5,10.5 - parent: 2 -- proto: SpawnMobCatSpace - entities: - - uid: 17293 - components: - - type: Transform - pos: 67.5,-53.5 - parent: 2 -- proto: SpawnMobCorgi - entities: - - uid: 2107 - components: - - type: Transform - pos: 44.5,-25.5 - parent: 2 -- proto: SpawnMobCrabAtmos - entities: - - uid: 14868 - components: - - type: Transform - pos: 19.5,-11.5 - parent: 2 -- proto: SpawnMobFoxRenault - entities: - - uid: 4579 - components: - - type: Transform - pos: 41.5,-30.5 - parent: 2 -- proto: SpawnMobMcGriff - entities: - - uid: 4990 - components: - - type: Transform - pos: 1.5,23.5 - parent: 2 -- proto: SpawnMobMedibot - entities: - - uid: 6049 - components: - - type: Transform - pos: 42.5,8.5 - parent: 2 -- proto: SpawnMobMonkeyPunpun - entities: - - uid: 12921 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,6.5 - parent: 2 -- proto: SpawnMobPossumMorty - entities: - - uid: 12918 - components: - - type: Transform - pos: 52.5,-10.5 - parent: 2 -- proto: SpawnMobRaccoonMorticia - entities: - - uid: 5733 - components: - - type: Transform - pos: 37.5,15.5 - parent: 2 -- proto: SpawnMobShiva - entities: - - uid: 5701 - components: - - type: Transform - pos: -12.5,34.5 - parent: 2 -- proto: SpawnMobSlothPaperwork - entities: - - uid: 2109 - components: - - type: Transform - pos: -19.5,-18.5 - parent: 2 -- proto: SpawnMobSmile - entities: - - uid: 7422 - components: - - type: Transform - pos: 68.5,-22.5 - parent: 2 -- proto: SpawnPointAtmos - entities: - - uid: 2110 - components: - - type: Transform - pos: 10.5,-17.5 - parent: 2 - - uid: 2111 - components: - - type: Transform - pos: 11.5,-16.5 - parent: 2 - - uid: 2112 - components: - - type: Transform - pos: 12.5,-17.5 - parent: 2 -- proto: SpawnPointBartender - entities: - - uid: 2113 - components: - - type: Transform - pos: -14.5,7.5 - parent: 2 - - uid: 2114 - components: - - type: Transform - pos: -14.5,6.5 - parent: 2 -- proto: SpawnPointBorg - entities: - - uid: 13722 - components: - - type: Transform - pos: 63.5,-23.5 - parent: 2 - - uid: 13723 - components: - - type: Transform - pos: 64.5,-23.5 - parent: 2 - - uid: 13724 - components: - - type: Transform - pos: 65.5,-23.5 - parent: 2 - - uid: 13725 - components: - - type: Transform - pos: 65.5,-24.5 - parent: 2 - - uid: 13726 - components: - - type: Transform - pos: 64.5,-24.5 - parent: 2 - - uid: 13727 - components: - - type: Transform - pos: 63.5,-24.5 - parent: 2 -- proto: SpawnPointBotanist - entities: - - uid: 14252 - components: - - type: Transform - pos: -37.5,12.5 - parent: 2 - - uid: 14255 - components: - - type: Transform - pos: -37.5,13.5 - parent: 2 -- proto: SpawnPointBoxer - entities: - - uid: 2117 - components: - - type: Transform - pos: -32.5,-33.5 - parent: 2 - - uid: 2118 - components: - - type: Transform - pos: -33.5,-33.5 - parent: 2 - - uid: 3911 - components: - - type: Transform - pos: -35.5,-27.5 - parent: 2 - - uid: 3912 - components: - - type: Transform - pos: -32.5,-30.5 - parent: 2 -- proto: SpawnPointCaptain - entities: - - uid: 4578 - components: - - type: Transform - pos: 41.5,-28.5 - parent: 2 -- proto: SpawnPointCargoTechnician - entities: - - uid: 5736 - components: - - type: Transform - pos: 28.5,18.5 - parent: 2 - - uid: 5737 - components: - - type: Transform - pos: 26.5,18.5 - parent: 2 - - uid: 5738 - components: - - type: Transform - pos: 25.5,18.5 - parent: 2 - - uid: 5740 - components: - - type: Transform - pos: 29.5,18.5 - parent: 2 -- proto: SpawnPointChaplain - entities: - - uid: 15872 - components: - - type: Transform - pos: -31.5,-35.5 - parent: 2 -- proto: SpawnPointChef - entities: - - uid: 16118 - components: - - type: Transform - pos: -20.5,12.5 - parent: 2 -- proto: SpawnPointChemist - entities: - - uid: 6047 - components: - - type: Transform - pos: 42.5,12.5 - parent: 2 - - uid: 6048 - components: - - type: Transform - pos: 46.5,12.5 - parent: 2 -- proto: SpawnPointChiefEngineer - entities: - - uid: 2120 - components: - - type: Transform - pos: 3.5,-26.5 - parent: 2 -- proto: SpawnPointChiefMedicalOfficer - entities: - - uid: 6723 - components: - - type: Transform - pos: 55.5,11.5 - parent: 2 -- proto: SpawnPointClown - entities: - - uid: 3910 - components: - - type: Transform - pos: -28.5,-19.5 - parent: 2 -- proto: SpawnPointDetective - entities: - - uid: 10272 - components: - - type: Transform - pos: -29.5,26.5 - parent: 2 -- proto: SpawnPointHeadOfPersonnel - entities: - - uid: 2121 - components: - - type: Transform - pos: 36.5,-25.5 - parent: 2 -- proto: SpawnPointHeadOfSecurity - entities: - - uid: 5674 - components: - - type: Transform - pos: -17.5,32.5 - parent: 2 -- proto: SpawnPointJanitor - entities: - - uid: 2122 - components: - - type: Transform - pos: -17.5,-26.5 - parent: 2 - - uid: 2123 - components: - - type: Transform - pos: -16.5,-26.5 - parent: 2 - - uid: 22467 - components: - - type: Transform - pos: -18.5,-26.5 - parent: 2 -- proto: SpawnPointLatejoin - entities: - - uid: 5022 - components: - - type: Transform - pos: -47.5,-46.5 - parent: 2 -- proto: SpawnPointLawyer - entities: - - uid: 5968 - components: - - type: Transform - pos: -48.5,-14.5 - parent: 2 -- proto: SpawnPointLibrarian - entities: - - uid: 15871 - components: - - type: Transform - pos: -18.5,-9.5 - parent: 2 -- proto: SpawnPointMedicalDoctor - entities: - - uid: 6720 - components: - - type: Transform - pos: 55.5,3.5 - parent: 2 - - uid: 6721 - components: - - type: Transform - pos: 56.5,3.5 - parent: 2 - - uid: 6722 - components: - - type: Transform - pos: 57.5,3.5 - parent: 2 -- proto: SpawnPointMedicalIntern - entities: - - uid: 6724 - components: - - type: Transform - pos: 56.5,2.5 - parent: 2 - - uid: 6725 - components: - - type: Transform - pos: 57.5,2.5 - parent: 2 -- proto: SpawnPointMime - entities: - - uid: 3909 - components: - - type: Transform - pos: -33.5,-19.5 - parent: 2 - - uid: 3913 - components: - - type: Transform - pos: -33.5,6.5 - parent: 2 -- proto: SpawnPointMusician - entities: - - uid: 2124 - components: - - type: Transform - pos: -24.5,1.5 - parent: 2 - - uid: 3908 - components: - - type: Transform - pos: -38.5,-19.5 - parent: 2 -- proto: SpawnPointObserver - entities: - - uid: 21965 - components: - - type: Transform - pos: -33.5,0.5 - parent: 2 -- proto: SpawnPointParamedic - entities: - - uid: 6718 - components: - - type: Transform - pos: 55.5,7.5 - parent: 2 - - uid: 6719 - components: - - type: Transform - pos: 56.5,7.5 - parent: 2 -- proto: SpawnPointPassenger - entities: - - uid: 15639 - components: - - type: Transform - pos: -36.5,-9.5 - parent: 2 - - uid: 15641 - components: - - type: Transform - pos: -28.5,-9.5 - parent: 2 - - uid: 15642 - components: - - type: Transform - pos: -35.5,-13.5 - parent: 2 - - uid: 15643 - components: - - type: Transform - pos: -35.5,-14.5 - parent: 2 - - uid: 15644 - components: - - type: Transform - pos: -32.5,-13.5 - parent: 2 - - uid: 15645 - components: - - type: Transform - pos: -32.5,-14.5 - parent: 2 - - uid: 15646 - components: - - type: Transform - pos: -29.5,-13.5 - parent: 2 - - uid: 15647 - components: - - type: Transform - pos: -29.5,-14.5 - parent: 2 -- proto: SpawnPointQuartermaster - entities: - - uid: 5693 - components: - - type: Transform - pos: 37.5,13.5 - parent: 2 -- proto: SpawnPointReporter - entities: - - uid: 5966 - components: - - type: Transform - pos: -55.5,-28.5 - parent: 2 - - uid: 5967 - components: - - type: Transform - pos: -54.5,-28.5 - parent: 2 -- proto: SpawnPointResearchAssistant - entities: - - uid: 23342 - components: - - type: Transform - pos: 69.5,-12.5 - parent: 2 -- proto: SpawnPointResearchDirector - entities: - - uid: 7450 - components: - - type: Transform - pos: 71.5,-22.5 - parent: 2 -- proto: SpawnPointSalvageSpecialist - entities: - - uid: 5704 - components: - - type: Transform - pos: 35.5,19.5 - parent: 2 - - uid: 5715 - components: - - type: Transform - pos: 35.5,20.5 - parent: 2 - - uid: 5735 - components: - - type: Transform - pos: 35.5,21.5 - parent: 2 -- proto: SpawnPointScientist - entities: - - uid: 7447 - components: - - type: Transform - pos: 69.5,-13.5 - parent: 2 - - uid: 7449 - components: - - type: Transform - pos: 68.5,-13.5 - parent: 2 - - uid: 20553 - components: - - type: Transform - pos: 70.5,-13.5 - parent: 2 -- proto: SpawnPointSecurityCadet - entities: - - uid: 5675 - components: - - type: Transform - pos: -6.5,33.5 - parent: 2 -- proto: SpawnPointSecurityOfficer - entities: - - uid: 5676 - components: - - type: Transform - pos: -9.5,33.5 - parent: 2 - - uid: 5677 - components: - - type: Transform - pos: -8.5,33.5 - parent: 2 - - uid: 5678 - components: - - type: Transform - pos: -7.5,33.5 - parent: 2 -- proto: SpawnPointServiceWorker - entities: - - uid: 2126 - components: - - type: Transform - pos: -32.5,0.5 - parent: 2 - - uid: 2127 - components: - - type: Transform - pos: -34.5,0.5 - parent: 2 - - uid: 2128 - components: - - type: Transform - pos: -36.5,0.5 - parent: 2 - - uid: 2129 - components: - - type: Transform - pos: -30.5,0.5 - parent: 2 -- proto: SpawnPointStationEngineer - entities: - - uid: 2130 - components: - - type: Transform - pos: -9.5,-18.5 - parent: 2 - - uid: 2131 - components: - - type: Transform - pos: -8.5,-18.5 - parent: 2 - - uid: 2132 - components: - - type: Transform - pos: -7.5,-18.5 - parent: 2 -- proto: SpawnPointTechnicalAssistant - entities: - - uid: 2133 - components: - - type: Transform - pos: 1.5,-22.5 - parent: 2 - - uid: 2134 - components: - - type: Transform - pos: 1.5,-23.5 - parent: 2 -- proto: SpawnPointWarden - entities: - - uid: 5673 - components: - - type: Transform - pos: 2.5,24.5 - parent: 2 -- proto: Spear - entities: - - uid: 20997 - components: - - type: Transform - pos: 91.5888,-20.49667 - parent: 2 - - uid: 20998 - components: - - type: Transform - pos: 91.44817,-20.40292 - parent: 2 -- proto: SpiderWeb - entities: - - uid: 2136 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,14.5 - parent: 2 -- proto: SprayBottle - entities: - - uid: 8194 - components: - - type: Transform - pos: -13.281918,-24.159872 - parent: 2 - - uid: 8430 - components: - - type: Transform - pos: -13.465376,-24.172104 - parent: 2 -- proto: SprayBottleWater - entities: - - uid: 6926 - components: - - type: Transform - pos: 58.459965,18.571264 - parent: 2 -- proto: StairDark - entities: - - uid: 3105 - components: - - type: Transform - pos: 26.5,4.5 - parent: 2 - - uid: 3106 - components: - - type: Transform - pos: 25.5,4.5 - parent: 2 - - uid: 3107 - components: - - type: Transform - pos: 24.5,4.5 - parent: 2 -- proto: Stairs - entities: - - uid: 2682 - components: - - type: Transform - pos: -46.5,-45.5 - parent: 2 - - uid: 2684 - components: - - type: Transform - pos: -47.5,-45.5 - parent: 2 - - uid: 2687 - components: - - type: Transform - pos: -48.5,-45.5 - parent: 2 - - uid: 3741 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,2.5 - parent: 2 - - uid: 3742 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,1.5 - parent: 2 - - uid: 3743 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,0.5 - parent: 2 - - uid: 3829 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-28.5 - parent: 2 - - uid: 3830 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-27.5 - parent: 2 - - uid: 5932 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-17.5 - parent: 2 - - uid: 5933 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-17.5 - parent: 2 - - uid: 5934 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-17.5 - parent: 2 - - uid: 5935 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,21.5 - parent: 2 - - uid: 5936 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,20.5 - parent: 2 - - uid: 5937 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,19.5 - parent: 2 - - uid: 5938 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,21.5 - parent: 2 - - uid: 5939 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,20.5 - parent: 2 - - uid: 5940 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,19.5 - parent: 2 - - uid: 5941 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,3.5 - parent: 2 - - uid: 5943 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,4.5 - parent: 2 - - uid: 5944 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,2.5 - parent: 2 - - uid: 7119 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-22.5 - parent: 2 - - uid: 7120 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-23.5 - parent: 2 - - uid: 8464 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-21.5 - parent: 2 - - uid: 21884 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-21.5 - parent: 2 - - uid: 21885 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-21.5 - parent: 2 - - uid: 21886 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-21.5 - parent: 2 -- proto: StairStage - entities: - - uid: 2150 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,4.5 - parent: 2 - - uid: 2151 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,4.5 - parent: 2 -- proto: StairWood - entities: - - uid: 8154 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-20.5 - parent: 2 - - uid: 8963 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-0.5 - parent: 2 - - uid: 13333 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,0.5 - parent: 2 - - uid: 14396 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,3.5 - parent: 2 - - uid: 14397 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,2.5 - parent: 2 - - uid: 15046 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,1.5 - parent: 2 - - uid: 21558 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-20.5 - parent: 2 -- proto: StasisBed - entities: - - uid: 6583 - components: - - type: Transform - pos: 55.5,-0.5 - parent: 2 -- proto: StationAiUploadComputer - entities: - - uid: 20815 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-53.5 - parent: 2 -- proto: StationAnchor - entities: - - uid: 14912 - components: - - type: Transform - pos: 62.5,-35.5 - parent: 2 -- proto: StationBeaconPart - entities: - - uid: 21365 - components: - - type: Transform - pos: 30.702707,-1.6835423 - parent: 2 - - uid: 21366 - components: - - type: Transform - pos: 30.441788,-1.871078 - parent: 2 - - uid: 21367 - components: - - type: Transform - pos: 30.572248,-1.7732333 - parent: 2 -- proto: StationEfficiencyCircuitBoard - entities: - - uid: 21076 - components: - - type: Transform - pos: 14.458807,-65.50417 - parent: 2 -- proto: StationMap - entities: - - uid: 7556 - components: - - type: Transform - pos: 48.5,-17.5 - parent: 2 - - uid: 13592 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-23.5 - parent: 2 - - uid: 13593 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,18.5 - parent: 2 - - uid: 13594 - components: - - type: Transform - pos: 41.5,6.5 - parent: 2 - - uid: 13595 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-34.5 - parent: 2 - - uid: 20200 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-48.5 - parent: 2 - - uid: 20438 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-19.5 - parent: 2 - - uid: 20439 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-28.5 - parent: 2 - - uid: 20440 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,-14.5 - parent: 2 - - uid: 20441 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,14.5 - parent: 2 - - uid: 20442 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,32.5 - parent: 2 - - uid: 20443 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,9.5 - parent: 2 - - uid: 21889 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-48.5 - parent: 2 - - uid: 22399 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-53.5 - parent: 2 -- proto: StoolBar - entities: - - uid: 2152 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,3.5 - parent: 2 - - uid: 2153 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,2.5 - parent: 2 - - uid: 2154 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,1.5 - parent: 2 - - uid: 2155 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,0.5 - parent: 2 - - uid: 2156 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-0.5 - parent: 2 - - uid: 14965 - components: - - type: Transform - pos: -35.5,24.5 - parent: 2 - - uid: 14966 - components: - - type: Transform - pos: -36.5,24.5 - parent: 2 - - uid: 15024 - components: - - type: Transform - pos: -34.5,24.5 - parent: 2 - - uid: 16635 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,34.5 - parent: 2 - - uid: 16636 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,34.5 - parent: 2 - - uid: 16637 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,34.5 - parent: 2 - - uid: 16918 - components: - - type: Transform - pos: -37.5,24.5 - parent: 2 -- proto: StorageCanister - entities: - - uid: 2157 - components: - - type: Transform - pos: -1.5,-19.5 - parent: 2 - - uid: 2158 - components: - - type: Transform - pos: -0.5,-19.5 - parent: 2 - - uid: 2159 - components: - - type: Transform - pos: -0.5,-20.5 - parent: 2 - - uid: 2160 - components: - - type: Transform - pos: -1.5,-20.5 - parent: 2 - - uid: 2161 - components: - - type: Transform - pos: 26.5,-2.5 - parent: 2 - - uid: 2162 - components: - - type: Transform - pos: 25.5,-17.5 - parent: 2 - - uid: 2163 - components: - - type: Transform - pos: 25.5,-16.5 - parent: 2 - - uid: 2164 - components: - - type: Transform - pos: 25.5,-18.5 - parent: 2 - - uid: 7394 - components: - - type: Transform - pos: 73.5,-11.5 - parent: 2 - - uid: 7395 - components: - - type: Transform - pos: 73.5,-12.5 - parent: 2 - - uid: 14854 - components: - - type: Transform - pos: -16.5,17.5 - parent: 2 -- proto: SubstationBasic - entities: - - uid: 2165 - components: - - type: MetaData - name: Singularity substation - - type: Transform - pos: 2.5,-17.5 - parent: 2 - - uid: 2166 - components: - - type: MetaData - name: Central Substation - - type: Transform - pos: -3.5,15.5 - parent: 2 - - uid: 2167 - components: - - type: MetaData - name: East Substation - - type: Transform - pos: 37.5,-14.5 - parent: 2 - - uid: 3700 - components: - - type: MetaData - name: Evacuation Substation - - type: Transform - pos: -52.5,10.5 - parent: 2 - - uid: 5971 - components: - - type: MetaData - name: Cargo Substation - - type: Transform - pos: 38.5,6.5 - parent: 2 - - uid: 6135 - components: - - type: MetaData - name: Command Substation - - type: Transform - pos: 51.5,-28.5 - parent: 2 - - uid: 6983 - components: - - type: MetaData - name: South-West Substation - - type: Transform - pos: -37.5,-37.5 - parent: 2 - - uid: 8524 - components: - - type: MetaData - name: Arrivals Substation - - type: Transform - pos: -36.5,-53.5 - parent: 2 - - uid: 9108 - components: - - type: MetaData - name: Science Substation - - type: Transform - pos: 61.5,-32.5 - parent: 2 - - uid: 9117 - components: - - type: MetaData - name: Medical Substation - - type: Transform - pos: 65.5,10.5 - parent: 2 - - uid: 9196 - components: - - type: MetaData - name: Security Substation - - type: Transform - pos: -22.5,35.5 - parent: 2 - - uid: 9203 - components: - - type: MetaData - name: South Substation - - type: Transform - pos: 14.5,-38.5 - parent: 2 - - uid: 9212 - components: - - type: MetaData - name: West Substation - - type: Transform - pos: -61.5,-20.5 - parent: 2 - - uid: 9275 - components: - - type: MetaData - name: Engineering substation - - type: Transform - pos: -0.5,-17.5 - parent: 2 - - uid: 10576 - components: - - type: MetaData - name: Secure Command Substation - - type: Transform - pos: 54.5,-41.5 - parent: 2 - - uid: 17231 - components: - - type: MetaData - name: Outpost Substation - - type: Transform - pos: 66.5,-49.5 - parent: 2 - - uid: 20937 - components: - - type: MetaData - name: Rage Cage Substation - - type: Transform - pos: 89.5,-22.5 - parent: 2 - - uid: 22069 - components: - - type: MetaData - name: AI Core substation - - type: Transform - pos: 24.5,-63.5 - parent: 2 -- proto: SubstationMachineCircuitboard - entities: - - uid: 5879 - components: - - type: Transform - pos: 54.525455,-38.59651 - parent: 2 -- proto: SuitStorageAtmos - entities: - - uid: 2168 - components: - - type: Transform - pos: 10.5,-15.5 - parent: 2 - - uid: 2169 - components: - - type: Transform - pos: 11.5,-15.5 - parent: 2 - - uid: 2170 - components: - - type: Transform - pos: 12.5,-15.5 - parent: 2 -- proto: SuitStorageCaptain - entities: - - uid: 12703 - components: - - type: Transform - pos: 43.5,-27.5 - parent: 2 -- proto: SuitStorageCE - entities: - - uid: 2171 - components: - - type: Transform - pos: 0.5,-25.5 - parent: 2 -- proto: SuitStorageCMO - entities: - - uid: 6736 - components: - - type: Transform - pos: 56.5,12.5 - parent: 2 -- proto: SuitStorageEngi - entities: - - uid: 2172 - components: - - type: Transform - pos: -4.5,-19.5 - parent: 2 - - uid: 2173 - components: - - type: Transform - pos: -5.5,-19.5 - parent: 2 - - uid: 2174 - components: - - type: Transform - pos: -3.5,-19.5 - parent: 2 - - uid: 8113 - components: - - type: Transform - pos: -5.5,-33.5 - parent: 2 - - uid: 8114 - components: - - type: Transform - pos: -4.5,-33.5 - parent: 2 -- proto: SuitStorageEVA - entities: - - uid: 7606 - components: - - type: Transform - pos: 25.5,-35.5 - parent: 2 - - uid: 7607 - components: - - type: Transform - pos: 23.5,-35.5 - parent: 2 - - uid: 7608 - components: - - type: Transform - pos: 24.5,-35.5 - parent: 2 - - uid: 7609 - components: - - type: Transform - pos: 23.5,-38.5 - parent: 2 - - uid: 7610 - components: - - type: Transform - pos: 24.5,-38.5 - parent: 2 - - uid: 7611 - components: - - type: Transform - pos: 25.5,-38.5 - parent: 2 -- proto: SuitStorageEVAEmergency - entities: - - uid: 7081 - components: - - type: Transform - pos: 57.5,-0.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: SuitStorageEVAPrisoner - entities: - - uid: 8190 - components: - - type: Transform - pos: -2.5,40.5 - parent: 2 - - uid: 8191 - components: - - type: Transform - pos: -0.5,40.5 - parent: 2 -- proto: SuitStorageHOS - entities: - - uid: 5034 - components: - - type: Transform - pos: -11.5,34.5 - parent: 2 -- proto: SuitStorageRD - entities: - - uid: 7425 - components: - - type: Transform - pos: 71.5,-25.5 - parent: 2 -- proto: SuitStorageSec - entities: - - uid: 1966 - components: - - type: Transform - pos: 5.5,31.5 - parent: 2 - - uid: 1967 - components: - - type: Transform - pos: 4.5,31.5 - parent: 2 - - uid: 5041 - components: - - type: Transform - pos: 7.5,32.5 - parent: 2 - - uid: 5042 - components: - - type: Transform - pos: 7.5,31.5 - parent: 2 -- proto: SuitStorageWarden - entities: - - uid: 4956 - components: - - type: Transform - pos: 5.5,23.5 - parent: 2 -- proto: SurveillanceCameraCommand - entities: - - uid: 5889 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-39.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Gravity - - uid: 8964 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-37.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: EVA storage - - uid: 8965 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-43.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Telecommunications - - uid: 8968 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-44.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: High security mainframe - - uid: 8969 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-46.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Camera routers - - uid: 8970 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-38.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Connective hallway - - uid: 8971 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-34.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: West bridge - - uid: 8972 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-34.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: East bridge - - uid: 8975 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-23.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: West bridge entrance - - uid: 8976 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-23.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: East bridge entrance - - uid: 8977 - components: - - type: Transform - pos: 41.5,-25.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Head of Personel's office - - uid: 8979 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-29.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: North east bridge - - uid: 8980 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-28.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: North west bridge - - uid: 8981 - components: - - type: Transform - pos: 25.5,-33.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Conference room - - uid: 8984 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-32.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Vault - - uid: 15592 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-46.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Secure board room - - uid: 16967 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,-32.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: High security - - uid: 22356 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-51.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI core entrance - - uid: 22358 - components: - - type: Transform - pos: 22.5,-53.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI upload room - - uid: 22359 - components: - - type: Transform - pos: 18.5,-65.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI core lobby - - uid: 22360 - components: - - type: Transform - pos: 19.5,-73.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI core mainframe - - uid: 22361 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-74.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: East AI core mainframe - - uid: 22362 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-74.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: West AI core mainframe - - uid: 22363 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-48.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: High security mainframe hallway - - uid: 22364 - components: - - type: Transform - pos: 14.5,-65.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI core break room - - uid: 22365 - components: - - type: Transform - pos: 23.5,-65.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI core power generation - - uid: 22382 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-32.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: North bridge - - uid: 22473 - components: - - type: Transform - pos: 18.5,-60.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: External AI core -- proto: SurveillanceCameraEngineering - entities: - - uid: 6780 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-28.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Command substation - - uid: 8010 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,4.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: North west outer singularity - - uid: 8945 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-13.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: SMES - - uid: 8946 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-18.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Locker bay - - uid: 8947 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-12.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Particle accelerator - - uid: 8948 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-13.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Singularity storage - - uid: 8949 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-20.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Break room - - uid: 8950 - components: - - type: Transform - pos: -4.5,-23.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Central hallway - - uid: 8952 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-25.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Front desk - - uid: 8953 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-25.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Chief Engineer's office - - uid: 8954 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-25.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Chief Engineer's room - - uid: 8955 - components: - - type: Transform - pos: 13.5,-22.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos-Engineering connection - - uid: 8956 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-25.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Antimatter engine - - uid: 8958 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-16.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmospherics supply bay - - uid: 8959 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-9.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: East atmospherics - - uid: 8960 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-34.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Spare storage - - uid: 8961 - components: - - type: Transform - pos: 2.5,-37.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: South solars - - uid: 8962 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-39.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Board room - - uid: 8994 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-15.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: East substation - - uid: 8995 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,7.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Cargo substation - - uid: 8996 - components: - - type: Transform - pos: -2.5,14.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Central substation - - uid: 8997 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,10.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Evacuation substation - - uid: 9036 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-0.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Drone room - - uid: 10655 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,4.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: North east outer singularity - - uid: 10657 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,6.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: North inner singularity - - uid: 10659 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-3.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: South west outer singularity - - uid: 10660 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-3.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: South east outer singularity - - uid: 18066 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-22.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: West central hallway - - uid: 18068 - components: - - type: Transform - pos: 18.5,-22.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmospheric's front desk - - uid: 19436 - components: - - type: Transform - pos: 15.5,-38.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: South substation - - uid: 20205 - components: - - type: Transform - pos: -38.5,-37.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: South west substation - - uid: 20206 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-53.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Arrivals Substation - - uid: 20207 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-31.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Science substation - - uid: 20208 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,10.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Medical substation - - uid: 20209 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,34.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Security substation - - uid: 20210 - components: - - type: Transform - pos: -26.5,34.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: North solars - - uid: 20211 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,-19.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: West substation - - uid: 22374 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,0.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: West inner singularity - - uid: 22375 - components: - - type: Transform - pos: 0.5,-5.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: South inner singularity - - uid: 22376 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,0.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: East inner singularity - - uid: 22377 - components: - - type: Transform - pos: 34.5,-16.5 - parent: 2 - - uid: 22378 - components: - - type: Transform - pos: 18.5,-18.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: South atmospherics - - uid: 22379 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-9.5 + pos: -14.5,22.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: West atmospherics - - uid: 22380 + - uid: 5707 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-8.5 + pos: -15.5,22.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: North atmospherics - - uid: 22381 + - uid: 5708 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-11.5 + pos: -6.5,22.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmospherics blast chamber - - uid: 22405 + - uid: 5710 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,38.5 + pos: -7.5,22.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Shuttle preperations room - - uid: 22497 + - uid: 5712 components: - type: Transform - pos: 65.5,-36.5 + pos: -9.5,22.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Station anchor -- proto: SurveillanceCameraGeneral - entities: - - uid: 8420 + - uid: 5713 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-56.5 + pos: -10.5,22.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: South west arrivals - - uid: 9037 + - uid: 5731 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,25.5 + pos: -11.5,22.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Bathroom - - uid: 9038 + - uid: 5755 components: - type: Transform - pos: 38.5,-4.5 + pos: -5.5,30.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Tool room - - uid: 9039 + - uid: 5903 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-26.5 + pos: -3.5,32.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Engineering front - - uid: 9044 + - uid: 6030 components: - type: Transform - pos: -30.5,-15.5 + pos: -3.5,33.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Dorms hallway - - uid: 9047 + - uid: 6031 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-20.5 + pos: -8.5,30.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: North lounge - - uid: 9048 + - uid: 6040 components: - type: Transform - pos: -44.5,-31.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: South lounge - - uid: 9049 + pos: -11.5,30.5 + parent: 2 + - uid: 6042 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,-27.5 + pos: 1.5,54.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: West lounge - - uid: 9050 + - uid: 6059 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,-42.5 + pos: -0.5,54.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Arrivals connective hallway - - uid: 9051 + - uid: 6099 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-50.5 + pos: -2.5,54.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: East arrivals - - uid: 9052 + - uid: 6103 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,-50.5 + pos: -4.5,44.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: West arrivals - - uid: 9053 + - uid: 6113 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-56.5 + pos: -0.5,49.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: South east arrivals - - uid: 9055 + - uid: 6122 components: - type: Transform - pos: -56.5,-65.5 + pos: -3.5,49.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: South west arrivals 2 - - uid: 9056 + - uid: 6123 components: - type: Transform - pos: -42.5,-47.5 + pos: 0.5,49.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: North arrivals - - uid: 9057 + - uid: 6130 components: - type: Transform - pos: -33.5,-33.5 + pos: -14.5,42.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: South boxing arena - - uid: 9058 + - uid: 6131 components: - type: Transform - pos: -35.5,-4.5 + pos: -15.5,42.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Front cafeteria - - uid: 9059 + - uid: 6132 components: - type: Transform - pos: -28.5,-4.5 + pos: -17.5,40.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Back cafeteria - - uid: 9060 + - uid: 6133 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,9.5 + pos: -17.5,39.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Kitchen exterior - - uid: 9061 + - uid: 6134 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-7.5 + pos: -9.5,41.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Dorms-cafeteria hallway - - uid: 9062 + - uid: 6143 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-0.5 + pos: -22.5,39.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Cafeteria entrance - - uid: 9063 + - uid: 6148 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,6.5 + pos: -28.5,39.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: North evacuation - - uid: 9064 + - uid: 6178 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,6.5 + pos: -25.5,39.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: North evacuation 2 - - uid: 9065 + - uid: 6179 components: - type: Transform - pos: -51.5,-3.5 + pos: -26.5,39.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: South evacuation - - uid: 9066 + - uid: 6180 components: - type: Transform - pos: -43.5,-3.5 + pos: -27.5,39.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: South evacuation 2 - - uid: 9067 + - uid: 6181 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,20.5 + pos: -40.5,29.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Small cafeteria - - uid: 9068 + - uid: 6182 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,21.5 + pos: -40.5,28.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Security hallway - - uid: 9069 + - uid: 6183 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,21.5 + pos: -38.5,30.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Security front - - uid: 9070 + - uid: 6184 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,21.5 + pos: -40.5,27.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: East security hallway - - uid: 9071 + - uid: 6230 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,18.5 + pos: 24.5,26.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Exterior loading bay - - uid: 9072 + - uid: 6231 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,9.5 + pos: 21.5,22.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Cargo hallway - - uid: 9073 + - uid: 6232 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,4.5 + pos: -37.5,30.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: South cargo hallway - - uid: 9074 + - uid: 6233 components: - type: Transform - pos: 27.5,2.5 + pos: 20.5,22.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Exterior secure storage - - uid: 9075 + - uid: 6234 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,4.5 + pos: 30.5,25.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Medical-cargo hallway - - uid: 9076 + - uid: 6235 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-4.5 + pos: -34.5,30.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Exterior tool room - - uid: 9077 + - uid: 6236 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,4.5 + pos: -35.5,30.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Medical front - - uid: 9079 + - uid: 6237 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-16.5 + pos: -29.5,-3.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: North exterior bridge - - uid: 9080 + - uid: 6269 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-18.5 + pos: -29.5,-2.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: East exterior bridge - - uid: 9081 + - uid: 6270 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-18.5 + pos: -55.5,2.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: West exterior bridge - - uid: 9082 + - uid: 6271 components: - type: Transform - pos: 60.5,-20.5 + pos: -57.5,-0.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Science front - - uid: 9083 + - uid: 6272 components: - type: Transform - pos: 54.5,-23.5 + pos: -56.5,-0.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Exterior science - - uid: 9084 + - uid: 6273 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-21.5 + pos: -56.5,5.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Atmos-bridge hallway - - uid: 9085 + - uid: 6274 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-24.5 + pos: -57.5,5.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Atmospherics front - - uid: 9086 + - uid: 6275 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-29.5 + pos: -56.5,-2.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: EVA-atmos hallway - - uid: 9087 + - uid: 6276 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-31.5 + pos: -55.5,0.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Exterior antimatter engine - - uid: 9088 + - uid: 6461 components: - type: Transform - pos: 8.5,-33.5 + pos: -48.5,-5.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: External engineering hallway - - uid: 9090 + - uid: 6491 components: - type: Transform - pos: -2.5,-31.5 + pos: -47.5,-5.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: South solars exterior - - uid: 9091 + - uid: 6523 components: - type: Transform - pos: -10.5,-31.5 + pos: -46.5,-5.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Engineering-janitorial hallway - - uid: 9092 + - uid: 6540 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-29.5 + pos: -45.5,-18.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Exterior janitorials - - uid: 9093 + - uid: 6545 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-23.5 + pos: -51.5,-16.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: South west hallway - - uid: 9094 + - uid: 6554 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-16.5 + pos: -43.5,-18.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Dorms exterior - - uid: 12807 + - uid: 6555 components: - type: Transform - pos: -38.5,-65.5 + pos: -67.5,-33.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: South east arrivals 2 - - uid: 18921 + - uid: 6572 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-10.5 + pos: -66.5,-33.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Bridge-medical hallway - - uid: 19758 + - uid: 6577 components: - type: Transform - pos: -47.5,-8.5 + pos: -54.5,-22.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Memorial room - - uid: 22393 + - uid: 6870 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,21.5 + pos: 60.5,20.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Dining area - - uid: 22394 + - uid: 6892 components: - type: Transform - pos: -52.5,-21.5 + pos: 59.5,20.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: North west lounge - - uid: 22395 + - uid: 6894 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-9.5 + pos: -53.5,-22.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Evacuation-lounge hallway - - uid: 22404 + - uid: 6896 components: - type: Transform - pos: 10.5,23.5 + pos: 58.5,20.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: West bathroom - - uid: 22469 + - uid: 6929 components: - type: Transform - pos: -32.5,-4.5 + pos: 60.5,22.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Vox box -- proto: SurveillanceCameraMedical - entities: - - uid: 9023 + - uid: 6930 components: - type: Transform - pos: 41.5,7.5 + pos: 59.5,22.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Lobby - - uid: 9025 + - uid: 6931 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,12.5 + pos: 58.5,22.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: North hallway - - uid: 9026 + - uid: 6965 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,6.5 + pos: -47.5,-25.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Central hallway - - uid: 9027 + - uid: 6971 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-5.5 + pos: -46.5,-25.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Examination bay - - uid: 9028 + - uid: 6972 components: - type: Transform - pos: 52.5,-14.5 + pos: -46.5,-30.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Morgue - - uid: 9029 + - uid: 7007 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-3.5 + pos: -47.5,-30.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Cryogenics - - uid: 9030 + - uid: 7086 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,2.5 + pos: -48.5,-25.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Surgery rooms - - uid: 9031 + - uid: 7100 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,3.5 + pos: -41.5,-24.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Medical doctor supplies - - uid: 9032 + - uid: 7111 components: - type: Transform - pos: 55.5,6.5 + pos: -41.5,-25.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Paramedic's office - - uid: 9033 + - uid: 7193 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,12.5 + pos: -41.5,-26.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Chief Medical Officer's office - - uid: 9035 + - uid: 7194 components: - type: Transform - pos: 59.5,14.5 + pos: -41.5,-29.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Virology - - uid: 14256 + - uid: 7310 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,16.5 + pos: -26.5,-31.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Chemistry - - uid: 22383 + - uid: 7313 components: - type: Transform - pos: 45.5,-4.5 + pos: -26.5,-30.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Examination room 2 - - uid: 22384 + - uid: 7314 components: - type: Transform - pos: 45.5,-1.5 + pos: -26.5,-29.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Examination room 1 - - uid: 22385 + - uid: 7315 components: - type: Transform - pos: 45.5,-7.5 + pos: -26.5,-26.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Examination room 3 - - uid: 22386 + - uid: 7343 components: - type: Transform - pos: 55.5,-1.5 + pos: -26.5,-25.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Examination room 4 - - uid: 22387 + - uid: 7344 components: - type: Transform - pos: 55.5,-7.5 + pos: -26.5,-24.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Examination room 5 - - uid: 22388 + - uid: 7346 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,4.5 + pos: -22.5,-13.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Surgery room 1 - - uid: 22389 + - uid: 7347 components: - type: Transform - pos: 62.5,0.5 + pos: -22.5,-14.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Surgery room 2 - - uid: 22390 + - uid: 7348 components: - type: Transform - pos: 54.5,14.5 + pos: -17.5,-28.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Virology connective hallway -- proto: SurveillanceCameraRouterCommand - entities: - - uid: 7976 + - uid: 7353 components: - type: Transform - pos: 11.5,-44.5 + pos: -33.5,-37.5 parent: 2 -- proto: SurveillanceCameraRouterConstructed - entities: - - uid: 7749 + - uid: 7366 components: - type: Transform - pos: 11.5,-49.5 + pos: -29.5,-46.5 parent: 2 -- proto: SurveillanceCameraRouterEngineering - entities: - - uid: 7957 + - uid: 7369 components: - type: Transform - pos: 13.5,-48.5 + pos: -30.5,-46.5 parent: 2 -- proto: SurveillanceCameraRouterGeneral - entities: - - uid: 7953 + - uid: 7448 components: - type: Transform - pos: 16.5,-48.5 + pos: -54.5,-44.5 parent: 2 -- proto: SurveillanceCameraRouterMedical - entities: - - uid: 7958 + - uid: 7475 components: - type: Transform - pos: 13.5,-49.5 + pos: -41.5,-42.5 parent: 2 -- proto: SurveillanceCameraRouterScience - entities: - - uid: 7956 + - uid: 7494 components: - type: Transform - pos: 14.5,-48.5 + pos: -44.5,-44.5 parent: 2 -- proto: SurveillanceCameraRouterSecurity - entities: - - uid: 7977 + - uid: 7508 components: - type: Transform - pos: 14.5,-44.5 + pos: -53.5,-44.5 parent: 2 -- proto: SurveillanceCameraRouterService - entities: - - uid: 7954 + - uid: 7509 components: - type: Transform - pos: 16.5,-49.5 + pos: -52.5,-44.5 parent: 2 -- proto: SurveillanceCameraRouterSupply - entities: - - uid: 7955 + - uid: 7510 components: - type: Transform - pos: 14.5,-49.5 + pos: -50.5,-44.5 parent: 2 -- proto: SurveillanceCameraScience - entities: - - uid: 8985 + - uid: 7668 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,-22.5 + pos: -51.5,-44.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Robotics - - uid: 8986 + - uid: 7669 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-26.5 + pos: -40.5,-42.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Server room - - uid: 8988 + - uid: 7670 components: - type: Transform - pos: 70.5,-18.5 + pos: -40.5,-44.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Connective hallway - - uid: 8989 + - uid: 7671 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,-14.5 + pos: -41.5,-44.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Xenoarchaeology labs - - uid: 8990 + - uid: 7721 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,-7.5 + pos: -42.5,-44.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Anomaly centre - - uid: 8991 + - uid: 7722 components: - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,-11.5 + pos: -43.5,-44.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Reception desk - - uid: 8992 + - uid: 7723 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,-14.5 + pos: -42.5,-60.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Central hallway -- proto: SurveillanceCameraSecurity - entities: - - uid: 8998 + - uid: 7724 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,29.5 + pos: -42.5,-61.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: West hallway - - uid: 8999 + - uid: 7759 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,29.5 + pos: -42.5,-62.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Main hallway - - uid: 9000 + - uid: 7790 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,34.5 + pos: -42.5,-63.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Officer supply room - - uid: 9001 + - uid: 7795 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,34.5 + pos: 30.5,26.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Head of Security's office - - uid: 9003 + - uid: 7890 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,29.5 + pos: -66.5,-27.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Interrogation room - - uid: 9004 + - uid: 7899 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,24.5 + pos: -60.5,-34.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Prison 1 - - uid: 9005 + - uid: 7934 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,24.5 + pos: -60.5,-35.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Prison 2 - - uid: 9006 + - uid: 7960 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,24.5 + pos: -44.5,8.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Prison 3 - - uid: 9007 + - uid: 7991 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,25.5 + pos: -45.5,8.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Security lobby - - uid: 9008 + - uid: 7992 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,28.5 + rot: 1.5707963267948966 rad + pos: -47.5,14.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Warden's office - - uid: 9009 + - uid: 8005 components: - type: Transform - pos: 6.5,30.5 + rot: 1.5707963267948966 rad + pos: -46.5,14.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Armory - - uid: 9010 + - uid: 8087 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,48.5 + pos: 10.5,40.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Central perma - - uid: 9011 + - uid: 8163 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,53.5 + pos: 12.5,41.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Perma hydroponics - - uid: 9012 + - uid: 8199 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,42.5 + pos: 12.5,40.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Perma room 2 - - uid: 9013 + - uid: 8204 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,42.5 + pos: 14.5,33.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Perma room 1 - - uid: 9045 + - uid: 8205 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,-12.5 + pos: 22.5,19.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Lawyer office - - uid: 9046 + - uid: 8206 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-13.5 + pos: 22.5,20.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Lawyer conference room - - uid: 12808 + - uid: 8426 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,38.5 + pos: 32.5,19.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Security-perma hallway - - uid: 12809 + - uid: 8492 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,43.5 + pos: 32.5,15.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Perma entrance - - uid: 20212 + - uid: 8923 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,29.5 + pos: 32.5,14.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Detective's office -- proto: SurveillanceCameraService - entities: - - uid: 8924 + - uid: 8926 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,3.5 + pos: 43.5,10.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Bar - - uid: 8925 + - uid: 8927 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-3.5 + pos: 27.5,16.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Bar lounge - - uid: 8929 + - uid: 8928 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,7.5 + pos: 52.5,8.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Theatre - - uid: 8930 + - uid: 8931 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-12.5 + rot: 1.5707963267948966 rad + pos: 52.5,1.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Game room - - uid: 8932 + - uid: 8935 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-17.5 + pos: 52.5,4.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Library - - uid: 8933 + - uid: 8978 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-26.5 + pos: 36.5,1.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Janitorial closet - - uid: 8936 + - uid: 8987 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,11.5 + pos: 37.5,1.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Arcade - - uid: 8938 + - uid: 9020 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,14.5 + pos: 38.5,1.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Botany closet - - uid: 8939 + - uid: 9041 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,-28.5 + pos: 40.5,-0.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Reporter office - - uid: 8940 + - uid: 9043 components: - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,-24.5 + pos: 40.5,-1.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: News room - - uid: 8941 + - uid: 9099 components: - type: Transform - pos: -29.5,11.5 + pos: 44.5,-6.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Botany - - uid: 8942 + - uid: 10658 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,15.5 + pos: 44.5,-4.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Kitchen - - uid: 8943 + - uid: 11658 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,14.5 + pos: 44.5,-7.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Freezer - - uid: 8944 + - uid: 11660 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,5.5 + pos: 44.5,-3.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Music corner - - uid: 9040 + - uid: 12256 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-24.5 + pos: 57.5,-15.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: North boxing arena - - uid: 21412 + - uid: 12257 components: - type: Transform - pos: -22.5,-39.5 + pos: 72.5,-13.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Chapel - - uid: 22392 + - uid: 12810 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,12.5 + pos: 93.5,-13.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Arcade reception -- proto: SurveillanceCameraSupply - entities: - - uid: 3557 + - uid: 13741 components: - type: Transform - pos: 38.5,20.5 + pos: 93.5,-12.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: External salvage - - uid: 9014 + - uid: 13965 components: - type: Transform - pos: 25.5,10.5 + pos: 93.5,-15.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Front desk - - uid: 9015 + - uid: 13981 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,15.5 + pos: 93.5,-14.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Cargo front - - uid: 9018 + - uid: 14241 components: - type: Transform rot: 1.5707963267948966 rad - pos: 34.5,6.5 + pos: 64.5,-21.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Break room - - uid: 9019 + - uid: 14245 components: - type: Transform - pos: 23.5,6.5 + pos: 68.5,-33.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Secure storage - - uid: 9021 + - uid: 14705 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,22.5 + pos: 69.5,-33.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Salvage supply - - uid: 20086 + - uid: 14786 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,13.5 + pos: 70.5,-33.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Hallway - - uid: 22391 + - uid: 14901 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,23.5 + pos: 71.5,-34.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Storage bay -- proto: SurveillanceCameraWirelessRouterEntertainment - entities: - - uid: 7959 + - uid: 14953 components: - type: Transform - pos: 11.5,-48.5 + pos: 71.5,-35.5 parent: 2 -- proto: SurveillanceWirelessCameraAnchoredEntertainment - entities: - - uid: 2175 + - uid: 14955 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,5.5 + pos: 73.5,-34.5 parent: 2 - - uid: 4519 + - uid: 14957 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-26.5 + pos: 73.5,-35.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEntertainment - nameSet: True - id: News channel -- proto: SurveillanceWirelessCameraMovableConstructed - entities: - - uid: 4531 + - uid: 14958 components: - type: Transform - pos: -56.5,-23.5 + pos: 80.5,-36.5 parent: 2 - - uid: 4532 + - uid: 14961 components: - type: Transform - pos: -55.5,-23.5 + pos: 82.5,-36.5 parent: 2 -- proto: SyndieFlag - entities: - - uid: 21058 + - uid: 14968 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-42.5 + pos: 40.5,-22.5 parent: 2 -- proto: SyndieHandyFlag - entities: - - uid: 21059 + - uid: 14969 components: - type: Transform - pos: -34.495705,-44.393948 + pos: 41.5,-22.5 parent: 2 -- proto: SynthesizerInstrument - entities: - - uid: 21334 + - uid: 15032 components: - type: Transform - pos: 47.788773,21.30058 + pos: 42.5,-22.5 parent: 2 -- proto: Syringe - entities: - - uid: 8193 + - uid: 15040 components: - type: Transform - pos: 61.51553,-3.394734 + pos: 44.5,-22.5 parent: 2 - - uid: 16540 + - uid: 15041 components: - type: Transform - pos: 15.512184,29.873684 + pos: 27.5,-27.5 parent: 2 - - uid: 16966 + - uid: 15042 components: - type: Transform - pos: 61.425484,17.165861 + pos: 29.5,-27.5 parent: 2 -- proto: Table - entities: - - uid: 153 + - uid: 15043 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-8.5 + pos: 26.5,-27.5 parent: 2 - - uid: 1413 + - uid: 15053 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-9.5 + pos: 23.5,-27.5 parent: 2 - - uid: 2177 + - uid: 15091 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-16.5 + pos: 30.5,-30.5 parent: 2 - - uid: 2178 + - uid: 15215 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-17.5 + pos: 45.5,-39.5 parent: 2 - - uid: 2179 + - uid: 15222 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-21.5 + pos: 33.5,-39.5 parent: 2 - - uid: 2180 + - uid: 15226 components: - type: Transform - pos: -5.5,-23.5 + pos: 34.5,-39.5 parent: 2 - - uid: 2181 + - uid: 15227 components: - type: Transform - pos: -4.5,-23.5 + pos: 38.5,-39.5 parent: 2 - - uid: 2182 + - uid: 15229 components: - type: Transform - pos: 1.5,-19.5 + pos: 36.5,-39.5 parent: 2 - - uid: 2183 + - uid: 15231 components: - type: Transform - pos: 2.5,-19.5 + pos: 40.5,-39.5 parent: 2 - - uid: 2184 + - uid: 15232 components: - type: Transform - pos: -4.5,-26.5 + pos: 44.5,-39.5 parent: 2 - - uid: 2185 + - uid: 15233 components: - type: Transform - pos: 5.5,-19.5 + pos: 42.5,-39.5 parent: 2 - - uid: 2186 + - uid: 15234 components: - type: Transform - pos: 6.5,-19.5 + pos: 47.5,-39.5 parent: 2 - - uid: 2187 + - uid: 15254 components: - type: Transform - pos: 6.5,-23.5 + pos: 23.5,-7.5 parent: 2 - - uid: 2188 + - uid: 15413 components: - type: Transform - pos: 5.5,-23.5 + pos: 22.5,-7.5 parent: 2 - - uid: 2189 + - uid: 15608 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-27.5 + pos: 52.5,-21.5 parent: 2 - - uid: 2190 + - uid: 15869 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-27.5 + pos: 21.5,-7.5 parent: 2 - - uid: 2191 + - uid: 15873 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-17.5 + pos: -40.5,18.5 parent: 2 - - uid: 2192 + - uid: 15875 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-17.5 + pos: 27.5,-7.5 parent: 2 - - uid: 2193 + - uid: 15879 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-18.5 + pos: 26.5,-7.5 parent: 2 - - uid: 2194 + - uid: 15880 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-18.5 + pos: 25.5,-7.5 parent: 2 - - uid: 2195 + - uid: 15881 components: - type: Transform - pos: 24.5,-26.5 + pos: 28.5,-8.5 parent: 2 - - uid: 2196 + - uid: 15882 components: - type: Transform - pos: 27.5,-26.5 + pos: 24.5,-7.5 parent: 2 - - uid: 2197 + - uid: 15887 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,13.5 + pos: 16.5,-7.5 parent: 2 - - uid: 2198 + - uid: 15954 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,14.5 + pos: 17.5,-7.5 parent: 2 - - uid: 2201 + - uid: 15993 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,15.5 + pos: 54.5,-21.5 parent: 2 - - uid: 2202 + - uid: 16005 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,15.5 + pos: 18.5,-7.5 parent: 2 - - uid: 2203 + - uid: 16065 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,15.5 + pos: 19.5,-7.5 parent: 2 - - uid: 2204 + - uid: 16074 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,15.5 + pos: 29.5,-9.5 parent: 2 - - uid: 2205 + - uid: 16097 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,17.5 + pos: 20.5,-7.5 parent: 2 - - uid: 2206 + - uid: 16156 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,21.5 + pos: 19.5,-34.5 parent: 2 - - uid: 2207 + - uid: 16162 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,21.5 + pos: 25.5,-47.5 parent: 2 - - uid: 2208 + - uid: 16172 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,17.5 + pos: 27.5,-49.5 parent: 2 - - uid: 2209 + - uid: 16174 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-16.5 + pos: 26.5,-49.5 parent: 2 - - uid: 2210 + - uid: 16175 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-16.5 + pos: 25.5,-49.5 parent: 2 - - uid: 2211 + - uid: 16192 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,13.5 + pos: 25.5,-65.5 parent: 2 - - uid: 2212 + - uid: 16310 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,14.5 + pos: 25.5,-64.5 parent: 2 - - uid: 2213 + - uid: 16311 components: - type: Transform - pos: -29.5,-17.5 + pos: 19.5,-61.5 parent: 2 - - uid: 2214 + - uid: 16336 components: - type: Transform - pos: -27.5,-17.5 + pos: 19.5,-55.5 parent: 2 - - uid: 2215 + - uid: 16344 components: - type: Transform - pos: -27.5,-33.5 + pos: 25.5,-63.5 parent: 2 - - uid: 2216 + - uid: 16385 components: - type: Transform - pos: -28.5,-33.5 + pos: 19.5,-71.5 parent: 2 - - uid: 2217 + - uid: 16386 components: - type: Transform - pos: -29.5,-33.5 + pos: -5.5,-32.5 parent: 2 - - uid: 3237 + - uid: 16393 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-8.5 + pos: -4.5,-32.5 parent: 2 - - uid: 3705 + - uid: 16404 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,10.5 + pos: -3.5,-32.5 parent: 2 - - uid: 3706 + - uid: 16428 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,9.5 + pos: -0.5,-28.5 parent: 2 - - uid: 4063 + - uid: 16443 components: - type: Transform - pos: 49.5,-24.5 + pos: 0.5,-24.5 parent: 2 - - uid: 4064 + - uid: 16453 components: - type: Transform - pos: 31.5,-24.5 + pos: -4.5,-20.5 parent: 2 - - uid: 4254 + - uid: 16454 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,1.5 + pos: -3.5,-20.5 parent: 2 - - uid: 4270 + - uid: 16474 components: - type: Transform - pos: -18.5,27.5 + pos: 2.5,-10.5 parent: 2 - - uid: 4307 + - uid: 16515 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,8.5 + pos: 1.5,-10.5 parent: 2 - - uid: 4504 + - uid: 16528 components: - type: Transform - pos: -50.5,-13.5 + pos: -0.5,-10.5 parent: 2 - - uid: 4505 + - uid: 16536 components: - type: Transform - pos: -50.5,-12.5 + pos: 0.5,-18.5 parent: 2 - - uid: 4794 + - uid: 16567 components: - type: Transform - pos: -9.5,23.5 + pos: -0.5,-18.5 parent: 2 - - uid: 4871 + - uid: 16568 components: - type: Transform - pos: -5.5,23.5 + pos: 1.5,-18.5 parent: 2 - - uid: 4874 + - uid: 16590 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,23.5 + pos: -13.5,-41.5 parent: 2 - - uid: 5048 + - uid: 16638 components: - type: Transform - pos: -8.5,31.5 + pos: -14.5,-41.5 parent: 2 - - uid: 5049 + - uid: 16683 components: - type: Transform - pos: -9.5,31.5 + pos: -11.5,-41.5 parent: 2 - - uid: 5057 + - uid: 16685 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,29.5 + pos: -21.5,-46.5 parent: 2 - - uid: 5058 + - uid: 16686 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,29.5 + pos: -21.5,-47.5 parent: 2 - - uid: 5166 + - uid: 16916 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,47.5 + pos: -49.5,-39.5 parent: 2 - - uid: 5169 + - uid: 17015 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,48.5 + pos: -52.5,-37.5 parent: 2 - - uid: 5170 + - uid: 17019 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,46.5 + pos: 38.5,19.5 parent: 2 - - uid: 5171 + - uid: 17031 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,47.5 + pos: 41.5,19.5 parent: 2 - - uid: 5172 + - uid: 17254 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,47.5 + rot: 3.141592653589793 rad + pos: 64.5,-52.5 parent: 2 - - uid: 5173 + - uid: 17308 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,46.5 + pos: 49.5,24.5 parent: 2 - - uid: 5174 + - uid: 17325 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,48.5 + pos: 56.5,28.5 parent: 2 - - uid: 5175 + - uid: 17330 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,48.5 + pos: 62.5,28.5 parent: 2 - - uid: 5228 + - uid: 17450 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,52.5 + pos: 68.5,20.5 parent: 2 - - uid: 5229 + - uid: 17481 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,51.5 + pos: 64.5,13.5 parent: 2 - - uid: 5230 + - uid: 17504 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,50.5 + pos: 64.5,14.5 parent: 2 - - uid: 5245 + - uid: 17513 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,43.5 + pos: 64.5,15.5 parent: 2 - - uid: 5246 + - uid: 17537 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,43.5 + pos: 73.5,-1.5 parent: 2 - - uid: 5515 + - uid: 18277 components: - type: Transform - pos: -19.5,27.5 + pos: 73.5,6.5 parent: 2 - - uid: 5562 + - uid: 18992 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,7.5 + pos: 77.5,-7.5 parent: 2 - - uid: 5563 + - uid: 19740 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,8.5 + pos: 81.5,-4.5 parent: 2 - - uid: 5572 + - uid: 19794 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,7.5 + pos: 82.5,-4.5 parent: 2 - - uid: 5669 + - uid: 20354 components: - type: Transform - pos: -20.5,27.5 + pos: 77.5,-5.5 parent: 2 - - uid: 5770 + - uid: 20355 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,2.5 + pos: -3.5,22.5 parent: 2 - - uid: 5771 + - uid: 20395 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,3.5 + pos: -0.5,22.5 parent: 2 - - uid: 5772 + - uid: 20396 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,3.5 + pos: -23.5,28.5 parent: 2 - - uid: 6137 + - uid: 20397 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-28.5 + pos: -23.5,27.5 parent: 2 - - uid: 6331 + - uid: 21590 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,-60.5 + pos: 14.5,-45.5 parent: 2 - - uid: 6332 + - uid: 21591 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,-61.5 + pos: 11.5,-45.5 parent: 2 - - uid: 6333 + - uid: 21592 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,-62.5 + pos: -0.5,-40.5 parent: 2 - - uid: 6334 + - uid: 21593 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,-63.5 + pos: -0.5,-39.5 parent: 2 - - uid: 6335 + - uid: 21594 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-60.5 + pos: -5.5,-42.5 parent: 2 - - uid: 6336 + - uid: 21595 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-61.5 + pos: -6.5,-42.5 parent: 2 - - uid: 6337 +- proto: RemoteSignaller + entities: + - uid: 3270 components: + - type: MetaData + desc: Bolts all doors and windoors in the HoP's room. + name: Lockdown remote - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-62.5 + pos: 40.97135,-23.35855 parent: 2 - - uid: 6338 + - type: DeviceLinkSource + linkedPorts: + 3516: + - Pressed: DoorBolt + - Pressed: Close + - Pressed: AutoClose + 49: + - Pressed: DoorBolt + - Pressed: AutoClose + - Pressed: Close + 3489: + - Pressed: Close + - Pressed: AutoClose + - Pressed: DoorBolt + - uid: 20229 components: + - type: MetaData + desc: Helpful for troublesome prisoners trying to break out of perma! + name: perma blast door remote - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-63.5 + parent: 4586 + - type: DeviceLinkSource + linkedPorts: + 20613: + - Pressed: Toggle + 20612: + - Pressed: Toggle + 20611: + - Pressed: Toggle + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 20230 + components: + - type: MetaData + desc: Just in case you need a double layer of security to the armory! + name: armory blast door remote + - type: Transform + parent: 4586 + - type: DeviceLinkSource + linkedPorts: + 4719: + - Pressed: Toggle + 4895: + - Pressed: Toggle + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ResearchAndDevelopmentServer + entities: + - uid: 7429 + components: + - type: Transform + pos: 71.5,-29.5 parent: 2 - - uid: 6382 +- proto: RevolverCapGun + entities: + - uid: 16113 components: - type: Transform - pos: -55.5,-45.5 + pos: 58.457176,26.640175 parent: 2 - - uid: 6383 +- proto: RobustHarvestChemistryBottle + entities: + - uid: 8017 components: - type: Transform - pos: -39.5,-45.5 + pos: -32.148563,14.497124 parent: 2 - - uid: 6587 +- proto: RubberStampApproved + entities: + - uid: 16307 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-8.5 + pos: 28.655685,10.5061245 parent: 2 - - uid: 6684 + - uid: 16905 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,1.5 + pos: 44.978428,-23.253704 parent: 2 - - uid: 6685 +- proto: RubberStampDenied + entities: + - uid: 16306 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,1.5 + pos: 28.325459,10.518355 parent: 2 - - uid: 6686 + - uid: 16917 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,1.5 + pos: 44.978428,-23.482008 parent: 2 - - uid: 6708 +- proto: SalvageMagnet + entities: + - uid: 6058 components: - type: Transform - pos: 48.5,4.5 + rot: 3.141592653589793 rad + pos: 38.5,21.5 parent: 2 - - uid: 6715 +- proto: Screen + entities: + - uid: 3271 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,8.5 + pos: 15.5,38.5 parent: 2 - - uid: 6716 + - uid: 7573 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,8.5 + pos: -2.5,18.5 parent: 2 - - uid: 7268 + - uid: 10319 components: - type: Transform - pos: 64.5,-11.5 + pos: 18.5,10.5 parent: 2 - - uid: 7277 + - uid: 10320 components: - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,-15.5 + pos: 40.5,6.5 parent: 2 - - uid: 8115 + - uid: 12087 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-36.5 + pos: 71.5,-19.5 parent: 2 - - uid: 8213 + - uid: 14883 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-7.5 + pos: -45.5,-5.5 parent: 2 - - uid: 8267 + - uid: 16012 components: - type: Transform - pos: -4.5,21.5 + rot: -1.5707963267948966 rad + pos: -39.5,-34.5 parent: 2 - - uid: 9179 + - uid: 16057 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,25.5 + pos: 55.5,-22.5 parent: 2 - - uid: 9180 + - uid: 16166 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,25.5 + pos: 65.5,-27.5 parent: 2 - - uid: 9197 + - uid: 16445 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,35.5 + rot: -1.5707963267948966 rad + pos: -28.5,-34.5 parent: 2 - - uid: 14240 + - uid: 16617 components: - type: Transform - pos: -21.5,10.5 + pos: 11.5,-34.5 parent: 2 - - uid: 14738 + - uid: 16618 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,35.5 + pos: 6.5,-25.5 parent: 2 - - uid: 14753 + - uid: 16804 components: - type: Transform - pos: -20.5,10.5 + pos: -57.5,-26.5 parent: 2 - - uid: 15092 + - uid: 16940 components: - type: Transform - pos: -3.5,-41.5 + pos: 40.5,-31.5 parent: 2 - - uid: 15093 + - uid: 17205 components: - type: Transform - pos: -3.5,-40.5 + pos: 25.5,-34.5 parent: 2 - - uid: 15148 + - uid: 17223 components: - type: Transform - pos: -32.5,38.5 + rot: 4.71238898038469 rad + pos: 30.5,-24.5 parent: 2 - - uid: 15149 + - uid: 20293 components: - type: Transform - pos: -33.5,38.5 + pos: -31.5,-5.5 parent: 2 - - uid: 15620 + - uid: 20311 components: - type: Transform - pos: 69.5,-3.5 + pos: -6.5,-32.5 parent: 2 - - uid: 15952 + - uid: 20312 components: - type: Transform - pos: -42.5,17.5 + pos: -22.5,-20.5 parent: 2 - - uid: 16110 + - uid: 20313 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,26.5 + pos: -17.5,-5.5 parent: 2 - - uid: 16138 + - uid: 20796 components: - type: Transform - pos: 60.5,25.5 + pos: -21.5,22.5 parent: 2 - - uid: 16191 + - uid: 20797 components: - type: Transform - pos: 56.5,-27.5 + pos: -9.5,30.5 parent: 2 - - uid: 16203 + - uid: 20798 components: - type: Transform - pos: 55.5,-27.5 + pos: -3.5,49.5 parent: 2 - - uid: 16327 + - uid: 20799 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,-5.5 + pos: 35.5,10.5 parent: 2 - - uid: 16328 + - uid: 20800 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 79.5,-5.5 + pos: 23.5,24.5 parent: 2 - - uid: 16394 + - uid: 20801 components: - type: Transform - pos: 50.5,22.5 + pos: 48.5,15.5 parent: 2 - - uid: 16395 + - uid: 20802 components: - type: Transform - pos: 51.5,22.5 + pos: 44.5,-9.5 parent: 2 - - uid: 16396 + - uid: 20803 components: - type: Transform - pos: 52.5,22.5 + pos: 22.5,-19.5 parent: 2 - - uid: 16422 + - uid: 20806 components: - type: Transform - pos: 63.5,8.5 + pos: 26.5,-40.5 parent: 2 - - uid: 16463 + - uid: 20808 components: - type: Transform - pos: -54.5,-35.5 + pos: -1.5,-38.5 parent: 2 - - uid: 16464 + - uid: 20809 components: - type: Transform - pos: -54.5,-36.5 + pos: -44.5,-32.5 parent: 2 - - uid: 16467 + - uid: 20810 components: - type: Transform - pos: -59.5,-35.5 + pos: -50.5,-32.5 parent: 2 - - uid: 16468 + - uid: 20811 components: - type: Transform - pos: -59.5,-36.5 + pos: -55.5,2.5 parent: 2 - - uid: 16529 + - uid: 20812 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,32.5 + pos: -55.5,0.5 parent: 2 - - uid: 16530 + - uid: 20813 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,31.5 + pos: -42.5,9.5 parent: 2 - - uid: 16531 + - uid: 20814 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,30.5 + pos: -49.5,-5.5 parent: 2 - - uid: 16532 + - uid: 20816 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,29.5 + pos: -38.5,-11.5 parent: 2 - - uid: 16578 + - uid: 21033 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,40.5 + pos: 31.5,24.5 parent: 2 - - uid: 16597 + - uid: 21034 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,42.5 + pos: -33.5,8.5 parent: 2 - - uid: 16598 + - uid: 22184 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,42.5 + pos: 21.5,-51.5 parent: 2 - - uid: 16599 + - uid: 22188 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,41.5 + pos: 19.5,-74.5 parent: 2 - - uid: 16600 + - uid: 22189 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,40.5 + pos: 21.5,-66.5 parent: 2 - - uid: 17379 + - uid: 22190 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-3.5 + pos: 17.5,-66.5 parent: 2 - - uid: 20792 +- proto: Screwdriver + entities: + - uid: 2052 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,16.5 + pos: -4.4728403,-17.587566 parent: 2 - - uid: 21186 + - uid: 7717 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-4.5 + pos: 27.200108,-41.24766 parent: 2 - - uid: 21330 +- proto: SecurityTechFab + entities: + - uid: 5043 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-32.5 + pos: 7.5,30.5 parent: 2 -- proto: TableCarpet +- proto: SeedExtractor entities: - - uid: 2218 + - uid: 5236 components: - type: Transform - pos: -19.5,-2.5 + pos: -3.5,51.5 parent: 2 - - uid: 2219 + - uid: 16260 components: - type: Transform - pos: -18.5,-3.5 + pos: -31.5,17.5 parent: 2 - - uid: 2220 +- proto: ShardGlass + entities: + - uid: 6994 components: - type: Transform - pos: -19.5,-3.5 + pos: 37.799515,9.717336 parent: 2 - - uid: 2221 + - uid: 15987 components: - type: Transform - pos: -18.5,-2.5 + pos: 37.220566,10.453447 parent: 2 - - uid: 2222 + - uid: 17064 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-14.5 + pos: 38.60945,9.960392 parent: 2 - - uid: 2223 +- proto: SheetGlass + entities: + - uid: 2054 components: - type: Transform - pos: -19.5,-13.5 + pos: -5.303391,-23.421415 parent: 2 - - uid: 2224 + - uid: 4395 components: - type: Transform - pos: -20.5,-13.5 + pos: 30.404766,-0.06552839 parent: 2 - - uid: 2225 + - uid: 7254 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-14.5 + pos: 58.962917,-11.384084 parent: 2 - - uid: 16631 + - uid: 8196 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,36.5 + pos: 10.711848,-40.45789 parent: 2 - - uid: 16632 + - uid: 15156 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,35.5 + pos: -33.249187,38.611046 parent: 2 - - uid: 16633 + - uid: 20556 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,35.5 + pos: 5.544655,27.559452 parent: 2 - - uid: 16634 + - type: Stack + count: 15 + - uid: 20886 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,35.5 + pos: 23.487421,19.497616 parent: 2 -- proto: TableCounterWood +- proto: SheetPlasma entities: - - uid: 2226 + - uid: 7262 components: - type: Transform - pos: -16.5,-0.5 + rot: 3.141592653589793 rad + pos: 71.45334,-7.4422317 parent: 2 - - uid: 2227 + - uid: 21253 components: - type: Transform - pos: -16.5,3.5 - parent: 2 - - uid: 2228 + pos: 7.572357,0.5568676 + parent: 21128 + - type: Stack + count: 15 + - uid: 21570 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,0.5 + pos: 34.50172,-1.4871633 parent: 2 - - uid: 2229 + - type: Stack + count: 15 + - uid: 21882 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,1.5 + pos: 6.5330257,-14.510506 parent: 2 - - uid: 2230 + - type: Stack + count: 15 +- proto: SheetPlasma1 + entities: + - uid: 17337 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,2.5 + pos: 23.631372,-65.50266 parent: 2 - - uid: 2231 + - type: Stack + count: 15 + - uid: 21880 components: - type: Transform - pos: -15.5,3.5 + pos: 15.5072975,-22.504484 parent: 2 - - uid: 2237 + - type: Stack + count: 15 +- proto: SheetPlasteel + entities: + - uid: 7622 components: - type: Transform - pos: -37.5,-20.5 + pos: 21.439888,-35.48906 parent: 2 - - uid: 2238 +- proto: SheetPlastic + entities: + - uid: 1942 components: - type: Transform - pos: -36.5,-20.5 + pos: 5.388405,27.434452 parent: 2 - - uid: 3730 + - type: Stack + count: 15 + - uid: 2056 components: - type: Transform - pos: -44.5,11.5 + pos: -5.037766,-23.452665 parent: 2 - - uid: 3731 + - uid: 7159 components: - type: Transform - pos: -44.5,12.5 + pos: 58.244167,-11.384084 parent: 2 - - uid: 3732 + - uid: 15157 components: - type: Transform - pos: -44.5,13.5 + pos: -32.858562,38.579796 parent: 2 - - uid: 4407 + - uid: 23343 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,-15.5 + pos: 23.378046,19.38824 parent: 2 - - uid: 4410 +- proto: SheetRPGlass + entities: + - uid: 5108 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,-15.5 + pos: -1.4794626,-17.443817 parent: 2 - - uid: 4414 + - type: Stack + count: 15 +- proto: SheetSteel + entities: + - uid: 1960 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-16.5 + pos: 23.549921,19.57574 parent: 2 - - uid: 4415 + - uid: 2058 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-17.5 + pos: -5.490891,-23.421415 parent: 2 - - uid: 4418 + - uid: 2059 components: - type: Transform - pos: -44.5,-15.5 + pos: 13.431305,-15.361163 parent: 2 - - uid: 4427 + - uid: 2060 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,-15.5 + pos: 13.559727,-15.471238 parent: 2 - - uid: 4567 + - uid: 4393 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-28.5 + pos: 30.423111,0.55823207 parent: 2 - - uid: 12701 + - uid: 7253 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-27.5 + pos: 58.494167,-11.36325 parent: 2 - - uid: 12702 + - uid: 8195 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-27.5 + pos: 10.393852,-40.433426 parent: 2 - - uid: 16197 + - uid: 15155 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 77.5,-24.5 + pos: -33.561687,38.65792 parent: 2 - - uid: 16199 + - uid: 16653 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 79.5,-24.5 + pos: 13.535873,34.51549 parent: 2 - - uid: 16200 + - uid: 21944 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 76.5,-24.5 + pos: 5.65403,27.653202 parent: 2 -- proto: TableFancyBlack + - type: Stack + count: 15 +- proto: SheetSteel10 entities: - - uid: 3109 + - uid: 20573 components: - type: Transform - pos: -36.5,5.5 + pos: -38.542088,26.524464 parent: 2 - - uid: 3110 +- proto: SheetUranium + entities: + - uid: 20347 components: - type: Transform - pos: -30.5,5.5 + pos: 6.5942326,-13.459567 parent: 2 - - uid: 3111 + - type: Stack + count: 15 +- proto: ShelfChemistryChemistrySecure + entities: + - uid: 1813 components: - type: Transform - pos: -36.5,6.5 + pos: 42.5,14.5 parent: 2 - - uid: 3112 +- proto: ShelfMetal + entities: + - uid: 8462 components: - type: Transform - pos: -30.5,7.5 + pos: 2.5,49.5 parent: 2 - - uid: 3121 +- proto: ShotGunCabinetFilled + entities: + - uid: 8186 components: - type: Transform - pos: -30.5,6.5 + rot: 1.5707963267948966 rad + pos: -10.5,33.5 parent: 2 -- proto: TableFancyRed +- proto: ShuttersNormal entities: - - uid: 3124 + - uid: 2061 components: - type: Transform - pos: -20.5,7.5 + rot: -1.5707963267948966 rad + pos: -21.5,-26.5 parent: 2 - - uid: 3490 + - uid: 2062 components: - type: Transform - pos: -21.5,7.5 + rot: -1.5707963267948966 rad + pos: -21.5,-25.5 parent: 2 -- proto: TableFrame - entities: - - uid: 16498 + - uid: 2063 components: - type: Transform - pos: -66.5,-23.5 + rot: -1.5707963267948966 rad + pos: -21.5,-27.5 parent: 2 -- proto: TableReinforced - entities: - - uid: 182 + - uid: 6546 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,-64.5 + pos: 44.5,-7.5 parent: 2 - - uid: 758 + - uid: 6547 components: - type: Transform - pos: 9.5,-48.5 + rot: -1.5707963267948966 rad + pos: 44.5,-6.5 parent: 2 - - uid: 880 + - uid: 6548 components: - type: Transform - pos: -32.5,14.5 + rot: -1.5707963267948966 rad + pos: 44.5,-0.5 parent: 2 - - uid: 2243 + - uid: 6549 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-28.5 + rot: -1.5707963267948966 rad + pos: 44.5,-1.5 parent: 2 - - uid: 2244 + - uid: 6550 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-28.5 + rot: -1.5707963267948966 rad + pos: 44.5,-3.5 parent: 2 - - uid: 2245 + - uid: 6551 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-27.5 + rot: -1.5707963267948966 rad + pos: 44.5,-4.5 parent: 2 - - uid: 2246 + - uid: 16146 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,-27.5 + pos: 62.5,28.5 parent: 2 - - uid: 2247 + - uid: 16147 components: - type: Transform - pos: 20.5,-23.5 + rot: 3.141592653589793 rad + pos: 56.5,28.5 parent: 2 - - uid: 2248 +- proto: ShuttersNormalOpen + entities: + - uid: 2064 components: - type: Transform - pos: 21.5,-23.5 + rot: -1.5707963267948966 rad + pos: -16.5,-0.5 parent: 2 - - uid: 2249 + - uid: 2065 components: - type: Transform - pos: 14.5,-15.5 + rot: -1.5707963267948966 rad + pos: -16.5,0.5 parent: 2 - - uid: 2250 + - uid: 2066 components: - type: Transform - pos: 13.5,-15.5 + rot: -1.5707963267948966 rad + pos: -16.5,1.5 parent: 2 - - uid: 2251 + - uid: 2067 components: - type: Transform - pos: 17.5,-22.5 + rot: -1.5707963267948966 rad + pos: -16.5,2.5 parent: 2 - - uid: 2252 + - uid: 2068 components: - type: Transform - pos: 17.5,-21.5 + rot: -1.5707963267948966 rad + pos: -16.5,3.5 parent: 2 - - uid: 2253 + - uid: 2693 components: - type: Transform - pos: 17.5,-20.5 + pos: 43.5,10.5 parent: 2 - - uid: 2254 + - uid: 2694 components: - type: Transform - pos: 43.5,-22.5 + pos: 42.5,10.5 parent: 2 - - uid: 2255 + - uid: 2908 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-23.5 + rot: -1.5707963267948966 rad + pos: 64.5,-52.5 parent: 2 - - uid: 2256 + - uid: 4423 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-23.5 + pos: -45.5,-18.5 parent: 2 - - uid: 2257 + - uid: 4424 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-23.5 + pos: -44.5,-18.5 parent: 2 - - uid: 2258 + - uid: 4425 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-23.5 + pos: -43.5,-18.5 parent: 2 - - uid: 2259 + - uid: 4540 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-28.5 + rot: 3.141592653589793 rad + pos: 23.5,-27.5 parent: 2 - - uid: 2260 + - uid: 4542 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-28.5 + rot: 3.141592653589793 rad + pos: 24.5,-27.5 parent: 2 - - uid: 2261 + - uid: 4543 components: - type: Transform rot: 3.141592653589793 rad - pos: -13.5,-24.5 + pos: 25.5,-27.5 parent: 2 - - uid: 2262 + - uid: 4544 components: - type: Transform rot: 3.141592653589793 rad - pos: -13.5,-25.5 + pos: 26.5,-27.5 parent: 2 - - uid: 2263 + - uid: 4545 components: - type: Transform rot: 3.141592653589793 rad - pos: -13.5,-23.5 + pos: 27.5,-27.5 parent: 2 - - uid: 2312 + - uid: 4546 components: - type: Transform - pos: 27.5,-43.5 + rot: 3.141592653589793 rad + pos: 28.5,-27.5 parent: 2 - - uid: 4020 + - uid: 4547 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-37.5 + rot: 3.141592653589793 rad + pos: 29.5,-27.5 parent: 2 - - uid: 4021 + - uid: 5655 components: - type: Transform rot: -1.5707963267948966 rad - pos: 42.5,-37.5 + pos: 32.5,21.5 parent: 2 - - uid: 4022 + - uid: 5661 components: - type: Transform rot: -1.5707963267948966 rad - pos: 35.5,-33.5 + pos: 32.5,20.5 parent: 2 - - uid: 4023 + - uid: 7033 components: - type: Transform rot: -1.5707963267948966 rad - pos: 45.5,-32.5 + pos: 32.5,14.5 parent: 2 - - uid: 4024 + - uid: 7377 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-32.5 + pos: -20.5,10.5 parent: 2 - - uid: 4025 + - uid: 8280 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-33.5 + pos: 33.5,-39.5 parent: 2 - - uid: 4026 + - uid: 8281 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-38.5 + pos: 32.5,-39.5 parent: 2 - - uid: 4027 + - uid: 8437 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-38.5 + pos: 34.5,-39.5 parent: 2 - - uid: 4028 + - uid: 8587 components: - type: Transform - pos: 33.5,-38.5 + rot: 3.141592653589793 rad + pos: -2.5,54.5 parent: 2 - - uid: 4029 + - uid: 8588 components: - type: Transform - pos: 34.5,-38.5 + rot: 3.141592653589793 rad + pos: -1.5,54.5 parent: 2 - - uid: 4030 + - uid: 8589 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-38.5 + rot: 3.141592653589793 rad + pos: -0.5,54.5 parent: 2 - - uid: 4041 + - uid: 8590 components: - type: Transform - pos: 34.5,-37.5 + rot: 3.141592653589793 rad + pos: 0.5,54.5 parent: 2 - - uid: 4042 + - uid: 8591 components: - type: Transform - pos: 32.5,-38.5 + rot: 3.141592653589793 rad + pos: 1.5,54.5 parent: 2 - - uid: 4046 + - uid: 8592 components: - type: Transform - pos: 46.5,-38.5 + rot: 3.141592653589793 rad + pos: 2.5,54.5 parent: 2 - - uid: 4047 + - uid: 8687 components: - type: Transform - pos: 46.5,-37.5 + rot: 3.141592653589793 rad + pos: 40.5,-22.5 parent: 2 - - uid: 4048 + - uid: 8688 components: - type: Transform - pos: 47.5,-38.5 + rot: 3.141592653589793 rad + pos: 41.5,-22.5 parent: 2 - - uid: 4075 + - uid: 8689 components: - type: Transform - pos: 44.5,-32.5 + rot: 3.141592653589793 rad + pos: 42.5,-22.5 parent: 2 - - uid: 4076 + - uid: 8691 components: - type: Transform - pos: 43.5,-32.5 + rot: 3.141592653589793 rad + pos: 44.5,-22.5 parent: 2 - - uid: 4077 + - uid: 8744 components: - type: Transform - pos: 36.5,-32.5 + pos: 48.5,-39.5 parent: 2 - - uid: 4078 + - uid: 8747 components: - type: Transform - pos: 37.5,-32.5 + pos: 45.5,10.5 parent: 2 - - uid: 4094 + - uid: 8748 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-30.5 + pos: 46.5,10.5 parent: 2 - - uid: 4095 + - uid: 8768 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-30.5 + pos: 47.5,-39.5 parent: 2 - - uid: 4096 + - uid: 9248 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-30.5 + pos: 46.5,-39.5 parent: 2 - - uid: 4125 + - uid: 12915 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-31.5 + pos: 42.5,-39.5 parent: 2 - - uid: 4127 + - uid: 14724 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-31.5 + pos: 38.5,-39.5 parent: 2 - - uid: 4128 + - uid: 15408 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-31.5 + pos: -22.5,10.5 parent: 2 - - uid: 4258 + - uid: 15409 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,11.5 + pos: -23.5,14.5 parent: 2 - - uid: 4259 + - uid: 15410 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,10.5 + pos: -23.5,13.5 parent: 2 - - uid: 4361 + - uid: 15411 components: - type: Transform - pos: 37.5,-4.5 + rot: -1.5707963267948966 rad + pos: -23.5,12.5 parent: 2 - - uid: 4363 + - uid: 16627 components: - type: Transform - pos: 36.5,-3.5 + rot: 3.141592653589793 rad + pos: 14.5,33.5 parent: 2 - - uid: 4364 + - uid: 17478 components: - type: Transform - pos: 36.5,-4.5 + rot: 1.5707963267948966 rad + pos: -27.5,12.5 parent: 2 - - uid: 4365 + - uid: 17479 components: - type: Transform - pos: 36.5,-2.5 + rot: 1.5707963267948966 rad + pos: -27.5,13.5 parent: 2 - - uid: 4383 + - uid: 17480 components: - type: Transform - pos: 30.5,0.5 + rot: 1.5707963267948966 rad + pos: -27.5,14.5 parent: 2 - - uid: 4384 + - uid: 17492 components: - type: Transform - pos: 30.5,-0.5 + rot: -1.5707963267948966 rad + pos: -22.5,-15.5 parent: 2 - - uid: 4385 + - uid: 17493 components: - type: Transform - pos: 30.5,-1.5 + rot: -1.5707963267948966 rad + pos: -22.5,-14.5 parent: 2 - - uid: 4386 + - uid: 17494 components: - type: Transform - pos: 30.5,-2.5 + rot: -1.5707963267948966 rad + pos: -22.5,-13.5 parent: 2 - - uid: 4521 + - uid: 17495 components: - type: Transform rot: -1.5707963267948966 rad - pos: -59.5,-24.5 + pos: -22.5,-12.5 parent: 2 - - uid: 4522 + - uid: 17496 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,-24.5 + pos: -16.5,-28.5 parent: 2 - - uid: 4523 + - uid: 17497 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-26.5 + pos: -15.5,-28.5 parent: 2 - - uid: 4525 + - uid: 17498 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-25.5 + pos: -17.5,-28.5 parent: 2 - - uid: 4526 + - uid: 17502 components: - type: Transform rot: -1.5707963267948966 rad - pos: -61.5,-24.5 + pos: 0.5,24.5 parent: 2 - - uid: 4527 + - uid: 17503 components: - type: Transform rot: -1.5707963267948966 rad - pos: -59.5,-27.5 + pos: 0.5,23.5 parent: 2 - - uid: 4533 + - uid: 17512 components: - type: Transform - pos: -56.5,-26.5 + rot: -1.5707963267948966 rad + pos: 24.5,14.5 parent: 2 - - uid: 4534 + - uid: 17514 components: - type: Transform - pos: -55.5,-26.5 + rot: -1.5707963267948966 rad + pos: 24.5,13.5 parent: 2 - - uid: 4535 + - uid: 17515 components: - type: Transform - pos: -54.5,-26.5 + rot: -1.5707963267948966 rad + pos: 24.5,12.5 parent: 2 - - uid: 4536 + - uid: 17521 components: - type: Transform - pos: -55.5,-29.5 + pos: 57.5,-15.5 parent: 2 - - uid: 4537 + - uid: 17522 components: - type: Transform - pos: -54.5,-29.5 + pos: 58.5,-15.5 parent: 2 - - uid: 4759 + - uid: 17523 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,23.5 + pos: 59.5,-15.5 parent: 2 - - uid: 4760 + - uid: 17524 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,24.5 + pos: 60.5,-15.5 parent: 2 - - uid: 4958 + - uid: 19928 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,25.5 + pos: 32.5,15.5 parent: 2 - - uid: 4959 + - uid: 20807 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,26.5 + pos: -0.5,-28.5 parent: 2 - - uid: 5428 + - uid: 20827 components: - type: Transform - pos: 24.5,13.5 + pos: 0.5,-28.5 parent: 2 - - uid: 5429 + - uid: 21746 components: - type: Transform - pos: 24.5,14.5 + pos: -21.5,10.5 parent: 2 - - uid: 5456 + - uid: 22199 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,14.5 + rot: 3.141592653589793 rad + pos: 19.5,-71.5 parent: 2 - - uid: 5457 + - uid: 22860 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,13.5 + rot: -1.5707963267948966 rad + pos: 24.5,15.5 parent: 2 - - uid: 5527 + - uid: 22861 components: - type: Transform - pos: 75.5,-15.5 + rot: -1.5707963267948966 rad + pos: 32.5,19.5 parent: 2 - - uid: 5540 + - uid: 22862 components: - type: Transform - pos: 32.5,20.5 + rot: -1.5707963267948966 rad + pos: 0.5,25.5 parent: 2 - - uid: 5621 +- proto: ShuttersRadiationOpen + entities: + - uid: 2069 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,17.5 + pos: 2.5,-10.5 parent: 2 - - uid: 5622 + - uid: 2070 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,18.5 + pos: 1.5,-10.5 parent: 2 - - uid: 5623 + - uid: 2071 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,19.5 + pos: 0.5,-10.5 parent: 2 - - uid: 5716 + - uid: 2072 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,22.5 + pos: -0.5,-10.5 parent: 2 - - uid: 5717 + - uid: 2073 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,22.5 + pos: -1.5,-10.5 parent: 2 - - uid: 5910 + - uid: 20350 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-35.5 + pos: -0.5,-18.5 parent: 2 - - uid: 5911 + - uid: 20351 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-35.5 + pos: 0.5,-18.5 parent: 2 - - uid: 6016 + - uid: 20352 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,10.5 + pos: 1.5,-18.5 parent: 2 - - uid: 6018 +- proto: ShuttersWindowOpen + entities: + - uid: 4616 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,10.5 + pos: 35.5,-39.5 parent: 2 - - uid: 6582 + - uid: 4617 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-7.5 + pos: 36.5,-39.5 parent: 2 - - uid: 6584 + - uid: 4618 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-4.5 + pos: 37.5,-39.5 parent: 2 - - uid: 6585 + - uid: 4620 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-1.5 + pos: 39.5,-39.5 parent: 2 - - uid: 6586 + - uid: 4621 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-1.5 + pos: 40.5,-39.5 parent: 2 - - uid: 6588 + - uid: 4622 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-7.5 + pos: 41.5,-39.5 parent: 2 - - uid: 6596 + - uid: 4624 components: - type: Transform - pos: 63.5,4.5 + pos: 43.5,-39.5 parent: 2 - - uid: 6604 + - uid: 4625 components: - type: Transform - pos: 63.5,0.5 + pos: 44.5,-39.5 parent: 2 - - uid: 6606 + - uid: 4626 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-2.5 + pos: 45.5,-39.5 parent: 2 - - uid: 6607 +- proto: ShuttleConsoleCircuitboard + entities: + - uid: 21318 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-3.5 - parent: 2 - - uid: 6608 + pos: 7.516014,2.0782585 + parent: 21128 +- proto: ShuttleWindow + entities: + - uid: 21176 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-5.5 - parent: 2 - - uid: 6903 + pos: 0.5,-0.5 + parent: 21128 + - uid: 21177 components: - type: Transform - pos: 61.5,17.5 - parent: 2 - - uid: 6904 + pos: 0.5,0.5 + parent: 21128 + - uid: 21178 components: - type: Transform - pos: 61.5,16.5 - parent: 2 - - uid: 6906 + pos: 1.5,0.5 + parent: 21128 + - uid: 21179 components: - type: Transform - pos: 60.5,17.5 - parent: 2 - - uid: 6909 + pos: 3.5,0.5 + parent: 21128 + - uid: 21180 components: - type: Transform - pos: 61.5,15.5 - parent: 2 - - uid: 7044 + pos: 7.5,3.5 + parent: 21128 + - uid: 21181 components: - type: Transform - pos: 57.5,-6.5 + pos: 7.5,4.5 + parent: 21128 + - uid: 21182 + components: + - type: Transform + pos: 9.5,3.5 + parent: 21128 + - uid: 21183 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 21128 + - uid: 21193 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 21128 + - uid: 21194 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 21128 +- proto: SignAi + entities: + - uid: 21407 + components: + - type: Transform + pos: 17.5,-41.5 parent: 2 - - uid: 7053 + - uid: 22196 components: - type: Transform - pos: 61.5,-3.5 + pos: 18.5,-61.5 parent: 2 - - uid: 7097 +- proto: SignAiUpload + entities: + - uid: 21887 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-15.5 + pos: 20.5,-41.5 parent: 2 - - uid: 7098 + - uid: 22186 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-15.5 + pos: 21.5,-53.5 parent: 2 - - uid: 7099 +- proto: SignalButton + entities: + - uid: 2074 components: + - type: MetaData + name: Radiation shutters button - type: Transform rot: -1.5707963267948966 rad - pos: 60.5,-15.5 + pos: 3.5,-11.5 parent: 2 - - uid: 7143 + - type: DeviceLinkSource + linkedPorts: + 2069: + - Pressed: Toggle + 2070: + - Pressed: Toggle + 2071: + - Pressed: Toggle + 2072: + - Pressed: Toggle + 2073: + - Pressed: Toggle + - uid: 2075 components: + - type: MetaData + name: secure supply button - type: Transform - pos: 57.5,-11.5 + rot: -1.5707963267948966 rad + pos: 3.5,-12.5 parent: 2 - - uid: 7144 + - type: DeviceLinkSource + linkedPorts: + 160: + - Pressed: Toggle + 159: + - Pressed: Toggle + - uid: 2076 components: + - type: MetaData + name: Blast chamber doors button - type: Transform - pos: 58.5,-11.5 + rot: 3.141592653589793 rad + pos: 29.5,-14.5 parent: 2 - - uid: 7145 + - type: DeviceLinkSource + linkedPorts: + 158: + - Pressed: Toggle + 157: + - Pressed: Toggle + 16939: + - Pressed: Toggle + - uid: 2077 components: + - type: MetaData + name: Door bolt button - type: Transform - pos: 59.5,-11.5 + rot: 3.141592653589793 rad + pos: -35.5,-11.5 parent: 2 - - uid: 7166 + - type: DeviceLinkSource + linkedPorts: + 6: + - Pressed: DoorBolt + - uid: 2079 components: + - type: MetaData + name: Door bolt button - type: Transform - pos: 65.5,-26.5 + rot: 3.141592653589793 rad + pos: -27.5,-11.5 parent: 2 - - uid: 7172 + - type: DeviceLinkSource + linkedPorts: + 7: + - Pressed: DoorBolt + - uid: 15610 components: + - type: MetaData + name: Lights off button - type: Transform - pos: 66.5,-26.5 + rot: 1.5707963267948966 rad + pos: 34.5,-25.5 parent: 2 - - uid: 7220 + - type: DeviceLinkSource + linkedPorts: + 12667: + - Pressed: Toggle + - uid: 20353 components: + - type: MetaData + name: Radiation shutters button - type: Transform - pos: 67.5,-13.5 + rot: 3.141592653589793 rad + pos: 1.5,-24.5 parent: 2 - - uid: 7221 + - type: DeviceLinkSource + linkedPorts: + 20352: + - Pressed: Toggle + 20351: + - Pressed: Toggle + 20350: + - Pressed: Toggle + - uid: 21867 components: + - type: MetaData + name: Medical exit button - type: Transform - pos: 67.5,-14.5 + rot: 3.141592653589793 rad + pos: 50.5,-2.5 parent: 2 - - uid: 7222 + - type: DeviceLinkSource + linkedPorts: + 6514: + - Pressed: Open + 6515: + - Pressed: Open + 6516: + - Pressed: Open +- proto: SignalButtonDirectional + entities: + - uid: 2018 components: + - type: MetaData + name: Blast doors button - type: Transform - pos: 71.5,-13.5 + rot: -1.5707963267948966 rad + pos: -9.5,-37.5 parent: 2 - - uid: 7223 + - type: DeviceLinkSource + linkedPorts: + 16684: + - Pressed: Toggle + - uid: 2100 components: + - type: MetaData + name: Shutters button - type: Transform - pos: 71.5,-14.5 + rot: -1.5707963267948966 rad + pos: 48.5,12.5 parent: 2 - - uid: 7256 + - type: DeviceLinkSource + linkedPorts: + 8747: + - Pressed: Toggle + 8748: + - Pressed: Toggle + 2693: + - Pressed: Toggle + 2694: + - Pressed: Toggle + - uid: 4520 components: + - type: MetaData + name: Shutters button - type: Transform - pos: 71.5,-8.5 + rot: -1.5707963267948966 rad + pos: -42.5,-16.5 parent: 2 - - uid: 7257 + - type: DeviceLinkSource + linkedPorts: + 4425: + - Pressed: Toggle + 4424: + - Pressed: Toggle + 4423: + - Pressed: Toggle + - uid: 4548 components: + - type: MetaData + name: Shutters button - type: Transform - pos: 71.5,-7.5 + rot: -1.5707963267948966 rad + pos: 30.5,-31.5 parent: 2 - - uid: 7427 + - type: DeviceLinkSource + linkedPorts: + 4547: + - Pressed: Toggle + 4546: + - Pressed: Toggle + 4545: + - Pressed: Toggle + 4544: + - Pressed: Toggle + 4543: + - Pressed: Toggle + 4542: + - Pressed: Toggle + 4540: + - Pressed: Toggle + - uid: 5653 components: + - type: MetaData + name: Shutters button - type: Transform - pos: 44.5,16.5 + rot: -1.5707963267948966 rad + pos: 37.5,21.5 parent: 2 - - uid: 7616 + - type: DeviceLinkSource + linkedPorts: + 5655: + - Pressed: Toggle + 5661: + - Pressed: Toggle + 22861: + - Pressed: Toggle + - uid: 5757 components: + - type: MetaData + name: Secure storage doors button - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-38.5 + rot: 3.141592653589793 rad + pos: 27.5,5.5 parent: 2 - - uid: 7617 + - type: DeviceLinkSource + linkedPorts: + 5465: + - Pressed: Toggle + 5466: + - Pressed: Toggle + 5464: + - Pressed: Toggle + - uid: 6961 components: + - type: MetaData + name: containment button - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,-38.5 + pos: 56.5,16.5 parent: 2 - - uid: 7709 + - type: DeviceLinkSource + linkedPorts: + 6960: + - Pressed: Toggle + 6905: + - Pressed: DoorBolt + - uid: 7032 components: + - type: MetaData + name: Lights off button - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-41.5 + rot: 3.141592653589793 rad + pos: 37.5,11.5 parent: 2 - - uid: 7710 + - type: DeviceLinkSource + linkedPorts: + 14224: + - Pressed: Toggle + - uid: 7039 components: + - type: MetaData + name: Lights off button - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-41.5 + rot: -1.5707963267948966 rad + pos: 72.5,-22.5 parent: 2 - - uid: 7711 + - type: DeviceLinkSource + linkedPorts: + 16058: + - Pressed: Toggle + - uid: 7054 components: + - type: MetaData + name: Lights off button - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-46.5 + rot: 3.141592653589793 rad + pos: 45.5,-31.5 parent: 2 - - uid: 7712 + - uid: 8185 components: + - type: MetaData + name: Shutters button - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-46.5 + rot: 3.141592653589793 rad + pos: 44.5,-26.5 parent: 2 - - uid: 7777 + - type: DeviceLinkSource + linkedPorts: + 8691: + - Pressed: Toggle + 8689: + - Pressed: Toggle + 8688: + - Pressed: Toggle + 8687: + - Pressed: Toggle + - uid: 8530 components: + - type: MetaData + name: Door bolt button - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-40.5 + pos: 17.5,26.5 parent: 2 - - uid: 7779 + - type: DeviceLinkSource + linkedPorts: + 8242: + - Pressed: DoorBolt + - uid: 8532 components: + - type: MetaData + name: Door bolt button - type: Transform - pos: 10.5,-37.5 + pos: 17.5,24.5 parent: 2 - - uid: 7996 + - type: DeviceLinkSource + linkedPorts: + 8243: + - Pressed: DoorBolt + - uid: 12911 components: + - type: MetaData + name: Shutters button - type: Transform - pos: 9.5,-37.5 + rot: 3.141592653589793 rad + pos: -13.5,-1.5 parent: 2 - - uid: 8000 + - type: DeviceLinkSource + linkedPorts: + 2064: + - Pressed: Toggle + 2065: + - Pressed: Toggle + 2066: + - Pressed: Toggle + 2067: + - Pressed: Toggle + 2068: + - Pressed: Toggle + - uid: 12913 components: + - type: MetaData + name: Blast doors button - type: Transform - pos: 8.5,-37.5 + pos: 27.5,24.5 parent: 2 - - uid: 8135 + - type: DeviceLinkSource + linkedPorts: + 5517: + - Pressed: Toggle + 5516: + - Pressed: Toggle + - uid: 12914 components: + - type: MetaData + name: Blast doors button - type: Transform - pos: 11.5,-37.5 + rot: -1.5707963267948966 rad + pos: 78.5,-12.5 parent: 2 - - uid: 8139 + - type: DeviceLinkSource + linkedPorts: + 7332: + - Pressed: Toggle + 7333: + - Pressed: Toggle + 7334: + - Pressed: Toggle + - uid: 12916 components: + - type: MetaData + name: Blast doors button - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,-40.5 + pos: 78.5,-16.5 parent: 2 - - uid: 8554 + - type: DeviceLinkSource + linkedPorts: + 7335: + - Pressed: Toggle + 7336: + - Pressed: Toggle + 7337: + - Pressed: Toggle + - uid: 14403 components: + - type: MetaData + name: Janitorial service light button - type: Transform - pos: 75.5,-11.5 + pos: 2.9529366,23.045258 parent: 2 - - uid: 8753 + - type: DeviceLinkSource + linkedPorts: + 20777: + - Pressed: Toggle + - uid: 14879 components: + - type: MetaData + name: Lights off button - type: Transform rot: 3.141592653589793 rad - pos: 45.5,12.5 - parent: 2 - - uid: 15813 - components: - - type: Transform - pos: -27.5,38.5 + pos: -37.5,-11.5 parent: 2 - - uid: 15842 + - type: DeviceLinkSource + linkedPorts: + 1686: + - Pressed: Toggle + - uid: 15913 components: + - type: MetaData + name: Shutters button - type: Transform - pos: -28.5,38.5 + rot: 1.5707963267948966 rad + pos: -23.5,15.5 parent: 2 - - uid: 16119 + - type: DeviceLinkSource + linkedPorts: + 15410: + - Pressed: Toggle + 15409: + - Pressed: Toggle + 15411: + - Pressed: Toggle + 15408: + - Pressed: Toggle + 21746: + - Pressed: Toggle + 7377: + - Pressed: Toggle + - uid: 16121 components: + - type: MetaData + name: Lights off button - type: Transform - pos: -30.5,14.5 + rot: 3.141592653589793 rad + pos: -29.5,-11.5 parent: 2 - - uid: 16259 + - type: DeviceLinkSource + linkedPorts: + 1688: + - Pressed: Toggle + - uid: 16148 components: - type: Transform - pos: -31.5,14.5 + pos: 57.5,28.5 parent: 2 - - uid: 16576 + - type: DeviceLinkSource + linkedPorts: + 16147: + - Pressed: Toggle + - uid: 16149 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,12.5 + pos: 61.5,28.5 parent: 2 - - uid: 17596 + - type: DeviceLinkSource + linkedPorts: + 16146: + - Pressed: Toggle + - uid: 16628 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,13.5 + pos: 12.5,31.5 parent: 2 - - uid: 18460 + - type: DeviceLinkSource + linkedPorts: + 16627: + - Pressed: Toggle + - uid: 16704 components: + - type: MetaData + name: Shutters button - type: Transform - pos: 57.5,-7.5 + rot: -1.5707963267948966 rad + pos: 50.5,-36.5 parent: 2 - - uid: 20250 + - type: DeviceLinkSource + linkedPorts: + 12915: + - Pressed: Toggle + 14724: + - Pressed: Toggle + 8437: + - Pressed: Toggle + 4626: + - Pressed: Toggle + 4625: + - Pressed: Toggle + 4624: + - Pressed: Toggle + 8281: + - Pressed: Toggle + 4622: + - Pressed: Toggle + 4621: + - Pressed: Toggle + 4620: + - Pressed: Toggle + 8280: + - Pressed: Toggle + 4618: + - Pressed: Toggle + 4617: + - Pressed: Toggle + 4616: + - Pressed: Toggle + 8744: + - Pressed: Toggle + 8768: + - Pressed: Toggle + 9248: + - Pressed: Toggle + - uid: 17461 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-48.5 + rot: -1.5707963267948966 rad + pos: 1.5,-27.5 parent: 2 - - uid: 20606 + - type: DeviceLinkSource + linkedPorts: + 20807: + - Pressed: Toggle + 20827: + - Pressed: Toggle + - uid: 17491 components: + - type: MetaData + name: Shutters button - type: Transform - pos: 43.5,16.5 + rot: 3.141592653589793 rad + pos: -20.5,-16.5 parent: 2 - - uid: 20995 + - type: DeviceLinkSource + linkedPorts: + 17492: + - Pressed: Toggle + 17493: + - Pressed: Toggle + 17494: + - Pressed: Toggle + 17495: + - Pressed: Toggle + - uid: 17499 components: + - type: MetaData + name: Shutters button - type: Transform rot: 3.141592653589793 rad - pos: 91.5,-20.5 + pos: -18.5,-28.5 parent: 2 - - uid: 20996 + - type: DeviceLinkSource + linkedPorts: + 17498: + - Pressed: Toggle + 17496: + - Pressed: Toggle + 17497: + - Pressed: Toggle + - uid: 17505 components: + - type: MetaData + name: Shutters button - type: Transform rot: 3.141592653589793 rad - pos: 90.5,-20.5 + pos: 2.5,22.5 parent: 2 - - uid: 21056 + - type: DeviceLinkSource + linkedPorts: + 17503: + - Pressed: Toggle + 17502: + - Pressed: Toggle + 22862: + - Pressed: Toggle + - uid: 17507 components: + - type: MetaData + name: Shutters button - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-43.5 + rot: 1.5707963267948966 rad + pos: -3.5,53.5 parent: 2 - - uid: 21057 + - type: DeviceLinkSource + linkedPorts: + 8587: + - Pressed: Toggle + 8588: + - Pressed: Toggle + 8589: + - Pressed: Toggle + 8590: + - Pressed: Toggle + 8591: + - Pressed: Toggle + 8592: + - Pressed: Toggle + - uid: 17516 components: + - type: MetaData + name: Shutters button - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-44.5 + rot: 3.141592653589793 rad + pos: 28.5,9.5 parent: 2 - - uid: 21245 + - type: DeviceLinkSource + linkedPorts: + 17515: + - Pressed: Toggle + 17514: + - Pressed: Toggle + 17512: + - Pressed: Toggle + 22860: + - Pressed: Toggle + - uid: 17517 components: + - type: MetaData + name: Shutters button - type: Transform - pos: 7.5,2.5 - parent: 21128 - - uid: 21246 + pos: 46.5,-5.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 6547: + - Pressed: Toggle + 6546: + - Pressed: Toggle + - uid: 17518 components: + - type: MetaData + name: Shutters button - type: Transform - pos: 7.5,1.5 - parent: 21128 - - uid: 21247 + pos: 46.5,-2.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 6550: + - Pressed: Toggle + 6551: + - Pressed: Toggle + - uid: 17519 components: + - type: MetaData + name: Shutters button - type: Transform - pos: 9.5,2.5 - parent: 21128 - - uid: 21248 + pos: 46.5,0.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 6548: + - Pressed: Toggle + 6549: + - Pressed: Toggle + - uid: 17520 components: + - type: MetaData + name: Shutters button - type: Transform - pos: 9.5,1.5 - parent: 21128 - - uid: 21455 + pos: 61.5,-10.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 17524: + - Pressed: Toggle + 17523: + - Pressed: Toggle + 17522: + - Pressed: Toggle + 17521: + - Pressed: Toggle + - uid: 17526 components: + - type: MetaData + name: Lockdown button - type: Transform - pos: 8.5,-48.5 + rot: 1.5707963267948966 rad + pos: 64.5,-51.5 parent: 2 - - uid: 21550 + - type: DeviceLinkSource + linkedPorts: + 17259: + - Pressed: DoorBolt + 2908: + - Pressed: Toggle + - uid: 18465 components: + - type: MetaData + name: Shutters button - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-65.5 + pos: 35.5,16.5 parent: 2 - - uid: 21552 + - type: DeviceLinkSource + linkedPorts: + 7033: + - Pressed: Toggle + 19928: + - Pressed: Toggle + - uid: 20319 components: + - type: MetaData + name: Blast doors button - type: Transform - pos: 27.5,-44.5 + pos: 61.5,-21.5 parent: 2 -- proto: TableReinforcedGlass - entities: - - uid: 6925 + - type: DeviceLinkSource + linkedPorts: + 7121: + - Pressed: Toggle + 7123: + - Pressed: Toggle + - uid: 20781 components: + - type: MetaData + name: Janitorial service light button - type: Transform - pos: 58.5,18.5 + pos: -5.5,-24.5 parent: 2 -- proto: TableStone - entities: - - uid: 2266 + - type: DeviceLinkSource + linkedPorts: + 20783: + - Pressed: Toggle + - uid: 20784 components: + - type: MetaData + name: Janitorial service light button - type: Transform - pos: -34.5,-20.5 + rot: 1.5707963267948966 rad + pos: 24.5,11.5 parent: 2 - - uid: 2267 + - type: DeviceLinkSource + linkedPorts: + 20778: + - Pressed: Toggle + - uid: 20785 components: + - type: MetaData + name: Janitorial service light button - type: Transform - pos: -34.5,-19.5 + rot: -1.5707963267948966 rad + pos: 47.5,2.5 parent: 2 -- proto: TableWood - entities: - - uid: 2269 + - type: DeviceLinkSource + linkedPorts: + 20779: + - Pressed: Toggle + - uid: 20786 components: + - type: MetaData + name: Janitorial service light button - type: Transform - pos: -13.5,3.5 + rot: 1.5707963267948966 rad + pos: 62.5,-16.5 parent: 2 - - uid: 2271 + - type: DeviceLinkSource + linkedPorts: + 20780: + - Pressed: Toggle + - uid: 21235 components: - type: Transform - pos: -13.5,0.5 - parent: 2 - - uid: 2272 + rot: 1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 21128 + - type: DeviceLinkSource + linkedPorts: + 21191: + - Pressed: Toggle + 21192: + - Pressed: Toggle + - uid: 21451 components: + - type: MetaData + name: lockdown button - type: Transform - pos: -13.5,2.5 + rot: 1.5707963267948966 rad + pos: 56.47196,16.864159 parent: 2 - - uid: 2273 + - type: DeviceLinkSource + linkedPorts: + 6727: + - Pressed: DoorBolt + - Pressed: Close + - Pressed: AutoClose + - uid: 21844 components: + - type: MetaData + name: Shutters button - type: Transform - pos: -13.5,-0.5 + rot: 3.141592653589793 rad + pos: -31.5,10.5 parent: 2 - - uid: 2274 + - type: DeviceLinkSource + linkedPorts: + 17478: + - Pressed: Toggle + 17480: + - Pressed: Toggle + 17479: + - Pressed: Toggle + - uid: 21873 components: + - type: MetaData + name: Lights off button - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,7.5 + rot: 1.5707963267948966 rad + pos: 57.5,11.5 parent: 2 - - uid: 2277 + - type: DeviceLinkSource + linkedPorts: + 21874: + - Pressed: Toggle + - uid: 21875 components: + - type: MetaData + name: Lights off button - type: Transform - pos: -17.5,-13.5 + rot: 1.5707963267948966 rad + pos: -18.5,32.5 parent: 2 - - uid: 2278 + - type: DeviceLinkSource + linkedPorts: + 14851: + - Pressed: Toggle + - uid: 21876 components: + - type: MetaData + name: Lights off button - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-8.5 + rot: -1.5707963267948966 rad + pos: 4.5,-26.5 parent: 2 - - uid: 2279 + - type: DeviceLinkSource + linkedPorts: + 21877: + - Pressed: Toggle +- proto: SignAnomaly + entities: + - uid: 8366 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-8.5 + pos: 72.5,-15.5 parent: 2 - - uid: 2281 +- proto: SignAnomaly2 + entities: + - uid: 7214 components: - type: Transform - pos: -17.5,-17.5 + pos: 66.5,-11.5 parent: 2 - - uid: 2282 +- proto: SignArcade + entities: + - uid: 2145 components: - type: Transform - pos: -17.5,-18.5 + pos: -44.5,8.5 parent: 2 - - uid: 2283 + - uid: 3123 components: - type: Transform - pos: -19.5,-19.5 + pos: -50.5,8.5 parent: 2 - - uid: 2284 +- proto: SignArmory + entities: + - uid: 4749 components: - type: Transform - pos: -19.5,-20.5 + rot: -1.5707963267948966 rad + pos: 0.5,29.5 parent: 2 - - uid: 2285 +- proto: SignAtmos + entities: + - uid: 2080 components: - type: Transform - pos: -17.5,-23.5 + pos: 22.5,-23.5 parent: 2 - - uid: 2286 + - uid: 4791 components: - type: Transform - pos: -18.5,-23.5 + pos: 15.5,-10.5 parent: 2 - - uid: 2287 + - uid: 8347 components: - type: Transform - pos: -21.5,-23.5 + pos: 14.5,-19.5 parent: 2 - - uid: 2288 +- proto: SignBar + entities: + - uid: 6812 components: - type: Transform - pos: -20.5,-23.5 + pos: -18.5,4.5 parent: 2 - - uid: 2289 +- proto: SignBio + entities: + - uid: 6811 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-2.5 + pos: 52.5,15.5 parent: 2 - - uid: 2290 +- proto: SignBiohazardMed + entities: + - uid: 21893 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-1.5 + pos: 47.5,10.5 parent: 2 - - uid: 2291 +- proto: SignBridge + entities: + - uid: 6813 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-1.5 + pos: 46.5,-21.5 parent: 2 - - uid: 2292 +- proto: SignCargo + entities: + - uid: 6814 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-2.5 + pos: 22.5,9.5 parent: 2 - - uid: 2293 +- proto: SignCargoDock + entities: + - uid: 21894 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-3.5 + pos: 30.5,24.5 parent: 2 - - uid: 2294 + - uid: 21895 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-3.5 + pos: 24.5,24.5 parent: 2 - - uid: 2301 +- proto: SignChapel + entities: + - uid: 2082 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-2.5 + pos: -25.5,-32.5 parent: 2 - - uid: 2302 +- proto: SignChem + entities: + - uid: 5964 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-1.5 + pos: 41.5,10.5 parent: 2 - - uid: 2303 + - uid: 8369 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-1.5 + pos: 42.5,16.5 parent: 2 - - uid: 2304 +- proto: SignConference + entities: + - uid: 2699 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-3.5 + pos: 30.5,-28.5 parent: 2 - - uid: 2305 +- proto: SignCryogenicsMed + entities: + - uid: 7038 components: - type: Transform rot: -1.5707963267948966 rad - pos: -26.5,-3.5 + pos: 53.5,-2.5 parent: 2 - - uid: 2306 +- proto: SignDangerMed + entities: + - uid: 17068 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-2.5 + pos: 30.5,-52.5 parent: 2 - - uid: 2309 + - uid: 20805 components: - type: Transform - pos: -35.5,-8.5 + pos: 27.5,-57.5 parent: 2 - - uid: 2310 + - uid: 21077 components: - type: Transform - pos: -35.5,-9.5 + pos: 55.5,-43.5 parent: 2 - - uid: 2311 + - uid: 21125 components: - type: Transform - pos: -35.5,-10.5 + pos: 50.5,-43.5 parent: 2 - - uid: 2314 + - uid: 22095 components: - type: Transform - pos: -29.5,-9.5 + pos: 11.5,-52.5 parent: 2 - - uid: 2315 + - uid: 22500 components: - type: Transform - pos: -29.5,-8.5 + rot: 1.5707963267948966 rad + pos: 66.5,-35.5 parent: 2 - - uid: 2316 +- proto: SignDirectionalBar + entities: + - uid: 13599 components: - type: Transform - pos: -30.5,-37.5 + rot: 1.5707963267948966 rad + pos: -51.5,-5.5 parent: 2 - - uid: 2317 + - uid: 13600 components: - type: Transform rot: 1.5707963267948966 rad - pos: -26.5,-38.5 + pos: -43.5,-32.5 parent: 2 - - uid: 2318 + - uid: 13601 components: - type: Transform - pos: -26.5,-36.5 + rot: 3.141592653589793 rad + pos: -22.5,-11.5 parent: 2 - - uid: 2319 + - uid: 13602 components: - type: Transform - pos: -31.5,-37.5 + pos: 18.5,-25.5 parent: 2 - - uid: 3880 + - uid: 13603 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,-21.5 + rot: 3.141592653589793 rad + pos: 18.5,9.5 parent: 2 - - uid: 3881 + - uid: 13604 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,-21.5 + rot: -1.5707963267948966 rad + pos: -10.5,18.5 parent: 2 - - uid: 3882 + - uid: 21869 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,-21.5 + rot: -1.5707963267948966 rad + pos: 9.509625,-34.787674 parent: 2 - - uid: 3883 +- proto: SignDirectionalBrig + entities: + - uid: 13605 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,-22.5 + rot: -1.5707963267948966 rad + pos: -3.5,26.5 parent: 2 - - uid: 3884 +- proto: SignDirectionalChapel + entities: + - uid: 13606 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,-22.5 + pos: -22.495113,-11.233777 parent: 2 - - uid: 3885 + - uid: 13607 components: - type: Transform rot: 1.5707963267948966 rad - pos: -48.5,-22.5 + pos: -43.491245,-32.232563 parent: 2 - - uid: 3886 +- proto: SignDirectionalChemistry + entities: + - uid: 13608 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-22.5 + rot: 3.141592653589793 rad + pos: 45.5,6.5 parent: 2 - - uid: 3887 +- proto: SignDirectionalCryo + entities: + - uid: 13609 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,-21.5 + pos: 52.5,9.5 parent: 2 - - uid: 3888 +- proto: SignDirectionalDorms + entities: + - uid: 13610 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,-22.5 + pos: -27.5,8.5 parent: 2 - - uid: 3889 + - uid: 13611 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-21.5 + rot: 3.141592653589793 rad + pos: -21.5,-32.5 parent: 2 - - uid: 3890 +- proto: SignDirectionalEng + entities: + - uid: 13612 components: - type: Transform rot: 1.5707963267948966 rad - pos: -44.5,-21.5 + pos: -21.511724,-32.217175 parent: 2 - - uid: 3891 + - uid: 20489 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-22.5 + pos: -25.510857,-5.767983 parent: 2 - - uid: 4933 + - uid: 20864 components: - type: Transform - pos: -26.5,28.5 + pos: 16.5,1.5 parent: 2 - - uid: 5032 +- proto: SignDirectionalEvac + entities: + - uid: 13613 components: - type: Transform - pos: -11.5,32.5 + rot: -1.5707963267948966 rad + pos: -21.4961,-32.779675 parent: 2 - - uid: 5033 + - uid: 13614 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,32.5 + rot: -1.5707963267948966 rad + pos: -27.494131,8.773048 parent: 2 - - uid: 5038 + - uid: 13615 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,33.5 + rot: -1.5707963267948966 rad + pos: 14.5,18.5 parent: 2 - - uid: 5039 + - uid: 13616 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,32.5 + rot: -1.5707963267948966 rad + pos: 30.5,1.5 parent: 2 - - uid: 5696 + - uid: 13617 components: - type: Transform - pos: 33.5,15.5 + rot: -1.5707963267948966 rad + pos: 44.5,-17.5 parent: 2 - - uid: 5697 + - uid: 13618 components: - type: Transform - pos: 33.5,14.5 + rot: -1.5707963267948966 rad + pos: 9.5,-34.5 parent: 2 - - uid: 6393 + - uid: 17454 components: - type: Transform - pos: -38.5,-60.5 + rot: 3.141592653589793 rad + pos: -22.502985,-24.238998 parent: 2 - - uid: 6396 +- proto: SignDirectionalFood + entities: + - uid: 13619 components: - type: Transform - pos: -56.5,-60.5 + rot: 3.141592653589793 rad + pos: -20.5,-32.5 parent: 2 - - uid: 6397 + - uid: 13620 components: - type: Transform - pos: -57.5,-60.5 + rot: -1.5707963267948966 rad + pos: 14.499298,18.229422 parent: 2 - - uid: 6398 +- proto: SignDirectionalGravity + entities: + - uid: 13621 components: - type: Transform - pos: -57.5,-61.5 + pos: 44.51204,-17.745241 parent: 2 - - uid: 6399 +- proto: SignDirectionalHop + entities: + - uid: 13622 components: - type: Transform - pos: -56.5,-61.5 + pos: 18.493233,9.222223 parent: 2 - - uid: 6400 + - uid: 13623 components: - type: Transform - pos: -57.5,-62.5 + pos: -25.5,-7.5 parent: 2 - - uid: 6401 +- proto: SignDirectionalJanitor + entities: + - uid: 13624 components: - type: Transform - pos: -56.5,-62.5 + pos: -25.505726,-7.2018347 parent: 2 - - uid: 6402 + - uid: 13625 components: - type: Transform - pos: -37.5,-60.5 + rot: -1.5707963267948966 rad + pos: -10.482073,18.78723 parent: 2 - - uid: 6403 + - uid: 13626 components: - type: Transform - pos: -38.5,-61.5 + rot: -1.5707963267948966 rad + pos: 44.543232,-17.25335 parent: 2 - - uid: 6404 +- proto: SignDirectionalLibrary + entities: + - uid: 13627 components: - type: Transform - pos: -37.5,-61.5 + rot: 3.141592653589793 rad + pos: -20.480328,-32.243916 parent: 2 - - uid: 6405 + - uid: 13628 components: - type: Transform - pos: -38.5,-62.5 + pos: -27.506214,8.259279 parent: 2 - - uid: 6406 + - uid: 13629 components: - type: Transform - pos: -37.5,-62.5 + rot: -1.5707963267948966 rad + pos: -9.5,18.5 parent: 2 - - uid: 6738 +- proto: SignDirectionalMed + entities: + - uid: 17449 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,11.5 + rot: 1.5707963267948966 rad + pos: -51.470295,-5.772457 parent: 2 - - uid: 6739 + - uid: 20486 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,10.5 + pos: -25.5,-5.5 parent: 2 - - uid: 7417 + - uid: 20487 components: - type: Transform - pos: 70.5,-20.5 + rot: 1.5707963267948966 rad + pos: -23.499676,16.214537 parent: 2 - - uid: 7418 + - uid: 20490 components: - type: Transform - pos: 71.5,-20.5 + rot: 1.5707963267948966 rad + pos: 16.495012,18.771885 parent: 2 - - uid: 9159 + - uid: 20491 components: - type: Transform - pos: -25.5,28.5 + rot: 1.5707963267948966 rad + pos: 18.508957,-25.217173 parent: 2 - - uid: 13487 + - uid: 21908 components: - type: Transform - pos: 40.5,-30.5 + rot: 3.141592653589793 rad + pos: 51.512268,-21.218489 parent: 2 - - uid: 14062 + - uid: 21910 components: - type: Transform - pos: -35.5,-15.5 + rot: 1.5707963267948966 rad + pos: -43.47832,-32.75125 parent: 2 - - uid: 14784 +- proto: SignDirectionalSalvage + entities: + - uid: 13630 components: - type: Transform - pos: -30.5,-15.5 + rot: 1.5707963267948966 rad + pos: 32.51097,17.851742 parent: 2 - - uid: 14991 +- proto: SignDirectionalSci + entities: + - uid: 7179 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,23.5 + rot: 1.5707963267948966 rad + pos: 51.5,-21.5 parent: 2 - - uid: 14994 + - uid: 13631 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,28.5 + rot: 1.5707963267948966 rad + pos: 30.482822,1.7950348 parent: 2 - - uid: 14995 + - uid: 13632 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,22.5 + rot: 1.5707963267948966 rad + pos: 45.5,-17.5 parent: 2 - - uid: 14996 + - uid: 13633 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,23.5 + rot: 1.5707963267948966 rad + pos: 18.500166,-25.753792 parent: 2 - - uid: 14997 + - uid: 13634 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,28.5 + pos: -25.51464,-7.7475777 parent: 2 - - uid: 14998 + - uid: 13647 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,23.5 + rot: 1.5707963267948966 rad + pos: -22.51245,-24.757616 parent: 2 - - uid: 14999 +- proto: SignDirectionalSec + entities: + - uid: 13635 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,23.5 + rot: 1.5707963267948966 rad + pos: -23.5,16.5 parent: 2 - - uid: 15020 + - uid: 13636 components: - type: Transform rot: 1.5707963267948966 rad - pos: -36.5,21.5 + pos: -51.51479,-5.215695 parent: 2 - - uid: 15921 + - uid: 13637 components: - type: Transform - pos: -15.5,41.5 + rot: 3.141592653589793 rad + pos: -22.5,-24.5 parent: 2 - - uid: 15922 + - uid: 13638 components: - type: Transform - pos: -12.5,41.5 + rot: 3.141592653589793 rad + pos: 45.51868,-17.241924 parent: 2 - - uid: 16232 + - uid: 13639 components: - type: Transform - pos: 81.5,-22.5 + rot: -1.5707963267948966 rad + pos: 30.507929,1.2496392 parent: 2 - - uid: 16233 +- proto: SignDirectionalSupply + entities: + - uid: 13640 components: - type: Transform - pos: 81.5,-23.5 + rot: 3.141592653589793 rad + pos: 45.46845,-17.784672 parent: 2 - - uid: 16444 + - uid: 13641 components: - type: Transform - pos: -30.5,-45.5 + rot: 3.141592653589793 rad + pos: -20.479525,-32.753902 parent: 2 - - uid: 16500 + - uid: 13642 components: - type: Transform - pos: -66.5,-24.5 + rot: 1.5707963267948966 rad + pos: 9.510996,-34.195675 parent: 2 - - uid: 17257 + - uid: 13643 components: - type: Transform - pos: 65.5,-52.5 + rot: 1.5707963267948966 rad + pos: -23.50406,16.777948 parent: 2 - - uid: 20418 + - uid: 13644 components: - type: Transform - pos: 81.5,-35.5 + rot: 1.5707963267948966 rad + pos: 14.515841,18.759907 parent: 2 -- proto: TargetClown - entities: - - uid: 16841 + - uid: 20488 components: - type: Transform - pos: 9.5,39.5 + rot: 3.141592653589793 rad + pos: -25.510857,-5.235952 parent: 2 -- proto: TargetDarts +- proto: SignDirectionalWash entities: - - uid: 21576 + - uid: 13645 components: - type: Transform - pos: -36.5,27.5 + rot: 3.141592653589793 rad + pos: 16.5,18.5 parent: 2 -- proto: TargetSyndicate - entities: - - uid: 21066 + - uid: 13646 components: - type: Transform - pos: -36.5,-43.5 + rot: 1.5707963267948966 rad + pos: -9.4859295,18.77162 parent: 2 -- proto: TelecomServer +- proto: SignDisposalSpace entities: - - uid: 7431 + - uid: 7904 components: - type: Transform - pos: 68.5,-29.5 + rot: 1.5707963267948966 rad + pos: -8.5,-37.5 parent: 2 -- proto: TelecomServerFilledCargo +- proto: SignDoors entities: - - uid: 14231 + - uid: 6816 components: - type: Transform - pos: 24.5,-43.5 + pos: 37.5,19.5 parent: 2 -- proto: TelecomServerFilledCommand - entities: - - uid: 14232 + - uid: 8119 components: - type: Transform - pos: 58.5,-32.5 + pos: -54.5,-59.5 parent: 2 - - uid: 14239 + - uid: 8349 components: - type: Transform - pos: 24.5,-44.5 + pos: -40.5,-59.5 parent: 2 -- proto: TelecomServerFilledCommon - entities: - - uid: 14234 + - uid: 8351 components: - type: Transform - pos: 25.5,-41.5 + pos: -40.5,-64.5 parent: 2 -- proto: TelecomServerFilledEngineering - entities: - - uid: 14237 + - uid: 8352 components: - type: Transform - pos: 25.5,-46.5 + pos: -54.5,-64.5 parent: 2 -- proto: TelecomServerFilledMedical +- proto: SignElectricalMed entities: - - uid: 14233 + - uid: 6817 components: - type: Transform - pos: 24.5,-46.5 + pos: -10.5,-17.5 parent: 2 -- proto: TelecomServerFilledScience - entities: - - uid: 14238 + - uid: 6818 components: - type: Transform - pos: 25.5,-43.5 + pos: 13.5,-23.5 parent: 2 -- proto: TelecomServerFilledSecurity - entities: - - uid: 14236 + - uid: 7864 components: - type: Transform - pos: 25.5,-44.5 + pos: 13.5,-78.5 parent: 2 -- proto: TelecomServerFilledService - entities: - - uid: 14235 + - uid: 8356 components: - type: Transform - pos: 24.5,-41.5 + pos: -52.5,8.5 parent: 2 -- proto: Thruster - entities: - - uid: 15142 + - uid: 8357 components: - type: Transform - pos: -33.5,34.5 + pos: 40.5,-14.5 parent: 2 - - uid: 15143 + - uid: 8358 components: - type: Transform - pos: -33.5,35.5 + pos: 37.5,8.5 parent: 2 - - uid: 15144 + - uid: 8359 components: - type: Transform - pos: -32.5,34.5 + pos: 0.5,13.5 parent: 2 - - uid: 15145 + - uid: 8360 components: - type: Transform - pos: -32.5,35.5 + pos: -5.5,13.5 parent: 2 - - uid: 21205 + - uid: 9268 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-5.5 - parent: 21128 - - uid: 21206 + pos: -12.5,-12.5 + parent: 2 + - uid: 9348 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-7.5 - parent: 21128 -- proto: TintedWindow - entities: - - uid: 6887 + pos: -2.5,-37.5 + parent: 2 + - uid: 17335 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,0.5 + pos: -2.5,16.5 parent: 2 - - uid: 6888 + - uid: 17506 components: - type: Transform rot: 1.5707963267948966 rad - pos: 61.5,4.5 + pos: 5.5,55.5 parent: 2 -- proto: ToiletEmpty - entities: - - uid: 2320 + - uid: 17508 components: - type: Transform rot: 1.5707963267948966 rad - pos: 35.5,-22.5 + pos: -5.5,55.5 parent: 2 - - uid: 5006 + - uid: 17509 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,40.5 + pos: -9.5,51.5 parent: 2 - - uid: 5286 + - uid: 17510 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,40.5 + rot: 1.5707963267948966 rad + pos: 6.5,43.5 parent: 2 - - uid: 8225 + - uid: 17511 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,23.5 + rot: 1.5707963267948966 rad + pos: -10.5,42.5 parent: 2 - - uid: 8235 + - uid: 20349 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,25.5 + pos: -0.5,-38.5 parent: 2 -- proto: ToiletGoldenDirtyWater - entities: - - uid: 4593 + - uid: 21111 components: - type: Transform - pos: 45.5,-27.5 + rot: 3.141592653589793 rad + pos: 53.5,-37.5 parent: 2 -- proto: ToolboxArtisticFilled - entities: - - uid: 5117 + - uid: 22016 components: - type: Transform - pos: -34.515057,-20.462738 + pos: 27.5,-66.5 parent: 2 -- proto: ToolboxElectricalFilled - entities: - - uid: 4370 + - uid: 22018 components: - type: Transform - pos: 36.492764,-3.2268338 + pos: 11.5,-66.5 parent: 2 - - uid: 16124 + - uid: 22019 components: - type: Transform - pos: 1.5326661,-19.32547 + pos: 25.5,-78.5 parent: 2 - - uid: 22353 + - uid: 22029 components: - type: Transform - pos: 17.546753,-62.23559 + pos: 22.5,-63.5 parent: 2 -- proto: ToolboxEmergencyFilled - entities: - - uid: 2322 + - uid: 22434 components: - type: Transform - pos: 1.4969568,-19.241749 + pos: 14.5,-37.5 parent: 2 - - uid: 4369 + - uid: 22435 components: - type: Transform - pos: 36.51111,-2.9332993 + pos: 52.5,-30.5 parent: 2 -- proto: ToolboxGoldFilled - entities: - - uid: 5914 + - uid: 22436 components: - type: Transform - pos: 54.499077,-35.417862 + pos: -37.5,-36.5 parent: 2 -- proto: ToolboxMechanical - entities: - - uid: 22354 + - uid: 22440 components: - type: Transform - pos: 17.546753,-62.492435 + pos: -22.5,33.5 parent: 2 -- proto: ToolboxMechanicalFilled - entities: - - uid: 2323 + - uid: 22441 components: - type: Transform - pos: 1.5282068,-19.507374 + pos: -61.5,-21.5 parent: 2 - - uid: 4371 + - uid: 22442 components: - type: Transform - pos: 36.51111,-3.538714 + pos: 63.5,-29.5 parent: 2 - - uid: 5747 + - uid: 22443 components: - type: Transform - pos: 28.502048,12.539796 + pos: 88.5,-21.5 parent: 2 -- proto: ToyFigurineClown - entities: - - uid: 2324 + - uid: 22444 components: - type: Transform - pos: -20.040586,-13.42651 + pos: 62.5,10.5 parent: 2 -- proto: ToyFigurineFootsoldier +- proto: SignEngine entities: - - uid: 21063 + - uid: 6819 components: - type: Transform - pos: -34.32448,-43.488884 + pos: 15.5,-23.5 parent: 2 -- proto: ToyFigurineNukieCommander +- proto: SignEngineering entities: - - uid: 5942 + - uid: 2083 components: - type: Transform - pos: 38.483326,-38.004993 + pos: -4.5,-28.5 parent: 2 -- proto: ToyFigurineNukieElite - entities: - - uid: 21061 + - uid: 15951 components: - type: Transform - pos: -34.63432,-43.333965 + pos: 15.5,0.5 parent: 2 -- proto: ToyFigurinePassenger +- proto: SignEscapePods entities: - - uid: 2325 + - uid: 15261 components: - type: Transform - pos: -20.274961,-14.23901 + pos: 66.5,4.5 parent: 2 -- proto: ToyFigurineSpaceDragon - entities: - - uid: 2326 + - uid: 15262 components: - type: Transform - pos: -19.618711,-14.223385 + pos: 66.5,0.5 parent: 2 -- proto: ToyNuke - entities: - - uid: 2327 + - uid: 15263 components: - type: Transform - pos: -19.44582,-13.477165 + pos: 66.5,-3.5 parent: 2 -- proto: ToyRubberDuck - entities: - - uid: 1971 + - uid: 16026 components: - type: Transform - pos: 45.5,-30.5 + pos: -21.5,-45.5 parent: 2 - - uid: 5256 + - uid: 17016 components: - type: Transform - pos: 0.7634096,47.159733 + pos: -19.5,-45.5 parent: 2 -- proto: ToySpawner +- proto: SignEVA entities: - - uid: 14225 + - uid: 7704 components: - type: Transform - pos: 55.5,-25.5 + rot: -1.5707963267948966 rad + pos: 21.5,-34.5 parent: 2 -- proto: TrainingBomb +- proto: SignExamroom entities: - - uid: 2135 + - uid: 6810 components: - type: Transform - pos: -5.5,32.5 + pos: 48.5,0.5 parent: 2 -- proto: TrashBag +- proto: SignFire entities: - - uid: 5273 + - uid: 8361 components: - type: Transform - pos: -4.987312,48.64716 + pos: 15.5,-14.5 parent: 2 -- proto: TrashBakedBananaPeel +- proto: SignFlammableMed entities: - - uid: 16479 + - uid: 8362 components: - type: Transform - pos: -59.62266,-35.23038 + pos: 32.5,-9.5 parent: 2 - - uid: 16480 + - uid: 8363 components: - type: Transform - pos: -59.42697,-35.426067 + pos: 32.5,-14.5 parent: 2 -- proto: TrashBananaPeel +- proto: SignGravity entities: - - uid: 2328 + - uid: 19808 components: - type: Transform - pos: -27.617392,-17.536655 + pos: 51.5,-37.5 parent: 2 -- proto: trayScanner +- proto: SignHead entities: - - uid: 21861 + - uid: 2084 components: - type: Transform - pos: 58.334652,-7.458692 + pos: 45.5,-22.5 parent: 2 -- proto: TwoWayLever +- proto: SignHydro1 entities: - - uid: 5553 + - uid: 2085 components: - type: Transform - pos: 30.5,23.5 + rot: 3.141592653589793 rad + pos: -27.5,15.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 5554: - - Left: Forward - - Right: Reverse - - Middle: Off - 5510: - - Left: Forward - - Right: Reverse - - Middle: Off - 7406: - - Left: Forward - - Right: Reverse - - Middle: Off - 5478: - - Left: Forward - - Right: Reverse - - Middle: Off - 5475: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 7940 +- proto: SignInterrogation + entities: + - uid: 4822 components: - type: Transform - pos: -10.5,-39.5 + rot: 1.5707963267948966 rad + pos: -16.5,29.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 7915: - - Left: Forward - - Right: Reverse - - Middle: Off - 2696: - - Left: Forward - - Right: Reverse - - Middle: Off - 9233: - - Left: Forward - - Right: Reverse - - Middle: Off - 20107: - - Left: Forward - - Right: Reverse - - Middle: Off - 7905: - - Left: Forward - - Right: Reverse - - Middle: Off - 16910: - - Left: Reverse - - Right: Forward - - Middle: Off - - uid: 15603 +- proto: SignJanitor + entities: + - uid: 6821 components: - type: Transform - pos: 24.5,23.5 + pos: -14.5,-28.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 8553: - - Left: Forward - - Right: Reverse - - Middle: Off - 17528: - - Left: Forward - - Right: Reverse - - Middle: Off - 17529: - - Left: Forward - - Right: Reverse - - Middle: Off - 17530: - - Left: Forward - - Right: Reverse - - Middle: Off - 17531: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 17334 +- proto: SignLawyer + entities: + - uid: 6823 components: - type: Transform - pos: 33.5,19.5 + pos: -46.5,-18.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 5714: - - Left: Reverse - - Right: Forward - - Middle: Off - 8321: - - Left: Reverse - - Right: Forward - - Middle: Off - 5732: - - Left: Reverse - - Right: Forward - - Middle: Off - - uid: 20106 +- proto: SignLibrary + entities: + - uid: 6822 components: - type: Transform - pos: -11.5,-39.5 + pos: -22.5,-16.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 7916: - - Left: Forward - - Right: Reverse - - Middle: Off - 7913: - - Left: Forward - - Right: Reverse - - Middle: Off - 8665: - - Left: Forward - - Right: Reverse - - Middle: Off - 7912: - - Left: Forward - - Right: Reverse - - Middle: Off - 7911: - - Left: Forward - - Right: Reverse - - Middle: Off -- proto: UnfinishedMachineFrame +- proto: SignMagneticsMed entities: - - uid: 15086 + - uid: 22501 components: - type: Transform - pos: -3.5,-38.5 + rot: 1.5707963267948966 rad + pos: 66.5,-33.5 parent: 2 - - uid: 16136 +- proto: SignMail + entities: + - uid: 6815 components: - type: Transform - pos: 60.5,26.5 + pos: 22.5,16.5 parent: 2 - - uid: 21199 +- proto: SignMaterials + entities: + - uid: 4375 components: - type: Transform - pos: 2.5,-8.5 - parent: 21128 - - uid: 21200 + pos: 31.5,1.5 + parent: 2 +- proto: SignMedical + entities: + - uid: 6824 components: - type: Transform - pos: 8.5,-7.5 - parent: 21128 - - uid: 21201 + pos: 44.5,0.5 + parent: 2 +- proto: SignMorgue + entities: + - uid: 6665 components: - type: Transform - pos: 10.5,4.5 - parent: 21128 - - uid: 21202 + pos: 50.5,-8.5 + parent: 2 + - uid: 14213 components: - type: Transform - pos: 8.5,3.5 - parent: 21128 -- proto: UniformPrinter + pos: 47.5,-11.5 + parent: 2 +- proto: SignNanotrasen1 entities: - - uid: 2329 + - uid: 19752 components: - type: Transform - pos: 40.5,-25.5 + pos: 34.5,-21.5 parent: 2 -- proto: UniformShortsRedWithTop +- proto: SignNanotrasen2 entities: - - uid: 21032 + - uid: 19751 components: - type: Transform - pos: -30.471287,-24.425285 + pos: 35.5,-21.5 parent: 2 -- proto: Vaccinator +- proto: SignNanotrasen3 entities: - - uid: 6913 + - uid: 19750 components: - type: Transform - pos: 58.5,17.5 + pos: 36.5,-21.5 parent: 2 -- proto: VendingBarDrobe +- proto: SignNanotrasen4 entities: - - uid: 2331 + - uid: 19749 components: - type: Transform - pos: -17.5,7.5 + pos: 37.5,-21.5 parent: 2 -- proto: VendingMachineAtmosDrobe +- proto: SignNanotrasen5 entities: - - uid: 2332 + - uid: 19748 components: - type: Transform - pos: 14.5,-18.5 + pos: 38.5,-21.5 parent: 2 -- proto: VendingMachineBooze +- proto: SignNews entities: - - uid: 14972 + - uid: 3096 components: - type: Transform - pos: -37.5,21.5 + pos: -52.5,-27.5 parent: 2 - - uid: 20296 +- proto: SignNTMine + entities: + - uid: 7084 components: - type: Transform - pos: -15.5,-0.5 + pos: 32.5,17.5 parent: 2 -- proto: VendingMachineCargoDrobe +- proto: SignPrison entities: - - uid: 16906 + - uid: 5110 components: - type: Transform - pos: 23.5,22.5 + pos: -2.5,35.5 parent: 2 -- proto: VendingMachineCart +- proto: SignRadiationMed entities: - - uid: 2333 + - uid: 2091 components: - type: Transform - pos: 39.5,-25.5 + pos: -2.5,-15.5 parent: 2 -- proto: VendingMachineChapel +- proto: SignReception entities: - - uid: 2334 + - uid: 854 components: - type: Transform - pos: -30.5,-36.5 + pos: 24.5,15.5 parent: 2 -- proto: VendingMachineChefDrobe - entities: - - uid: 2335 + - uid: 21597 components: - type: Transform - pos: -18.5,14.5 + pos: 57.5,-15.5 parent: 2 -- proto: VendingMachineChefvend - entities: - - uid: 2336 + - uid: 21598 components: - type: Transform - pos: -18.5,13.5 + pos: 44.5,-22.5 parent: 2 -- proto: VendingMachineChemDrobe - entities: - - uid: 5996 + - uid: 21599 components: - type: Transform - pos: 41.5,12.5 + pos: 0.5,25.5 parent: 2 -- proto: VendingMachineChemicals +- proto: SignRedOne entities: - - uid: 711 + - uid: 21619 components: - type: Transform - pos: 41.5,13.5 + rot: 3.141592653589793 rad + pos: -35.497345,-11.735416 parent: 2 -- proto: VendingMachineCigs +- proto: SignRedTwo entities: - - uid: 2337 + - uid: 21620 components: - type: Transform - pos: -39.5,-24.5 + rot: 3.141592653589793 rad + pos: -27.505127,-11.735416 parent: 2 - - uid: 4170 +- proto: SignRestroom + entities: + - uid: 20295 components: - type: Transform - pos: 24.5,-33.5 + pos: 15.5,22.5 parent: 2 - - uid: 4960 +- proto: SignRND + entities: + - uid: 21928 components: - type: Transform - pos: 5.5,28.5 + pos: 61.5,-15.5 parent: 2 - - uid: 8214 +- proto: SignRobo + entities: + - uid: 7162 components: - type: Transform - pos: 41.5,-6.5 + pos: 60.5,-21.5 parent: 2 - - uid: 16144 +- proto: SignSalvage + entities: + - uid: 855 components: - type: Transform - pos: 13.5,-33.5 + pos: 32.5,19.5 parent: 2 - - uid: 20607 +- proto: SignScience + entities: + - uid: 7158 components: - type: Transform - pos: -21.5,-4.5 + pos: 62.5,-18.5 parent: 2 -- proto: VendingMachineClothing +- proto: SignSecureMed entities: - - uid: 1593 + - uid: 1969 components: - type: Transform - pos: 38.5,0.5 + pos: -29.5,-1.5 parent: 2 - - uid: 2340 + - uid: 6827 components: - type: Transform - pos: -38.5,-13.5 + pos: 21.5,-19.5 parent: 2 - - uid: 20610 + - uid: 15635 components: - type: Transform - pos: -21.5,-3.5 + pos: -41.5,22.5 parent: 2 -- proto: VendingMachineCoffee - entities: - - uid: 2341 + - uid: 15929 components: - type: Transform - pos: -17.5,-15.5 + pos: -45.5,22.5 parent: 2 - - uid: 2342 + - uid: 16658 components: - type: Transform - pos: -28.5,-24.5 + pos: -41.5,24.5 parent: 2 - - uid: 4167 + - uid: 16659 components: - type: Transform - pos: 23.5,-33.5 + pos: -45.5,24.5 parent: 2 -- proto: VendingMachineCondiments - entities: - - uid: 2343 + - uid: 17248 components: - type: Transform - pos: -23.5,14.5 + pos: 49.5,-56.5 parent: 2 -- proto: VendingMachineCuraDrobe - entities: - - uid: 1555 + - uid: 17249 components: - type: Transform - pos: -20.5,-10.5 + pos: 43.5,-57.5 parent: 2 -- proto: VendingMachineDetDrobe - entities: - - uid: 9177 + - uid: 17250 components: - type: Transform - pos: -26.5,25.5 + pos: 39.5,-52.5 parent: 2 -- proto: VendingMachineDinnerware - entities: - - uid: 2344 + - uid: 17251 components: - type: Transform - pos: -18.5,12.5 + pos: 55.5,-48.5 parent: 2 -- proto: VendingMachineEngiDrobe - entities: - - uid: 2345 + - uid: 17252 components: - type: Transform - pos: -9.5,-23.5 + pos: 61.5,-56.5 parent: 2 -- proto: VendingMachineEngivend - entities: - - uid: 2346 + - uid: 17253 components: - type: Transform - pos: -8.5,-23.5 + pos: 64.5,-48.5 parent: 2 -- proto: VendingMachineGames - entities: - - uid: 2347 + - uid: 21950 components: - type: Transform - pos: -17.5,-12.5 + pos: 53.5,-35.5 parent: 2 - - uid: 5167 + - uid: 22024 components: - type: Transform - pos: -6.5,45.5 + pos: 15.5,-67.5 parent: 2 -- proto: VendingMachineHydrobe - entities: - - uid: 14630 + - uid: 22025 components: - type: Transform - pos: -38.5,11.5 + pos: 15.5,-74.5 parent: 2 -- proto: VendingMachineJaniDrobe - entities: - - uid: 2349 + - uid: 22026 components: - type: Transform - pos: -18.5,-25.5 + pos: 23.5,-74.5 parent: 2 -- proto: VendingMachineLawDrobe - entities: - - uid: 4501 + - uid: 22027 components: - type: Transform - pos: -44.5,-13.5 + pos: 23.5,-67.5 parent: 2 -- proto: VendingMachineMedical +- proto: SignSecureMedRed entities: - - uid: 6690 - components: - - type: Transform - pos: 50.5,-4.5 - parent: 2 - - uid: 6691 + - uid: 6826 components: - type: Transform - pos: 48.5,5.5 + pos: 25.5,-5.5 parent: 2 -- proto: VendingMachineMediDrobe +- proto: SignSecurity entities: - - uid: 6692 + - uid: 5111 components: - type: Transform - pos: 54.5,4.5 + pos: 0.5,22.5 parent: 2 -- proto: VendingMachineNutri +- proto: SignServer entities: - - uid: 16120 + - uid: 21937 components: - type: Transform - pos: -29.5,17.5 + pos: 71.5,-24.5 parent: 2 -- proto: VendingMachineRoboDrobe +- proto: SignShipDock entities: - - uid: 7102 + - uid: 8354 components: - type: Transform - pos: 60.5,-26.5 + pos: -55.5,-0.5 parent: 2 -- proto: VendingMachineRobotics - entities: - - uid: 7161 + - uid: 8355 components: - type: Transform - pos: 60.5,-25.5 + pos: -55.5,3.5 parent: 2 -- proto: VendingMachineSalvage +- proto: SignSmoking entities: - - uid: 5705 + - uid: 6825 components: - type: Transform - pos: 33.5,22.5 + pos: 27.5,-14.5 parent: 2 -- proto: VendingMachineSciDrobe +- proto: SignSpace entities: - - uid: 4277 + - uid: 3616 components: - type: Transform - pos: 67.5,-10.5 + rot: -1.5707963267948966 rad + pos: -55.5,-2.5 parent: 2 -- proto: VendingMachineSec - entities: - - uid: 5051 + - uid: 3617 components: - type: Transform - pos: -4.5,34.5 + rot: -1.5707963267948966 rad + pos: -55.5,5.5 parent: 2 -- proto: VendingMachineSecDrobe - entities: - - uid: 5052 + - uid: 5726 components: - type: Transform - pos: -4.5,33.5 + rot: 3.141592653589793 rad + pos: 37.5,17.5 parent: 2 -- proto: VendingMachineSeeds - entities: - - uid: 15399 + - uid: 6828 components: - type: Transform - pos: -30.5,17.5 + pos: -5.5,-12.5 parent: 2 -- proto: VendingMachineSeedsUnlocked - entities: - - uid: 5210 + - uid: 21938 components: - type: Transform - pos: -3.5,52.5 + pos: -10.5,40.5 parent: 2 - - uid: 16332 + - uid: 21948 components: - type: Transform - pos: 80.5,-7.5 + pos: 71.5,-33.5 parent: 2 -- proto: VendingMachineSustenance - entities: - - uid: 5168 + - uid: 21951 components: - type: Transform - pos: -6.5,46.5 + pos: -23.5,38.5 parent: 2 -- proto: VendingMachineTankDispenserEngineering - entities: - - uid: 2353 + - uid: 21953 components: - type: Transform - pos: 23.5,-20.5 + pos: -57.5,-20.5 parent: 2 -- proto: VendingMachineTankDispenserEVA - entities: - - uid: 7615 + - uid: 21954 components: - type: Transform - pos: 19.5,-38.5 + pos: 68.5,20.5 parent: 2 - - uid: 8982 + - uid: 21991 components: - type: Transform - pos: 36.5,22.5 + rot: 3.141592653589793 rad + pos: -68.5,-31.5 parent: 2 - - uid: 15147 + - uid: 22185 components: - type: Transform - pos: -31.5,35.5 + pos: 20.5,-61.5 parent: 2 - - uid: 20608 +- proto: SignSurgery + entities: + - uid: 6886 components: - type: Transform - pos: -9.5,-25.5 + rot: 1.5707963267948966 rad + pos: 58.5,3.5 parent: 2 -- proto: VendingMachineTheater +- proto: SignTelecomms entities: - - uid: 2354 + - uid: 7586 components: - type: Transform - pos: -38.5,-12.5 + rot: -1.5707963267948966 rad + pos: 30.5,-35.5 parent: 2 - - uid: 2355 + - uid: 7591 components: - type: Transform - pos: -36.5,7.5 + rot: -1.5707963267948966 rad + pos: 27.5,-35.5 parent: 2 - - uid: 4356 +- proto: SignToolStorage + entities: + - uid: 4404 components: - type: Transform - pos: 39.5,-0.5 + pos: 40.5,0.5 parent: 2 -- proto: VendingMachineVendomat +- proto: SignVault entities: - - uid: 1352 + - uid: 21949 components: - type: Transform - pos: -3.5,-23.5 + pos: 53.5,-34.5 parent: 2 - - uid: 2890 +- proto: SignVirology + entities: + - uid: 6829 components: - type: Transform - pos: 37.5,0.5 + pos: 56.5,15.5 parent: 2 -- proto: VendingMachineViroDrobe +- proto: SignVox entities: - - uid: 6912 + - uid: 21377 components: - type: Transform - pos: 61.5,14.5 + pos: -34.5,-1.5 parent: 2 -- proto: VendingMachineWinter +- proto: SingularityGenerator entities: - - uid: 2358 + - uid: 2092 components: - type: Transform - pos: -38.5,-14.5 + pos: 4.5,-11.5 parent: 2 - - uid: 4357 + - uid: 3104 components: - type: Transform - pos: 39.5,-1.5 + pos: 0.5,0.5 parent: 2 -- proto: VendingMachineYouTool +- proto: Sink entities: - - uid: 2359 + - uid: 5948 components: - type: Transform - pos: -7.5,-23.5 + rot: -1.5707963267948966 rad + pos: 45.5,-29.5 parent: 2 - - uid: 4354 + - uid: 13488 components: - type: Transform - pos: 36.5,0.5 + pos: 36.5,-22.5 parent: 2 -- proto: WallmountTelevision +- proto: SinkWide entities: - - uid: 545 + - uid: 5258 components: - type: Transform - pos: 5.5,22.5 + rot: 3.141592653589793 rad + pos: 0.5,45.5 parent: 2 - - uid: 8920 + - uid: 6755 components: - type: Transform - pos: -19.5,22.5 + pos: -20.5,12.5 parent: 2 - - uid: 8921 + - uid: 8239 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,5.5 + pos: 13.5,26.5 parent: 2 - - uid: 8922 + - uid: 8240 components: - type: Transform - pos: -34.5,-23.5 + pos: 15.5,26.5 parent: 2 - - uid: 21745 + - uid: 9024 components: - type: Transform - pos: -10.5,-32.5 + rot: 1.5707963267948966 rad + pos: 43.5,14.5 parent: 2 -- proto: WallPlastic - entities: - - uid: 2360 + - uid: 14218 components: - type: Transform - pos: -30.5,-16.5 + rot: -1.5707963267948966 rad + pos: -33.5,14.5 parent: 2 - - uid: 2361 + - uid: 16795 components: - type: Transform - pos: -27.5,-16.5 + rot: 3.141592653589793 rad + pos: -15.5,5.5 parent: 2 - - uid: 2362 +- proto: Skub + entities: + - uid: 17542 components: - type: Transform - pos: -29.5,-16.5 + pos: 85.054985,-7.3956304 parent: 2 - - uid: 2363 +- proto: SmartFridge + entities: + - uid: 5992 components: - type: Transform - pos: -30.5,-17.5 + pos: 44.5,10.5 parent: 2 - - uid: 2364 + - uid: 16772 components: - type: Transform - pos: -30.5,-18.5 + pos: -19.5,10.5 parent: 2 - - uid: 2365 +- proto: SMESBasic + entities: + - uid: 2095 components: + - type: MetaData + name: Singularity SMES - type: Transform - pos: -30.5,-19.5 + pos: 1.5,-17.5 parent: 2 - - uid: 2366 + - uid: 2096 components: + - type: MetaData + name: Main SMES - type: Transform - pos: -30.5,-20.5 + pos: -12.5,-17.5 parent: 2 -- proto: WallReinforced - entities: - - uid: 48 + - uid: 2097 components: + - type: MetaData + name: Main SMES - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-49.5 + pos: -12.5,-14.5 parent: 2 - - uid: 103 + - uid: 2098 components: + - type: MetaData + name: Main SMES - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-43.5 + pos: -12.5,-15.5 + parent: 2 + - uid: 2099 + components: + - type: MetaData + name: Main SMES + - type: Transform + pos: -12.5,-16.5 parent: 2 - - uid: 851 + - uid: 8097 components: + - type: MetaData + name: South Solars SMES - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-50.5 + pos: -1.5,-37.5 parent: 2 - - uid: 1084 + - uid: 8098 components: + - type: MetaData + name: South Solars SMES - type: Transform - pos: -38.5,-43.5 + pos: -0.5,-37.5 parent: 2 - - uid: 1447 + - uid: 10575 components: + - type: MetaData + name: Secure Command SMES - type: Transform - pos: -62.5,-21.5 + pos: 54.5,-40.5 parent: 2 - - uid: 2002 + - uid: 15809 components: + - type: MetaData + name: North Solars SMES - type: Transform - pos: 50.5,-42.5 + pos: -28.5,34.5 parent: 2 - - uid: 2012 + - uid: 15810 components: + - type: MetaData + name: North Solars SMES - type: Transform - pos: 37.5,-31.5 + pos: -28.5,35.5 parent: 2 - - uid: 2035 + - uid: 20944 components: + - type: MetaData + name: Rage Cage SMES - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,5.5 + pos: 88.5,-22.5 parent: 2 - - uid: 2037 + - uid: 22070 components: + - type: MetaData + name: AI Core SMES - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,-0.5 + pos: 23.5,-63.5 parent: 2 - - uid: 2106 +- proto: SodaDispenser + entities: + - uid: 2102 components: - type: Transform rot: -1.5707963267948966 rad - pos: 56.5,-43.5 + pos: -13.5,2.5 parent: 2 - - uid: 2367 + - uid: 2103 components: - type: Transform - pos: -8.5,11.5 + rot: -1.5707963267948966 rad + pos: -13.5,0.5 parent: 2 - - uid: 2369 + - uid: 16595 components: - type: Transform - pos: -9.5,11.5 + rot: 1.5707963267948966 rad + pos: 5.5,40.5 parent: 2 - - uid: 2371 +- proto: SolarPanel + entities: + - uid: 3207 components: - type: Transform - pos: -6.5,11.5 + pos: 3.5,-52.5 parent: 2 - - uid: 2373 + - uid: 3279 components: - type: Transform - pos: -4.5,11.5 + pos: 2.5,-48.5 parent: 2 - - uid: 2375 + - uid: 3281 components: - type: Transform - pos: -3.5,11.5 + pos: 3.5,-48.5 parent: 2 - - uid: 2377 + - uid: 3295 components: - type: Transform - pos: -1.5,11.5 + pos: 2.5,-52.5 parent: 2 - - uid: 2378 + - uid: 3297 components: - type: Transform - pos: 0.5,11.5 + pos: 3.5,-50.5 parent: 2 - - uid: 2380 + - uid: 3323 components: - type: Transform - pos: 2.5,11.5 + pos: 2.5,-50.5 parent: 2 - - uid: 2381 + - uid: 3324 components: - type: Transform - pos: 3.5,11.5 + pos: -0.5,-50.5 parent: 2 - - uid: 2382 + - uid: 3669 components: - type: Transform - pos: 4.5,11.5 + pos: -0.5,-48.5 parent: 2 - - uid: 2383 + - uid: 4999 components: - type: Transform - pos: 7.5,11.5 + pos: -1.5,-48.5 parent: 2 - - uid: 2386 + - uid: 5000 components: - type: Transform - pos: 9.5,11.5 + pos: -1.5,-50.5 parent: 2 - - uid: 2388 + - uid: 15083 components: - type: Transform - pos: 10.5,11.5 + pos: -2.5,-48.5 parent: 2 - - uid: 2389 + - uid: 15474 components: - type: Transform - pos: 6.5,11.5 + pos: -2.5,-50.5 parent: 2 - - uid: 2391 + - uid: 15475 components: - type: Transform - pos: 11.5,10.5 + pos: -3.5,-48.5 parent: 2 - - uid: 2393 + - uid: 15476 components: - type: Transform - pos: 11.5,8.5 + pos: -3.5,-50.5 parent: 2 - - uid: 2395 + - uid: 15477 components: - type: Transform - pos: 11.5,6.5 + pos: -4.5,-50.5 parent: 2 - - uid: 2396 + - uid: 15478 components: - type: Transform - pos: 11.5,5.5 + pos: -5.5,-50.5 parent: 2 - - uid: 2398 + - uid: 15479 components: - type: Transform - pos: 11.5,3.5 + pos: -6.5,-50.5 parent: 2 - - uid: 2400 + - uid: 15480 components: - type: Transform - pos: 11.5,1.5 + pos: -6.5,-48.5 parent: 2 - - uid: 2401 + - uid: 15481 components: - type: Transform - pos: 11.5,0.5 + pos: -5.5,-48.5 parent: 2 - - uid: 2403 + - uid: 15482 components: - type: Transform - pos: 11.5,-1.5 + pos: -4.5,-48.5 parent: 2 - - uid: 2405 + - uid: 15483 components: - type: Transform - pos: 11.5,-3.5 + pos: -6.5,-46.5 parent: 2 - - uid: 2406 + - uid: 15484 components: - type: Transform - pos: 11.5,-4.5 + pos: -4.5,-46.5 parent: 2 - - uid: 2408 + - uid: 15485 components: - type: Transform - pos: 11.5,-6.5 + pos: -5.5,-46.5 parent: 2 - - uid: 2409 + - uid: 15486 components: - type: Transform - pos: 11.5,-7.5 + pos: -3.5,-46.5 parent: 2 - - uid: 2411 + - uid: 15487 components: - type: Transform - pos: 11.5,-9.5 + pos: -2.5,-46.5 parent: 2 - - uid: 2414 + - uid: 15488 components: - type: Transform - pos: 9.5,-10.5 + pos: -1.5,-46.5 parent: 2 - - uid: 2415 + - uid: 15489 components: - type: Transform - pos: 8.5,-10.5 + pos: -0.5,-46.5 parent: 2 - - uid: 2417 + - uid: 15490 components: - type: Transform - pos: 6.5,-10.5 + pos: -1.5,-44.5 parent: 2 - - uid: 2419 + - uid: 15491 components: - type: Transform - pos: 4.5,-10.5 + pos: -0.5,-44.5 parent: 2 - - uid: 2421 + - uid: 15492 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-11.5 + pos: -3.5,-44.5 parent: 2 - - uid: 2422 + - uid: 15493 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-11.5 + pos: -2.5,-44.5 parent: 2 - - uid: 2423 + - uid: 15494 components: - type: Transform - pos: -2.5,-10.5 + pos: -4.5,-44.5 parent: 2 - - uid: 2425 + - uid: 15495 components: - type: Transform - pos: -4.5,-10.5 + pos: -5.5,-44.5 parent: 2 - - uid: 2428 + - uid: 15496 components: - type: Transform - pos: -5.5,-12.5 + pos: -6.5,-44.5 parent: 2 - - uid: 2431 + - uid: 15497 components: - type: Transform - pos: -10.5,-10.5 + pos: -6.5,-52.5 parent: 2 - - uid: 2432 + - uid: 15498 components: - type: Transform - pos: -10.5,-8.5 + pos: -4.5,-52.5 parent: 2 - - uid: 2434 + - uid: 15499 components: - type: Transform - pos: -10.5,-5.5 + pos: -5.5,-52.5 parent: 2 - - uid: 2438 + - uid: 15500 components: - type: Transform - pos: -10.5,-3.5 + pos: -3.5,-52.5 parent: 2 - - uid: 2441 + - uid: 15501 components: - type: Transform - pos: -10.5,5.5 + pos: -1.5,-52.5 parent: 2 - - uid: 2444 + - uid: 15502 components: - type: Transform - pos: -10.5,8.5 + pos: -2.5,-52.5 parent: 2 - - uid: 2445 + - uid: 15503 components: - type: Transform - pos: -10.5,10.5 + pos: -0.5,-52.5 parent: 2 - - uid: 2446 + - uid: 15504 components: - type: Transform - pos: -10.5,6.5 + pos: -0.5,-54.5 parent: 2 - - uid: 2447 + - uid: 15505 components: - type: Transform - pos: 8.5,-12.5 + pos: -1.5,-54.5 parent: 2 - - uid: 2451 + - uid: 15506 components: - type: Transform - pos: -2.5,-16.5 + pos: -2.5,-54.5 parent: 2 - - uid: 2453 + - uid: 15507 components: - type: Transform - pos: 3.5,-16.5 + pos: -3.5,-54.5 parent: 2 - - uid: 2454 + - uid: 15508 components: - type: Transform - pos: -2.5,-18.5 + pos: -5.5,-54.5 parent: 2 - - uid: 2455 + - uid: 15509 components: - type: Transform - pos: -1.5,-18.5 + pos: -6.5,-54.5 parent: 2 - - uid: 2456 + - uid: 15510 components: - type: Transform - pos: 3.5,-17.5 + pos: -4.5,-54.5 parent: 2 - - uid: 2460 + - uid: 15533 components: - type: Transform - pos: 7.5,-12.5 + pos: 2.5,-46.5 parent: 2 - - uid: 2462 + - uid: 15534 components: - type: Transform - pos: 7.5,-14.5 + pos: 2.5,-44.5 parent: 2 - - uid: 2464 + - uid: 15570 components: - type: Transform - pos: 7.5,-16.5 + pos: 2.5,-54.5 parent: 2 - - uid: 2465 + - uid: 15571 components: - type: Transform - pos: 6.5,-16.5 + pos: 3.5,-54.5 parent: 2 - - uid: 2469 + - uid: 15693 components: - type: Transform - pos: 10.5,-12.5 + pos: -23.5,42.5 parent: 2 - - uid: 2470 + - uid: 15703 components: - type: Transform - pos: 11.5,-12.5 + pos: -28.5,48.5 parent: 2 - - uid: 2471 + - uid: 15704 components: - type: Transform - pos: 12.5,-12.5 + pos: -27.5,48.5 parent: 2 - - uid: 2475 + - uid: 15705 components: - type: Transform - pos: 13.5,-9.5 + pos: -25.5,48.5 parent: 2 - - uid: 2477 + - uid: 15706 components: - type: Transform - pos: 13.5,-7.5 + pos: -26.5,48.5 parent: 2 - - uid: 2478 + - uid: 15707 components: - type: Transform - pos: 13.5,-6.5 + pos: -24.5,48.5 parent: 2 - - uid: 2480 + - uid: 15708 components: - type: Transform - pos: 13.5,-4.5 + pos: -23.5,48.5 parent: 2 - - uid: 2482 + - uid: 15709 components: - type: Transform - pos: 13.5,-1.5 + pos: -20.5,48.5 parent: 2 - - uid: 2484 + - uid: 15710 components: - type: Transform - pos: 13.5,1.5 + pos: -19.5,48.5 parent: 2 - - uid: 2486 + - uid: 15711 components: - type: Transform - pos: 13.5,0.5 + pos: -19.5,46.5 parent: 2 - - uid: 2487 + - uid: 15712 components: - type: Transform - pos: 13.5,-2.5 + pos: -20.5,46.5 parent: 2 - - uid: 2488 + - uid: 15713 components: - type: Transform - pos: 13.5,3.5 + pos: -20.5,44.5 parent: 2 - - uid: 2490 + - uid: 15714 components: - type: Transform - pos: 13.5,6.5 + pos: -19.5,44.5 parent: 2 - - uid: 2491 + - uid: 15715 components: - type: Transform - pos: 13.5,4.5 + pos: -19.5,42.5 parent: 2 - - uid: 2493 + - uid: 15716 components: - type: Transform - pos: 13.5,9.5 + pos: -20.5,42.5 parent: 2 - - uid: 2494 + - uid: 15717 components: - type: Transform - pos: 13.5,10.5 + pos: -24.5,42.5 parent: 2 - - uid: 2497 + - uid: 15718 components: - type: Transform - pos: 13.5,8.5 + pos: -25.5,42.5 parent: 2 - - uid: 2498 + - uid: 15719 components: - type: Transform - pos: 13.5,12.5 + pos: -26.5,42.5 parent: 2 - - uid: 2499 + - uid: 15720 components: - type: Transform - pos: 12.5,13.5 + pos: -28.5,42.5 parent: 2 - - uid: 2501 + - uid: 15721 components: - type: Transform - pos: 10.5,13.5 + pos: -28.5,44.5 parent: 2 - - uid: 2502 + - uid: 15722 components: - type: Transform - pos: 9.5,13.5 + pos: -27.5,44.5 parent: 2 - - uid: 2504 + - uid: 15723 components: - type: Transform - pos: 7.5,13.5 + pos: -26.5,44.5 parent: 2 - - uid: 2506 + - uid: 15724 components: - type: Transform - pos: 5.5,13.5 + pos: -25.5,44.5 parent: 2 - - uid: 2507 + - uid: 15725 components: - type: Transform - pos: 4.5,13.5 + pos: -24.5,44.5 parent: 2 - - uid: 2509 + - uid: 15726 components: - type: Transform - pos: 2.5,13.5 + pos: -23.5,44.5 parent: 2 - - uid: 2511 + - uid: 15727 components: - type: Transform - pos: -0.5,13.5 + pos: -27.5,42.5 parent: 2 - - uid: 2513 + - uid: 15729 components: - type: Transform - pos: -3.5,13.5 + pos: -28.5,50.5 parent: 2 - - uid: 2514 + - uid: 15730 components: - type: Transform - pos: 0.5,13.5 + pos: -27.5,50.5 parent: 2 - - uid: 2515 + - uid: 15731 components: - type: Transform - pos: -2.5,13.5 + pos: -26.5,50.5 parent: 2 - - uid: 2517 + - uid: 15732 components: - type: Transform - pos: -5.5,13.5 + pos: -25.5,50.5 parent: 2 - - uid: 2519 + - uid: 15733 components: - type: Transform - pos: -7.5,13.5 + pos: -24.5,50.5 parent: 2 - - uid: 2520 + - uid: 15734 components: - type: Transform - pos: -8.5,13.5 + pos: -23.5,50.5 parent: 2 - - uid: 2522 + - uid: 15735 components: - type: Transform - pos: -10.5,13.5 + pos: -23.5,52.5 parent: 2 - - uid: 2523 + - uid: 15736 components: - type: Transform - pos: -11.5,13.5 + pos: -24.5,52.5 parent: 2 - - uid: 2525 + - uid: 15737 components: - type: Transform - pos: -12.5,12.5 + pos: -25.5,52.5 parent: 2 - - uid: 2526 + - uid: 15738 components: - type: Transform - pos: -12.5,11.5 + pos: -27.5,52.5 parent: 2 - - uid: 2528 + - uid: 15739 components: - type: Transform - pos: -12.5,9.5 + pos: -28.5,52.5 parent: 2 - - uid: 2530 + - uid: 15796 components: - type: Transform - pos: -12.5,7.5 + pos: -23.5,46.5 parent: 2 - - uid: 2532 + - uid: 15797 components: - type: Transform - pos: -12.5,5.5 + pos: -24.5,46.5 parent: 2 - - uid: 2536 + - uid: 15798 components: - type: Transform - pos: -11.5,3.5 + pos: -26.5,46.5 parent: 2 - - uid: 2537 + - uid: 15799 components: - type: Transform - pos: -12.5,-2.5 + pos: -25.5,46.5 parent: 2 - - uid: 2539 + - uid: 15800 components: - type: Transform - pos: -12.5,-4.5 + pos: -27.5,46.5 parent: 2 - - uid: 2541 + - uid: 15801 components: - type: Transform - pos: -12.5,-6.5 + pos: -28.5,46.5 parent: 2 - - uid: 2543 + - uid: 15802 components: - type: Transform - pos: -12.5,-8.5 + pos: -26.5,52.5 parent: 2 - - uid: 2544 + - uid: 15803 components: - type: Transform - pos: -12.5,-10.5 + pos: -20.5,52.5 parent: 2 - - uid: 2547 + - uid: 15804 components: - type: Transform - pos: -11.5,-12.5 + pos: -19.5,52.5 parent: 2 - - uid: 2550 + - uid: 15806 components: - type: Transform - pos: -9.5,-12.5 + pos: -19.5,50.5 parent: 2 - - uid: 2552 + - uid: 15807 components: - type: Transform - pos: -7.5,-10.5 + pos: -20.5,50.5 parent: 2 - - uid: 2558 +- proto: SolarTracker + entities: + - uid: 15468 components: - type: Transform - pos: -13.5,-12.5 + pos: 1.5,-58.5 parent: 2 - - uid: 2561 + - uid: 15702 components: - type: Transform - pos: -14.5,-14.5 + pos: -22.5,55.5 parent: 2 - - uid: 2563 +- proto: SolidSecretDoor + entities: + - uid: 2339 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-18.5 + pos: -35.5,-42.5 parent: 2 - - uid: 2564 +- proto: SpaceCash100 + entities: + - uid: 2104 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-18.5 + pos: -19.177664,-3.0928874 parent: 2 - - uid: 2566 + - uid: 2105 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-16.5 + pos: -19.19601,-3.3864217 parent: 2 - - uid: 2567 + - uid: 16651 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-14.5 - parent: 2 - - uid: 2570 + parent: 16650 + - type: Stack + count: 500 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SpaceHeater + entities: + - uid: 21477 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-19.5 + pos: 21.5,-17.5 parent: 2 - - uid: 2573 + - uid: 21478 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-20.5 + pos: 21.5,-16.5 parent: 2 - - uid: 2574 +- proto: SpacemenFigureSpawner + entities: + - uid: 15870 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-20.5 + pos: -17.5,-8.5 parent: 2 - - uid: 2576 +- proto: SpawnMechRipley + entities: + - uid: 22481 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-20.5 + pos: 27.5,8.5 parent: 2 - - uid: 2577 +- proto: SpawnMobAlexander + entities: + - uid: 21078 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-20.5 + pos: -21.5,13.5 parent: 2 - - uid: 2578 +- proto: SpawnMobButterfly + entities: + - uid: 13099 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-24.5 + pos: -47.5,-6.5 parent: 2 - - uid: 2579 + - uid: 13740 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-24.5 + pos: -49.5,-6.5 parent: 2 - - uid: 2580 + - uid: 13742 components: - type: Transform - pos: -10.5,-22.5 + pos: -45.5,-8.5 parent: 2 - - uid: 2584 + - uid: 14411 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-24.5 + pos: -48.5,-8.5 parent: 2 - - uid: 2585 + - uid: 16201 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-24.5 + pos: -46.5,-7.5 parent: 2 - - uid: 2588 +- proto: SpawnMobCatException + entities: + - uid: 6742 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-24.5 + pos: 59.5,10.5 parent: 2 - - uid: 2592 +- proto: SpawnMobCatSpace + entities: + - uid: 17293 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-27.5 + pos: 67.5,-53.5 parent: 2 - - uid: 2594 +- proto: SpawnMobCorgi + entities: + - uid: 2107 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-27.5 + pos: 44.5,-25.5 parent: 2 - - uid: 2596 +- proto: SpawnMobCrabAtmos + entities: + - uid: 14868 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-25.5 + pos: 19.5,-11.5 parent: 2 - - uid: 2598 +- proto: SpawnMobFoxRenault + entities: + - uid: 4579 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-27.5 + pos: 41.5,-30.5 parent: 2 - - uid: 2600 +- proto: SpawnMobMcGriff + entities: + - uid: 4990 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-28.5 + pos: 1.5,23.5 parent: 2 - - uid: 2602 +- proto: SpawnMobMedibot + entities: + - uid: 6049 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-24.5 + pos: 42.5,8.5 parent: 2 - - uid: 2605 +- proto: SpawnMobMonkeyPunpun + entities: + - uid: 12921 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-25.5 + rot: 1.5707963267948966 rad + pos: -16.5,6.5 parent: 2 - - uid: 2607 +- proto: SpawnMobPossumMorty + entities: + - uid: 12918 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-27.5 + pos: 52.5,-10.5 parent: 2 - - uid: 2608 +- proto: SpawnMobRaccoonMorticia + entities: + - uid: 5733 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-28.5 + pos: 37.5,15.5 parent: 2 - - uid: 2610 +- proto: SpawnMobShiva + entities: + - uid: 5701 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-27.5 + pos: -12.5,34.5 parent: 2 - - uid: 2613 +- proto: SpawnMobSlothPaperwork + entities: + - uid: 2109 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-28.5 + pos: -19.5,-18.5 parent: 2 - - uid: 2616 +- proto: SpawnMobSmile + entities: + - uid: 7422 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-19.5 + pos: 68.5,-22.5 parent: 2 - - uid: 2619 +- proto: SpawnPointAtmos + entities: + - uid: 2110 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-23.5 + pos: 10.5,-17.5 parent: 2 - - uid: 2620 + - uid: 2111 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-24.5 + pos: 11.5,-16.5 parent: 2 - - uid: 2621 + - uid: 2112 components: - type: Transform - pos: 10.5,-25.5 + pos: 12.5,-17.5 parent: 2 - - uid: 2623 +- proto: SpawnPointBartender + entities: + - uid: 2113 components: - type: Transform - pos: 10.5,-27.5 + pos: -14.5,7.5 parent: 2 - - uid: 2626 + - uid: 2114 components: - type: Transform - pos: 11.5,-19.5 + pos: -14.5,6.5 parent: 2 - - uid: 2628 +- proto: SpawnPointBorg + entities: + - uid: 13722 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-23.5 + pos: 63.5,-23.5 parent: 2 - - uid: 2629 + - uid: 13723 components: - type: Transform - pos: 9.5,-17.5 + pos: 64.5,-23.5 parent: 2 - - uid: 2633 + - uid: 13724 components: - type: Transform - pos: 9.5,-15.5 + pos: 65.5,-23.5 parent: 2 - - uid: 2634 + - uid: 13725 components: - type: Transform - pos: 16.5,-14.5 + pos: 65.5,-24.5 parent: 2 - - uid: 2636 + - uid: 13726 components: - type: Transform - pos: 5.5,-25.5 + pos: 64.5,-24.5 parent: 2 - - uid: 2637 + - uid: 13727 components: - type: Transform - pos: 8.5,-25.5 + pos: 63.5,-24.5 parent: 2 - - uid: 2641 +- proto: SpawnPointBotanist + entities: + - uid: 14252 components: - type: Transform - pos: 14.5,-19.5 + pos: -37.5,12.5 parent: 2 - - uid: 2643 + - uid: 14255 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-23.5 + pos: -37.5,13.5 parent: 2 - - uid: 2644 +- proto: SpawnPointBoxer + entities: + - uid: 2117 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-29.5 + pos: -32.5,-33.5 parent: 2 - - uid: 2646 + - uid: 2118 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-26.5 + pos: -33.5,-33.5 parent: 2 - - uid: 2648 + - uid: 3911 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-28.5 + pos: -35.5,-27.5 parent: 2 - - uid: 2650 + - uid: 3912 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-29.5 + pos: -32.5,-30.5 parent: 2 - - uid: 2653 +- proto: SpawnPointCaptain + entities: + - uid: 4578 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-23.5 + pos: 41.5,-28.5 parent: 2 - - uid: 2654 +- proto: SpawnPointCargoTechnician + entities: + - uid: 5736 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-24.5 + pos: 28.5,18.5 parent: 2 - - uid: 2657 + - uid: 5737 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-30.5 + pos: 26.5,18.5 parent: 2 - - uid: 2659 + - uid: 5738 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-23.5 + pos: 25.5,18.5 parent: 2 - - uid: 2660 + - uid: 5740 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-22.5 + pos: 29.5,18.5 parent: 2 - - uid: 2664 +- proto: SpawnPointChaplain + entities: + - uid: 15872 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-19.5 + pos: -31.5,-35.5 parent: 2 - - uid: 2665 +- proto: SpawnPointChef + entities: + - uid: 16118 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-10.5 + pos: -20.5,12.5 parent: 2 - - uid: 2666 +- proto: SpawnPointChemist + entities: + - uid: 6047 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-14.5 + pos: 42.5,12.5 parent: 2 - - uid: 2669 + - uid: 6048 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-14.5 + pos: 46.5,12.5 parent: 2 - - uid: 2671 +- proto: SpawnPointChiefEngineer + entities: + - uid: 2120 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-14.5 + pos: 3.5,-26.5 parent: 2 - - uid: 2674 +- proto: SpawnPointChiefMedicalOfficer + entities: + - uid: 6723 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-12.5 + pos: 55.5,11.5 parent: 2 - - uid: 2675 +- proto: SpawnPointClown + entities: + - uid: 3910 components: - type: Transform - pos: 15.5,-7.5 + pos: -28.5,-19.5 parent: 2 - - uid: 2677 +- proto: SpawnPointDetective + entities: + - uid: 10272 components: - type: Transform - pos: 15.5,-5.5 + pos: -29.5,26.5 parent: 2 - - uid: 2680 +- proto: SpawnPointHeadOfPersonnel + entities: + - uid: 2121 components: - type: Transform - pos: 15.5,-2.5 + pos: 36.5,-25.5 parent: 2 - - uid: 2726 +- proto: SpawnPointHeadOfSecurity + entities: + - uid: 5674 components: - type: Transform - pos: 17.5,-19.5 + pos: -17.5,32.5 parent: 2 - - uid: 2730 +- proto: SpawnPointJanitor + entities: + - uid: 2122 components: - type: Transform - pos: 19.5,-19.5 + pos: -17.5,-26.5 parent: 2 - - uid: 2731 + - uid: 2123 components: - type: Transform - pos: 21.5,-19.5 + pos: -16.5,-26.5 parent: 2 - - uid: 2732 + - uid: 22467 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-28.5 + pos: -18.5,-26.5 parent: 2 - - uid: 2736 +- proto: SpawnPointLatejoin + entities: + - uid: 5022 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,16.5 + pos: -47.5,-46.5 parent: 2 - - uid: 2738 +- proto: SpawnPointLawyer + entities: + - uid: 5968 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,15.5 + pos: -48.5,-14.5 parent: 2 - - uid: 2740 +- proto: SpawnPointLibrarian + entities: + - uid: 15871 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,16.5 + pos: -18.5,-9.5 parent: 2 - - uid: 2741 +- proto: SpawnPointMedicalDoctor + entities: + - uid: 6720 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,16.5 + pos: 55.5,3.5 parent: 2 - - uid: 2759 + - uid: 6721 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-1.5 + pos: 56.5,3.5 parent: 2 - - uid: 2761 + - uid: 6722 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-1.5 + pos: 57.5,3.5 parent: 2 - - uid: 2766 +- proto: SpawnPointMedicalIntern + entities: + - uid: 6724 components: - type: Transform - pos: 24.5,-19.5 + pos: 56.5,2.5 parent: 2 - - uid: 2767 + - uid: 6725 components: - type: Transform - pos: 25.5,-19.5 + pos: 57.5,2.5 parent: 2 - - uid: 2770 +- proto: SpawnPointMime + entities: + - uid: 3909 components: - type: Transform - pos: 26.5,-17.5 + pos: -33.5,-19.5 parent: 2 - - uid: 2772 + - uid: 3913 components: - type: Transform - pos: 26.5,-14.5 + pos: -33.5,6.5 parent: 2 - - uid: 2774 +- proto: SpawnPointMusician + entities: + - uid: 2124 components: - type: Transform - pos: 24.5,-23.5 + pos: -24.5,1.5 parent: 2 - - uid: 2777 + - uid: 3908 components: - type: Transform - pos: 24.5,-20.5 + pos: -38.5,-19.5 parent: 2 - - uid: 2779 +- proto: SpawnPointObserver + entities: + - uid: 21965 components: - type: Transform - pos: 28.5,-9.5 + pos: -33.5,0.5 parent: 2 - - uid: 2780 +- proto: SpawnPointParamedic + entities: + - uid: 6718 components: - type: Transform - pos: 28.5,-7.5 + pos: 55.5,7.5 parent: 2 - - uid: 2781 + - uid: 6719 components: - type: Transform - pos: 30.5,-9.5 + pos: 56.5,7.5 parent: 2 - - uid: 2784 +- proto: SpawnPointPassenger + entities: + - uid: 15639 components: - type: Transform - pos: 29.5,-14.5 + pos: -36.5,-9.5 parent: 2 - - uid: 2786 + - uid: 15641 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-4.5 + pos: -28.5,-9.5 parent: 2 - - uid: 2788 + - uid: 15642 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-2.5 + pos: -35.5,-13.5 parent: 2 - - uid: 2790 + - uid: 15643 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-1.5 + pos: -35.5,-14.5 parent: 2 - - uid: 2791 + - uid: 15644 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-1.5 + pos: -32.5,-13.5 parent: 2 - - uid: 2792 + - uid: 15645 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-1.5 + pos: -32.5,-14.5 parent: 2 - - uid: 2793 + - uid: 15646 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-2.5 + pos: -29.5,-13.5 parent: 2 - - uid: 2795 + - uid: 15647 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-4.5 + pos: -29.5,-14.5 parent: 2 - - uid: 2798 +- proto: SpawnPointQuartermaster + entities: + - uid: 5693 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-1.5 + pos: 37.5,13.5 parent: 2 - - uid: 2800 +- proto: SpawnPointReporter + entities: + - uid: 5966 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-3.5 + pos: -55.5,-28.5 parent: 2 - - uid: 2802 + - uid: 5967 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-5.5 + pos: -54.5,-28.5 parent: 2 - - uid: 2804 +- proto: SpawnPointResearchAssistant + entities: + - uid: 23342 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-1.5 + pos: 69.5,-12.5 parent: 2 - - uid: 2807 +- proto: SpawnPointResearchDirector + entities: + - uid: 7450 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-4.5 + pos: 71.5,-22.5 parent: 2 - - uid: 2812 +- proto: SpawnPointSalvageSpecialist + entities: + - uid: 5704 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-3.5 + pos: 35.5,19.5 parent: 2 - - uid: 2814 + - uid: 5715 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-5.5 + pos: 35.5,20.5 parent: 2 - - uid: 2816 + - uid: 5735 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-1.5 + pos: 35.5,21.5 parent: 2 - - uid: 2819 +- proto: SpawnPointScientist + entities: + - uid: 7447 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-4.5 + pos: 69.5,-13.5 parent: 2 - - uid: 2822 + - uid: 7449 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-17.5 + pos: 68.5,-13.5 parent: 2 - - uid: 2823 + - uid: 20553 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-17.5 + pos: 70.5,-13.5 parent: 2 - - uid: 2838 +- proto: SpawnPointSecurityCadet + entities: + - uid: 5675 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-5.5 + pos: -6.5,33.5 parent: 2 - - uid: 2839 +- proto: SpawnPointSecurityOfficer + entities: + - uid: 5676 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-5.5 + pos: -9.5,33.5 parent: 2 - - uid: 2842 + - uid: 5677 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-5.5 + pos: -8.5,33.5 parent: 2 - - uid: 2844 + - uid: 5678 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-7.5 + pos: -7.5,33.5 parent: 2 - - uid: 2846 +- proto: SpawnPointServiceWorker + entities: + - uid: 2126 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-9.5 + pos: -32.5,0.5 parent: 2 - - uid: 2847 + - uid: 2127 components: - type: Transform - pos: 22.5,-32.5 + pos: -34.5,0.5 parent: 2 - - uid: 2849 + - uid: 2128 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-17.5 + pos: -36.5,0.5 parent: 2 - - uid: 2851 + - uid: 2129 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-17.5 + pos: -30.5,0.5 parent: 2 - - uid: 2852 +- proto: SpawnPointStationEngineer + entities: + - uid: 2130 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-14.5 + pos: -9.5,-18.5 parent: 2 - - uid: 2853 + - uid: 2131 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-14.5 + pos: -8.5,-18.5 parent: 2 - - uid: 2854 + - uid: 2132 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-13.5 + pos: -7.5,-18.5 parent: 2 - - uid: 2856 +- proto: SpawnPointTechnicalAssistant + entities: + - uid: 2133 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-11.5 + pos: 1.5,-22.5 parent: 2 - - uid: 2859 + - uid: 2134 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-9.5 + pos: 1.5,-23.5 parent: 2 - - uid: 2862 +- proto: SpawnPointWarden + entities: + - uid: 5673 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-17.5 + pos: 2.5,24.5 parent: 2 - - uid: 2864 +- proto: Spear + entities: + - uid: 20997 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-16.5 + pos: 91.5888,-20.49667 parent: 2 - - uid: 2866 + - uid: 20998 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-8.5 + pos: 91.44817,-20.40292 parent: 2 - - uid: 2932 +- proto: SpiderWeb + entities: + - uid: 2136 components: - type: Transform - pos: 37.5,-17.5 + rot: 3.141592653589793 rad + pos: -15.5,14.5 parent: 2 - - uid: 2933 +- proto: SprayBottle + entities: + - uid: 8194 components: - type: Transform - pos: 38.5,-17.5 + pos: -13.281918,-24.159872 parent: 2 - - uid: 2935 + - uid: 8430 components: - type: Transform - pos: 40.5,-17.5 + pos: -13.465376,-24.172104 parent: 2 - - uid: 2936 +- proto: SprayBottleWater + entities: + - uid: 6926 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-22.5 + pos: 58.459965,18.571264 parent: 2 - - uid: 2938 +- proto: StairDark + entities: + - uid: 3105 components: - type: Transform - pos: 37.5,-21.5 + pos: 26.5,4.5 parent: 2 - - uid: 2940 + - uid: 3106 components: - type: Transform - pos: 35.5,-21.5 + pos: 25.5,4.5 parent: 2 - - uid: 2942 + - uid: 3107 components: - type: Transform - pos: 30.5,-21.5 + pos: 24.5,4.5 parent: 2 - - uid: 2946 +- proto: Stairs + entities: + - uid: 2682 components: - type: Transform - pos: 30.5,-25.5 + pos: -46.5,-45.5 parent: 2 - - uid: 2948 + - uid: 2684 components: - type: Transform - pos: 30.5,-27.5 + pos: -47.5,-45.5 parent: 2 - - uid: 2950 + - uid: 2687 components: - type: Transform - pos: 22.5,-28.5 + pos: -48.5,-45.5 parent: 2 - - uid: 2953 + - uid: 3741 components: - type: Transform - pos: 22.5,-31.5 + rot: 1.5707963267948966 rad + pos: -40.5,2.5 parent: 2 - - uid: 2955 + - uid: 3742 components: - type: Transform - pos: 22.5,-34.5 + rot: 1.5707963267948966 rad + pos: -40.5,1.5 parent: 2 - - uid: 2956 + - uid: 3743 components: - type: Transform - pos: 18.5,-35.5 + rot: 1.5707963267948966 rad + pos: -40.5,0.5 parent: 2 - - uid: 2975 + - uid: 3829 components: - type: Transform - pos: 3.5,-32.5 + rot: -1.5707963267948966 rad + pos: -42.5,-28.5 parent: 2 - - uid: 2976 + - uid: 3830 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-38.5 + rot: -1.5707963267948966 rad + pos: -42.5,-27.5 parent: 2 - - uid: 2979 + - uid: 5932 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,-38.5 + pos: 41.5,-17.5 parent: 2 - - uid: 2980 + - uid: 5933 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,-33.5 + pos: 42.5,-17.5 parent: 2 - - uid: 2992 + - uid: 5934 components: - type: Transform - pos: 31.5,-22.5 + rot: 3.141592653589793 rad + pos: 43.5,-17.5 parent: 2 - - uid: 2994 + - uid: 5935 components: - type: Transform rot: 1.5707963267948966 rad - pos: 34.5,-23.5 + pos: 4.5,21.5 parent: 2 - - uid: 2995 + - uid: 5936 components: - type: Transform - pos: 34.5,-26.5 + rot: 1.5707963267948966 rad + pos: 4.5,20.5 parent: 2 - - uid: 3000 + - uid: 5937 components: - type: Transform rot: 1.5707963267948966 rad - pos: 37.5,-23.5 + pos: 4.5,19.5 parent: 2 - - uid: 3001 + - uid: 5938 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-23.5 + rot: -1.5707963267948966 rad + pos: -9.5,21.5 parent: 2 - - uid: 3003 + - uid: 5939 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-27.5 + rot: -1.5707963267948966 rad + pos: -9.5,20.5 parent: 2 - - uid: 3004 + - uid: 5940 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-27.5 + rot: -1.5707963267948966 rad + pos: -9.5,19.5 parent: 2 - - uid: 3006 + - uid: 5941 components: - type: Transform rot: 1.5707963267948966 rad - pos: 35.5,-27.5 + pos: 30.5,3.5 parent: 2 - - uid: 3009 + - uid: 5943 components: - type: Transform rot: 1.5707963267948966 rad - pos: 46.5,-23.5 + pos: 30.5,4.5 parent: 2 - - uid: 3016 + - uid: 5944 components: - type: Transform rot: 1.5707963267948966 rad - pos: 45.5,-26.5 + pos: 30.5,2.5 parent: 2 - - uid: 3018 + - uid: 7119 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-26.5 + rot: -1.5707963267948966 rad + pos: 59.5,-22.5 parent: 2 - - uid: 3020 + - uid: 7120 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-26.5 + rot: -1.5707963267948966 rad + pos: 59.5,-23.5 parent: 2 - - uid: 3022 + - uid: 8464 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-26.5 + rot: 3.141592653589793 rad + pos: 33.5,-21.5 parent: 2 - - uid: 3028 + - uid: 21884 components: - type: Transform - pos: 50.5,-21.5 + rot: 3.141592653589793 rad + pos: 32.5,-21.5 parent: 2 - - uid: 3033 + - uid: 21885 components: - type: Transform - pos: 50.5,-25.5 + rot: 3.141592653589793 rad + pos: 47.5,-21.5 parent: 2 - - uid: 3047 + - uid: 21886 components: - type: Transform - pos: 4.5,-39.5 + rot: 3.141592653589793 rad + pos: 48.5,-21.5 parent: 2 - - uid: 3055 +- proto: StairStage + entities: + - uid: 2150 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-13.5 + rot: 1.5707963267948966 rad + pos: -29.5,4.5 parent: 2 - - uid: 3059 + - uid: 2151 components: - type: Transform rot: -1.5707963267948966 rad - pos: 37.5,-13.5 + pos: -37.5,4.5 parent: 2 - - uid: 3103 +- proto: StairWood + entities: + - uid: 8154 components: - type: Transform rot: 3.141592653589793 rad - pos: -14.5,-28.5 - parent: 2 - - uid: 3114 - components: - - type: Transform - pos: -22.5,-32.5 + pos: -20.5,-20.5 parent: 2 - - uid: 3155 + - uid: 8963 components: - type: Transform - pos: -19.5,22.5 + rot: -1.5707963267948966 rad + pos: -20.5,-0.5 parent: 2 - - uid: 3162 + - uid: 13333 components: - type: Transform - pos: -12.5,22.5 + rot: -1.5707963267948966 rad + pos: -20.5,0.5 parent: 2 - - uid: 3176 + - uid: 14396 components: - type: Transform - pos: 5.5,22.5 + rot: -1.5707963267948966 rad + pos: -20.5,3.5 parent: 2 - - uid: 3179 + - uid: 14397 components: - type: Transform - pos: 2.5,22.5 + rot: -1.5707963267948966 rad + pos: -20.5,2.5 parent: 2 - - uid: 3181 + - uid: 15046 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,22.5 + pos: -20.5,1.5 parent: 2 - - uid: 3185 + - uid: 21558 components: - type: Transform - pos: -4.5,24.5 + rot: 3.141592653589793 rad + pos: -18.5,-20.5 parent: 2 - - uid: 3189 +- proto: StasisBed + entities: + - uid: 6583 components: - type: Transform - pos: -8.5,22.5 + pos: 55.5,-0.5 parent: 2 - - uid: 3249 +- proto: StationAiUploadComputer + entities: + - uid: 20815 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,15.5 + rot: -1.5707963267948966 rad + pos: 23.5,-53.5 parent: 2 - - uid: 3250 +- proto: StationAnchor + entities: + - uid: 14912 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,16.5 + pos: 62.5,-35.5 parent: 2 - - uid: 3251 +- proto: StationBeaconPart + entities: + - uid: 21365 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,16.5 + pos: 30.702707,-1.6835423 parent: 2 - - uid: 3287 + - uid: 21366 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,19.5 + pos: 30.441788,-1.871078 parent: 2 - - uid: 3309 + - uid: 21367 components: - type: Transform - pos: -55.5,-5.5 + pos: 30.572248,-1.7732333 parent: 2 - - uid: 3310 +- proto: StationEfficiencyCircuitBoard + entities: + - uid: 21076 components: - type: Transform - pos: 29.5,-0.5 + pos: 14.458807,-65.50417 parent: 2 - - uid: 3453 +- proto: StationMap + entities: + - uid: 7556 components: - type: Transform - pos: -36.5,-37.5 + pos: 48.5,-17.5 parent: 2 - - uid: 3564 + - uid: 13592 components: - type: Transform rot: 1.5707963267948966 rad - pos: -55.5,7.5 + pos: -26.5,-23.5 parent: 2 - - uid: 3572 + - uid: 13593 components: - type: Transform rot: -1.5707963267948966 rad - pos: -55.5,8.5 + pos: -17.5,18.5 parent: 2 - - uid: 3575 + - uid: 13594 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,-4.5 + pos: 41.5,6.5 parent: 2 - - uid: 3591 + - uid: 13595 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,3.5 + rot: 3.141592653589793 rad + pos: 8.5,-34.5 parent: 2 - - uid: 3600 + - uid: 20200 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-48.5 + parent: 2 + - uid: 20438 components: - type: Transform rot: 1.5707963267948966 rad - pos: -55.5,-2.5 + pos: 3.5,-19.5 parent: 2 - - uid: 3615 + - uid: 20439 components: - type: Transform rot: -1.5707963267948966 rad - pos: -51.5,8.5 + pos: 50.5,-28.5 parent: 2 - - uid: 3656 + - uid: 20440 components: - type: Transform - pos: -55.5,9.5 + rot: -1.5707963267948966 rad + pos: 66.5,-14.5 parent: 2 - - uid: 3658 + - uid: 20441 components: - type: Transform - pos: -55.5,11.5 + rot: 1.5707963267948966 rad + pos: 48.5,14.5 parent: 2 - - uid: 3659 + - uid: 20442 components: - type: Transform - pos: -54.5,11.5 + rot: -1.5707963267948966 rad + pos: 0.5,32.5 parent: 2 - - uid: 3663 + - uid: 20443 components: - type: Transform - pos: -51.5,10.5 + rot: 1.5707963267948966 rad + pos: 29.5,9.5 parent: 2 - - uid: 3665 + - uid: 21889 components: - type: Transform - pos: -51.5,12.5 + rot: 3.141592653589793 rad + pos: -52.5,-48.5 parent: 2 - - uid: 3666 + - uid: 22399 components: - type: Transform - pos: -51.5,13.5 + rot: 1.5707963267948966 rad + pos: 17.5,-53.5 parent: 2 - - uid: 3747 +- proto: StoolBar + entities: + - uid: 2152 components: - type: Transform - pos: -55.5,-7.5 + rot: 1.5707963267948966 rad + pos: -17.5,3.5 parent: 2 - - uid: 3748 + - uid: 2153 components: - type: Transform - pos: -55.5,-8.5 + rot: 1.5707963267948966 rad + pos: -17.5,2.5 parent: 2 - - uid: 3760 + - uid: 2154 components: - type: Transform - pos: -55.5,-10.5 + rot: 1.5707963267948966 rad + pos: -17.5,1.5 parent: 2 - - uid: 3761 + - uid: 2155 components: - type: Transform - pos: -55.5,-11.5 + rot: 1.5707963267948966 rad + pos: -17.5,0.5 parent: 2 - - uid: 3763 + - uid: 2156 components: - type: Transform - pos: -55.5,-13.5 + rot: 1.5707963267948966 rad + pos: -17.5,-0.5 parent: 2 - - uid: 3790 + - uid: 14965 components: - type: Transform - pos: -55.5,-14.5 + pos: -35.5,24.5 parent: 2 - - uid: 3793 + - uid: 14966 components: - type: Transform - pos: -55.5,-17.5 + pos: -36.5,24.5 parent: 2 - - uid: 3907 + - uid: 15024 components: - type: Transform - pos: 41.5,6.5 + pos: -34.5,24.5 parent: 2 - - uid: 3917 + - uid: 16635 components: - type: Transform - pos: 34.5,-28.5 + rot: 3.141592653589793 rad + pos: 14.5,34.5 parent: 2 - - uid: 3919 + - uid: 16636 components: - type: Transform - pos: 34.5,-30.5 + rot: 3.141592653589793 rad + pos: 15.5,34.5 parent: 2 - - uid: 3921 + - uid: 16637 components: - type: Transform - pos: 35.5,-31.5 + rot: 3.141592653589793 rad + pos: 16.5,34.5 parent: 2 - - uid: 3925 + - uid: 16918 components: - type: Transform - pos: 39.5,-31.5 + pos: -37.5,24.5 parent: 2 - - uid: 3929 +- proto: StorageCanister + entities: + - uid: 2157 components: - type: Transform - pos: 46.5,-27.5 + pos: -1.5,-19.5 parent: 2 - - uid: 3930 + - uid: 2158 components: - type: Transform - pos: 46.5,-28.5 + pos: -0.5,-19.5 parent: 2 - - uid: 3933 + - uid: 2159 components: - type: Transform - pos: 46.5,-31.5 + pos: -0.5,-20.5 parent: 2 - - uid: 3935 + - uid: 2160 components: - type: Transform - pos: 44.5,-31.5 + pos: -1.5,-20.5 parent: 2 - - uid: 3939 + - uid: 2161 components: - type: Transform - pos: 41.5,-31.5 + pos: 26.5,-2.5 parent: 2 - - uid: 3940 + - uid: 2162 components: - type: Transform - pos: 50.5,-28.5 + pos: 25.5,-17.5 parent: 2 - - uid: 3945 + - uid: 2163 components: - type: Transform - pos: 50.5,-33.5 + pos: 25.5,-16.5 parent: 2 - - uid: 3946 + - uid: 2164 components: - type: Transform - pos: 50.5,-34.5 + pos: 25.5,-18.5 parent: 2 - - uid: 3948 + - uid: 7394 components: - type: Transform - pos: 50.5,-36.5 + pos: 73.5,-11.5 parent: 2 - - uid: 3950 + - uid: 7395 components: - type: Transform - pos: 30.5,-28.5 + pos: 73.5,-12.5 parent: 2 - - uid: 3953 + - uid: 14854 components: - type: Transform - pos: 30.5,-31.5 + pos: -16.5,17.5 parent: 2 - - uid: 3955 +- proto: SubstationBasic + entities: + - uid: 2165 components: + - type: MetaData + name: Singularity substation - type: Transform - pos: 30.5,-33.5 + pos: 2.5,-17.5 parent: 2 - - uid: 3957 + - uid: 2166 components: + - type: MetaData + name: Central Substation - type: Transform - pos: 30.5,-35.5 + pos: -3.5,15.5 parent: 2 - - uid: 3959 + - uid: 2167 components: + - type: MetaData + name: East Substation - type: Transform - pos: 21.5,-53.5 + pos: 37.5,-14.5 parent: 2 - - uid: 3965 + - uid: 3700 components: + - type: MetaData + name: Evacuation Substation - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-38.5 + pos: -52.5,10.5 parent: 2 - - uid: 3968 + - uid: 5971 components: + - type: MetaData + name: Cargo Substation - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-38.5 + pos: 38.5,6.5 parent: 2 - - uid: 3970 + - uid: 6135 components: + - type: MetaData + name: Command Substation - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-38.5 + pos: 51.5,-28.5 parent: 2 - - uid: 3971 + - uid: 6983 components: + - type: MetaData + name: South-West Substation - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-38.5 + pos: -37.5,-37.5 parent: 2 - - uid: 4040 + - uid: 8524 components: + - type: MetaData + name: Arrivals Substation - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,-20.5 + pos: -36.5,-53.5 parent: 2 - - uid: 4137 + - uid: 9108 components: + - type: MetaData + name: Science Substation - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-34.5 + pos: 61.5,-32.5 parent: 2 - - uid: 4139 + - uid: 9117 components: + - type: MetaData + name: Medical Substation - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-34.5 + pos: 65.5,10.5 parent: 2 - - uid: 4140 + - uid: 9196 components: + - type: MetaData + name: Security Substation - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-34.5 + pos: -22.5,35.5 parent: 2 - - uid: 4142 + - uid: 9203 components: + - type: MetaData + name: South Substation - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-34.5 + pos: 14.5,-38.5 parent: 2 - - uid: 4184 + - uid: 9212 components: + - type: MetaData + name: West Substation - type: Transform - pos: 22.5,21.5 + pos: -61.5,-20.5 parent: 2 - - uid: 4186 + - uid: 9275 components: + - type: MetaData + name: Engineering substation - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,6.5 + pos: -0.5,-17.5 parent: 2 - - uid: 4188 + - uid: 10576 components: + - type: MetaData + name: Secure Command Substation - type: Transform - pos: 22.5,18.5 + pos: 54.5,-41.5 parent: 2 - - uid: 4189 + - uid: 17231 components: + - type: MetaData + name: Outpost Substation - type: Transform - pos: 22.5,17.5 + pos: 66.5,-49.5 parent: 2 - - uid: 4190 + - uid: 20937 components: + - type: MetaData + name: Rage Cage Substation - type: Transform - pos: 22.5,16.5 + pos: 89.5,-22.5 parent: 2 - - uid: 4198 + - uid: 22069 components: + - type: MetaData + name: AI Core substation - type: Transform - pos: 22.5,7.5 + pos: 24.5,-63.5 parent: 2 - - uid: 4199 +- proto: SubstationMachineCircuitboard + entities: + - uid: 5879 components: - type: Transform - pos: 22.5,5.5 + pos: 54.525455,-38.59651 parent: 2 - - uid: 4200 +- proto: SuitStorageAtmos + entities: + - uid: 2168 components: - type: Transform - pos: 22.5,9.5 + pos: 10.5,-15.5 parent: 2 - - uid: 4213 + - uid: 2169 components: - type: Transform - pos: 29.5,0.5 + pos: 11.5,-15.5 parent: 2 - - uid: 4214 + - uid: 2170 components: - type: Transform - pos: 29.5,1.5 + pos: 12.5,-15.5 parent: 2 - - uid: 4215 +- proto: SuitStorageCaptain + entities: + - uid: 12703 components: - type: Transform - pos: 30.5,1.5 + pos: 43.5,-27.5 parent: 2 - - uid: 4216 +- proto: SuitStorageCE + entities: + - uid: 2171 components: - type: Transform - pos: 31.5,1.5 + pos: 0.5,-25.5 parent: 2 - - uid: 4245 +- proto: SuitStorageCMO + entities: + - uid: 6736 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-50.5 + pos: 56.5,12.5 parent: 2 - - uid: 4247 +- proto: SuitStorageEngi + entities: + - uid: 2172 components: - type: Transform - pos: 44.5,-5.5 + pos: -4.5,-19.5 parent: 2 - - uid: 4250 + - uid: 2173 components: - type: Transform - pos: 44.5,-2.5 + pos: -5.5,-19.5 parent: 2 - - uid: 4253 + - uid: 2174 components: - type: Transform - pos: 44.5,0.5 + pos: -3.5,-19.5 parent: 2 - - uid: 4265 + - uid: 8113 components: - type: Transform - pos: 35.5,5.5 + pos: -5.5,-33.5 parent: 2 - - uid: 4267 + - uid: 8114 components: - type: Transform - pos: 33.5,5.5 + pos: -4.5,-33.5 parent: 2 - - uid: 4268 +- proto: SuitStorageEVA + entities: + - uid: 7606 components: - type: Transform - pos: 32.5,5.5 + pos: 25.5,-35.5 parent: 2 - - uid: 4271 + - uid: 7607 components: - type: Transform - pos: 30.5,5.5 + pos: 23.5,-35.5 parent: 2 - - uid: 4272 + - uid: 7608 components: - type: Transform - pos: 29.5,5.5 + pos: 24.5,-35.5 parent: 2 - - uid: 4274 + - uid: 7609 components: - type: Transform - pos: 27.5,5.5 + pos: 23.5,-38.5 parent: 2 - - uid: 4278 + - uid: 7610 components: - type: Transform - pos: 23.5,5.5 + pos: 24.5,-38.5 parent: 2 - - uid: 4280 + - uid: 7611 components: - type: Transform - pos: 29.5,-1.5 + pos: 25.5,-38.5 parent: 2 - - uid: 4281 +- proto: SuitStorageEVAEmergency + entities: + - uid: 7081 components: - type: Transform - pos: 29.5,-2.5 + pos: 57.5,-0.5 parent: 2 - - uid: 4282 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: SuitStorageEVAPrisoner + entities: + - uid: 8190 components: - type: Transform - pos: 29.5,-3.5 + pos: -2.5,40.5 parent: 2 - - uid: 4283 + - uid: 8191 components: - type: Transform - pos: 30.5,-3.5 + pos: -0.5,40.5 parent: 2 - - uid: 4284 +- proto: SuitStorageHOS + entities: + - uid: 5034 components: - type: Transform - pos: 31.5,-3.5 + pos: -11.5,34.5 parent: 2 - - uid: 4285 +- proto: SuitStorageRD + entities: + - uid: 7425 components: - type: Transform - pos: 32.5,-3.5 + pos: 71.5,-25.5 parent: 2 - - uid: 4286 +- proto: SuitStorageSec + entities: + - uid: 1966 components: - type: Transform - pos: 33.5,-3.5 + pos: 5.5,31.5 parent: 2 - - uid: 4287 + - uid: 1967 components: - type: Transform - pos: 34.5,-3.5 + pos: 4.5,31.5 parent: 2 - - uid: 4288 + - uid: 5041 components: - type: Transform - pos: 35.5,-3.5 + pos: 7.5,32.5 parent: 2 - - uid: 4291 + - uid: 5042 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,9.5 + pos: 7.5,31.5 parent: 2 - - uid: 4302 +- proto: SuitStorageWarden + entities: + - uid: 4956 components: - type: Transform - pos: 35.5,1.5 + pos: 5.5,23.5 parent: 2 - - uid: 4345 +- proto: SurveillanceCameraCommand + entities: + - uid: 5889 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-28.5 + rot: 1.5707963267948966 rad + pos: 54.5,-39.5 parent: 2 - - uid: 4352 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Gravity + - uid: 8964 components: - type: Transform - pos: 47.5,5.5 + rot: -1.5707963267948966 rad + pos: 19.5,-37.5 parent: 2 - - uid: 4444 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: EVA storage + - uid: 8965 components: - type: Transform - pos: 35.5,-2.5 + rot: 1.5707963267948966 rad + pos: 29.5,-43.5 parent: 2 - - uid: 4445 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Telecommunications + - uid: 8968 components: - type: Transform - pos: 35.5,-1.5 + rot: 1.5707963267948966 rad + pos: 21.5,-44.5 parent: 2 - - uid: 4446 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: High security mainframe + - uid: 8969 components: - type: Transform - pos: 35.5,-0.5 + rot: -1.5707963267948966 rad + pos: 11.5,-46.5 parent: 2 - - uid: 4447 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Camera routers + - uid: 8970 components: - type: Transform - pos: 35.5,0.5 + rot: 1.5707963267948966 rad + pos: 29.5,-38.5 parent: 2 - - uid: 4461 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Connective hallway + - uid: 8971 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,3.5 + rot: -1.5707963267948966 rad + pos: 31.5,-34.5 parent: 2 - - uid: 4475 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: West bridge + - uid: 8972 components: - type: Transform rot: 1.5707963267948966 rad - pos: -64.5,-28.5 + pos: 49.5,-34.5 parent: 2 - - uid: 4477 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: East bridge + - uid: 8975 components: - type: Transform rot: 1.5707963267948966 rad - pos: -64.5,-27.5 + pos: 33.5,-23.5 parent: 2 - - uid: 4484 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: West bridge entrance + - uid: 8976 components: - type: Transform - pos: -37.5,-39.5 + rot: -1.5707963267948966 rad + pos: 47.5,-23.5 parent: 2 - - uid: 4488 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: East bridge entrance + - uid: 8977 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-21.5 + pos: 41.5,-25.5 parent: 2 - - uid: 4558 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Head of Personel's office + - uid: 8979 components: - type: Transform - pos: 44.5,-27.5 + rot: -1.5707963267948966 rad + pos: 47.5,-29.5 parent: 2 - - uid: 4629 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: North east bridge + - uid: 8980 components: - type: Transform - pos: 50.5,-40.5 + rot: 1.5707963267948966 rad + pos: 33.5,-28.5 parent: 2 - - uid: 4662 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: North west bridge + - uid: 8981 components: - type: Transform - pos: -4.5,23.5 + pos: 25.5,-33.5 parent: 2 - - uid: 4667 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Conference room + - uid: 8984 components: - type: Transform rot: 3.141592653589793 rad - pos: -20.5,34.5 + pos: 55.5,-32.5 parent: 2 - - uid: 4678 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Vault + - uid: 15592 components: - type: Transform - pos: -8.5,24.5 + rot: 3.141592653589793 rad + pos: 7.5,-46.5 parent: 2 - - uid: 4681 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Secure board room + - uid: 16967 components: - type: Transform - pos: 1.5,26.5 + rot: -1.5707963267948966 rad + pos: 51.5,-32.5 parent: 2 - - uid: 4685 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: High security + - uid: 22356 components: - type: Transform - pos: -12.5,24.5 + rot: 1.5707963267948966 rad + pos: 20.5,-51.5 parent: 2 - - uid: 4688 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI core entrance + - uid: 22358 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,31.5 + pos: 22.5,-53.5 parent: 2 - - uid: 4689 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI upload room + - uid: 22359 components: - type: Transform - pos: -16.5,26.5 + pos: 18.5,-65.5 parent: 2 - - uid: 4693 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI core lobby + - uid: 22360 components: - type: Transform - pos: -16.5,23.5 + pos: 19.5,-73.5 parent: 2 - - uid: 4705 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI core mainframe + - uid: 22361 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,34.5 + pos: 22.5,-74.5 parent: 2 - - uid: 4716 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: East AI core mainframe + - uid: 22362 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,36.5 + pos: 16.5,-74.5 parent: 2 - - uid: 4721 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: West AI core mainframe + - uid: 22363 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,28.5 + pos: 19.5,-48.5 parent: 2 - - uid: 4723 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: High security mainframe hallway + - uid: 22364 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,26.5 + pos: 14.5,-65.5 parent: 2 - - uid: 4725 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI core break room + - uid: 22365 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,23.5 + pos: 23.5,-65.5 parent: 2 - - uid: 4726 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI core power generation + - uid: 22382 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,25.5 + rot: 3.141592653589793 rad + pos: 40.5,-32.5 parent: 2 - - uid: 4727 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: North bridge + - uid: 22473 components: - type: Transform - pos: 8.5,32.5 + pos: 18.5,-60.5 parent: 2 - - uid: 4728 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: External AI core +- proto: SurveillanceCameraEngineering + entities: + - uid: 6780 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,33.5 + rot: 3.141592653589793 rad + pos: 52.5,-28.5 parent: 2 - - uid: 4730 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Command substation + - uid: 8010 components: - type: Transform - pos: 8.5,33.5 + rot: -1.5707963267948966 rad + pos: -9.5,4.5 parent: 2 - - uid: 4738 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: North west outer singularity + - uid: 8945 components: - type: Transform rot: 3.141592653589793 rad - pos: 47.5,2.5 + pos: -11.5,-13.5 parent: 2 - - uid: 4739 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: SMES + - uid: 8946 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,29.5 + pos: -3.5,-18.5 parent: 2 - - uid: 4742 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Locker bay + - uid: 8947 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,27.5 + pos: -1.5,-12.5 parent: 2 - - uid: 4747 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Particle accelerator + - uid: 8948 components: - type: Transform - pos: 0.5,29.5 + rot: 1.5707963267948966 rad + pos: 6.5,-13.5 parent: 2 - - uid: 4768 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Singularity storage + - uid: 8949 components: - type: Transform - pos: -4.5,35.5 + rot: -1.5707963267948966 rad + pos: 4.5,-20.5 parent: 2 - - uid: 4770 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Break room + - uid: 8950 components: - type: Transform - pos: 46.5,6.5 + pos: -4.5,-23.5 parent: 2 - - uid: 4772 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Central hallway + - uid: 8952 components: - type: Transform rot: 3.141592653589793 rad - pos: 47.5,1.5 + pos: -5.5,-25.5 parent: 2 - - uid: 4776 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Front desk + - uid: 8953 components: - type: Transform - pos: -13.5,30.5 + rot: 1.5707963267948966 rad + pos: 0.5,-25.5 parent: 2 - - uid: 4779 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Chief Engineer's office + - uid: 8954 components: - type: Transform - pos: -10.5,30.5 + rot: 3.141592653589793 rad + pos: 2.5,-25.5 parent: 2 - - uid: 4782 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Chief Engineer's room + - uid: 8955 components: - type: Transform - pos: -4.5,30.5 + pos: 13.5,-22.5 parent: 2 - - uid: 4785 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmos-Engineering connection + - uid: 8956 components: - type: Transform - pos: -16.5,30.5 + rot: 1.5707963267948966 rad + pos: 17.5,-25.5 parent: 2 - - uid: 4788 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Antimatter engine + - uid: 8958 components: - type: Transform - pos: -16.5,27.5 + rot: -1.5707963267948966 rad + pos: 10.5,-16.5 parent: 2 - - uid: 4802 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmospherics supply bay + - uid: 8959 components: - type: Transform - pos: -10.5,33.5 + rot: 1.5707963267948966 rad + pos: 27.5,-9.5 parent: 2 - - uid: 4812 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: East atmospherics + - uid: 8960 components: - type: Transform - pos: -28.5,24.5 + rot: -1.5707963267948966 rad + pos: -5.5,-34.5 parent: 2 - - uid: 4813 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Spare storage + - uid: 8961 components: - type: Transform - pos: -27.5,24.5 + pos: 2.5,-37.5 parent: 2 - - uid: 4819 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: South solars + - uid: 8962 components: - type: Transform - pos: -21.5,24.5 + rot: -1.5707963267948966 rad + pos: 8.5,-39.5 parent: 2 - - uid: 4820 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Board room + - uid: 8994 components: - type: Transform - pos: -20.5,24.5 + rot: -1.5707963267948966 rad + pos: 37.5,-15.5 parent: 2 - - uid: 4824 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: East substation + - uid: 8995 components: - type: Transform - pos: -17.5,30.5 + rot: 1.5707963267948966 rad + pos: 38.5,7.5 parent: 2 - - uid: 4825 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Cargo substation + - uid: 8996 components: - type: Transform - pos: -19.5,30.5 + pos: -2.5,14.5 parent: 2 - - uid: 4828 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Central substation + - uid: 8997 components: - type: Transform - pos: -21.5,29.5 + rot: 3.141592653589793 rad + pos: -53.5,10.5 parent: 2 - - uid: 4829 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Evacuation substation + - uid: 9036 components: - type: Transform - pos: -21.5,28.5 + rot: 1.5707963267948966 rad + pos: 34.5,-0.5 parent: 2 - - uid: 4833 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Drone room + - uid: 10655 components: - type: Transform - pos: -17.5,24.5 + rot: 1.5707963267948966 rad + pos: 10.5,4.5 parent: 2 - - uid: 4838 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: North east outer singularity + - uid: 10657 components: - type: Transform - pos: -23.5,30.5 + rot: 3.141592653589793 rad + pos: 0.5,6.5 parent: 2 - - uid: 4841 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: North inner singularity + - uid: 10659 components: - type: Transform - pos: -7.5,35.5 + rot: -1.5707963267948966 rad + pos: -9.5,-3.5 parent: 2 - - uid: 4843 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: South west outer singularity + - uid: 10660 components: - type: Transform - pos: -9.5,35.5 + rot: 1.5707963267948966 rad + pos: 10.5,-3.5 parent: 2 - - uid: 4845 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: South east outer singularity + - uid: 18066 components: - type: Transform - pos: -11.5,35.5 + rot: -1.5707963267948966 rad + pos: -9.5,-22.5 parent: 2 - - uid: 4848 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: West central hallway + - uid: 18068 components: - type: Transform - pos: -15.5,31.5 + pos: 18.5,-22.5 parent: 2 - - uid: 4851 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmospheric's front desk + - uid: 19436 components: - type: Transform - pos: -14.5,35.5 + pos: 15.5,-38.5 parent: 2 - - uid: 4853 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: South substation + - uid: 20205 components: - type: Transform - pos: -15.5,35.5 + pos: -38.5,-37.5 parent: 2 - - uid: 4855 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: South west substation + - uid: 20206 components: - type: Transform - pos: -9.5,30.5 + rot: -1.5707963267948966 rad + pos: -37.5,-53.5 parent: 2 - - uid: 4862 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Arrivals Substation + - uid: 20207 components: - type: Transform - pos: -18.5,33.5 + rot: 1.5707963267948966 rad + pos: 63.5,-31.5 parent: 2 - - uid: 4865 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Science substation + - uid: 20208 components: - type: Transform - pos: -16.5,34.5 + rot: 3.141592653589793 rad + pos: 64.5,10.5 parent: 2 - - uid: 4877 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Medical substation + - uid: 20209 components: - type: Transform rot: 1.5707963267948966 rad - pos: -15.5,25.5 - parent: 2 - - uid: 4884 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,36.5 + pos: -21.5,34.5 parent: 2 - - uid: 4887 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Security substation + - uid: 20210 components: - type: Transform - pos: -63.5,-20.5 + pos: -26.5,34.5 parent: 2 - - uid: 4894 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: North solars + - uid: 20211 components: - type: Transform - pos: 1.5,33.5 + rot: -1.5707963267948966 rad + pos: -61.5,-19.5 parent: 2 - - uid: 4906 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: West substation + - uid: 22374 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,34.5 + pos: -5.5,0.5 parent: 2 - - uid: 4907 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: West inner singularity + - uid: 22375 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,34.5 + pos: 0.5,-5.5 parent: 2 - - uid: 4918 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: South inner singularity + - uid: 22376 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,38.5 + rot: 1.5707963267948966 rad + pos: 6.5,0.5 parent: 2 - - uid: 4928 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: East inner singularity + - uid: 22377 components: - type: Transform - pos: -29.5,33.5 + pos: 34.5,-16.5 parent: 2 - - uid: 4929 + - uid: 22378 components: - type: Transform - pos: -25.5,24.5 + pos: 18.5,-18.5 parent: 2 - - uid: 4934 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: South atmospherics + - uid: 22379 components: - type: Transform - pos: -0.5,35.5 + rot: -1.5707963267948966 rad + pos: 16.5,-9.5 parent: 2 - - uid: 4935 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: West atmospherics + - uid: 22380 components: - type: Transform - pos: -2.5,35.5 + rot: 3.141592653589793 rad + pos: 21.5,-8.5 parent: 2 - - uid: 4940 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: North atmospherics + - uid: 22381 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,36.5 + rot: 1.5707963267948966 rad + pos: 35.5,-11.5 parent: 2 - - uid: 4942 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmospherics blast chamber + - uid: 22405 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,36.5 + rot: 3.141592653589793 rad + pos: -31.5,38.5 parent: 2 - - uid: 4945 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Shuttle preperations room + - uid: 22497 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,36.5 + pos: 65.5,-36.5 parent: 2 - - uid: 4954 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Station anchor +- proto: SurveillanceCameraGeneral + entities: + - uid: 8420 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,27.5 + rot: 3.141592653589793 rad + pos: -56.5,-56.5 parent: 2 - - uid: 4969 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: South west arrivals + - uid: 9037 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,29.5 + pos: 13.5,25.5 parent: 2 - - uid: 4970 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Bathroom + - uid: 9038 components: - type: Transform - pos: 3.5,29.5 + pos: 38.5,-4.5 parent: 2 - - uid: 4977 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Tool room + - uid: 9039 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,35.5 + rot: 3.141592653589793 rad + pos: 6.5,-26.5 parent: 2 - - uid: 4985 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Engineering front + - uid: 9044 components: - type: Transform - pos: 1.5,39.5 + pos: -30.5,-15.5 parent: 2 - - uid: 4986 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Dorms hallway + - uid: 9047 components: - type: Transform - pos: 3.5,39.5 + rot: 1.5707963267948966 rad + pos: -43.5,-20.5 parent: 2 - - uid: 5001 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: North lounge + - uid: 9048 components: - type: Transform - pos: -10.5,37.5 + pos: -44.5,-31.5 parent: 2 - - uid: 5003 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: South lounge + - uid: 9049 components: - type: Transform - pos: -8.5,37.5 + rot: -1.5707963267948966 rad + pos: -51.5,-27.5 parent: 2 - - uid: 5009 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: West lounge + - uid: 9050 components: - type: Transform - pos: -0.5,39.5 + rot: 1.5707963267948966 rad + pos: -46.5,-42.5 parent: 2 - - uid: 5013 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Arrivals connective hallway + - uid: 9051 components: - type: Transform - pos: -7.5,38.5 + rot: 1.5707963267948966 rad + pos: -39.5,-50.5 parent: 2 - - uid: 5014 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: East arrivals + - uid: 9052 components: - type: Transform - pos: 4.5,39.5 + rot: -1.5707963267948966 rad + pos: -55.5,-50.5 parent: 2 - - uid: 5098 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: West arrivals + - uid: 9053 components: - type: Transform rot: 3.141592653589793 rad - pos: 47.5,0.5 + pos: -38.5,-56.5 parent: 2 - - uid: 5114 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: South east arrivals + - uid: 9055 components: - type: Transform - pos: -3.5,44.5 + pos: -56.5,-65.5 parent: 2 - - uid: 5124 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: South west arrivals 2 + - uid: 9056 components: - type: Transform - pos: 4.5,44.5 + pos: -42.5,-47.5 parent: 2 - - uid: 5127 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: North arrivals + - uid: 9057 components: - type: Transform - pos: 4.5,41.5 + pos: -33.5,-33.5 parent: 2 - - uid: 5134 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: South boxing arena + - uid: 9058 components: - type: Transform - pos: -7.5,41.5 + pos: -35.5,-4.5 parent: 2 - - uid: 5135 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Front cafeteria + - uid: 9059 components: - type: Transform - pos: -7.5,42.5 + pos: -28.5,-4.5 parent: 2 - - uid: 5139 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Back cafeteria + - uid: 9060 components: - type: Transform - pos: -7.5,45.5 + rot: 3.141592653589793 rad + pos: -23.5,9.5 parent: 2 - - uid: 5141 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Kitchen exterior + - uid: 9061 components: - type: Transform - pos: -7.5,47.5 + rot: 1.5707963267948966 rad + pos: -22.5,-7.5 parent: 2 - - uid: 5144 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Dorms-cafeteria hallway + - uid: 9062 components: - type: Transform - pos: 4.5,46.5 + rot: -1.5707963267948966 rad + pos: -39.5,-0.5 parent: 2 - - uid: 5146 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Cafeteria entrance + - uid: 9063 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,52.5 + rot: 3.141592653589793 rad + pos: -51.5,6.5 parent: 2 - - uid: 5153 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: North evacuation + - uid: 9064 components: - type: Transform rot: 3.141592653589793 rad - pos: 46.5,0.5 + pos: -43.5,6.5 parent: 2 - - uid: 5179 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: North evacuation 2 + - uid: 9065 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,49.5 + pos: -51.5,-3.5 parent: 2 - - uid: 5185 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: South evacuation + - uid: 9066 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,51.5 + pos: -43.5,-3.5 parent: 2 - - uid: 5189 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: South evacuation 2 + - uid: 9067 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,53.5 + pos: -26.5,20.5 parent: 2 - - uid: 5190 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Small cafeteria + - uid: 9068 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,54.5 + rot: 3.141592653589793 rad + pos: -12.5,21.5 parent: 2 - - uid: 5193 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Security hallway + - uid: 9069 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,51.5 + rot: 3.141592653589793 rad + pos: 0.5,21.5 parent: 2 - - uid: 5196 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Security front + - uid: 9070 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,48.5 + rot: 3.141592653589793 rad + pos: 9.5,21.5 parent: 2 - - uid: 5279 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: East security hallway + - uid: 9071 components: - type: Transform - pos: -7.5,40.5 + rot: 1.5707963267948966 rad + pos: 21.5,18.5 parent: 2 - - uid: 5283 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Exterior loading bay + - uid: 9072 components: - type: Transform - pos: -6.5,39.5 + rot: -1.5707963267948966 rad + pos: 19.5,9.5 parent: 2 - - uid: 5285 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Cargo hallway + - uid: 9073 components: - type: Transform - pos: -4.5,39.5 + rot: 3.141592653589793 rad + pos: 22.5,4.5 parent: 2 - - uid: 5296 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: South cargo hallway + - uid: 9074 components: - type: Transform - pos: 10.5,29.5 + pos: 27.5,2.5 parent: 2 - - uid: 5298 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Exterior secure storage + - uid: 9075 components: - type: Transform - pos: 10.5,31.5 + rot: 3.141592653589793 rad + pos: 35.5,4.5 parent: 2 - - uid: 5326 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Medical-cargo hallway + - uid: 9076 components: - type: Transform - pos: 10.5,32.5 + rot: -1.5707963267948966 rad + pos: 41.5,-4.5 parent: 2 - - uid: 5424 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Exterior tool room + - uid: 9077 components: - type: Transform - pos: 24.5,16.5 + rot: 1.5707963267948966 rad + pos: 46.5,4.5 parent: 2 - - uid: 5427 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Medical front + - uid: 9079 components: - type: Transform rot: -1.5707963267948966 rad - pos: 24.5,11.5 + pos: 41.5,-16.5 parent: 2 - - uid: 5431 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: North exterior bridge + - uid: 9080 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,9.5 + rot: 3.141592653589793 rad + pos: 48.5,-18.5 parent: 2 - - uid: 5432 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: East exterior bridge + - uid: 9081 components: - type: Transform - pos: 10.5,34.5 + rot: 3.141592653589793 rad + pos: 36.5,-18.5 parent: 2 - - uid: 5434 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: West exterior bridge + - uid: 9082 components: - type: Transform - pos: 10.5,36.5 + pos: 60.5,-20.5 parent: 2 - - uid: 5479 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Science front + - uid: 9083 components: - type: Transform - pos: 35.5,11.5 + pos: 54.5,-23.5 parent: 2 - - uid: 5483 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Exterior science + - uid: 9084 components: - type: Transform - pos: 33.5,16.5 + rot: 1.5707963267948966 rad + pos: 29.5,-21.5 parent: 2 - - uid: 5484 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Atmos-bridge hallway + - uid: 9085 components: - type: Transform - pos: 35.5,16.5 + rot: 3.141592653589793 rad + pos: 24.5,-24.5 parent: 2 - - uid: 5486 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Atmospherics front + - uid: 9086 components: - type: Transform - pos: 35.5,10.5 + rot: 1.5707963267948966 rad + pos: 21.5,-29.5 parent: 2 - - uid: 5488 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: EVA-atmos hallway + - uid: 9087 components: - type: Transform - pos: 35.5,8.5 + rot: 3.141592653589793 rad + pos: 17.5,-31.5 parent: 2 - - uid: 5489 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Exterior antimatter engine + - uid: 9088 components: - type: Transform - pos: 35.5,6.5 + pos: 8.5,-33.5 parent: 2 - - uid: 5495 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: External engineering hallway + - uid: 9090 components: - type: Transform - pos: 33.5,11.5 + pos: -2.5,-31.5 parent: 2 - - uid: 5499 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: South solars exterior + - uid: 9091 components: - type: Transform - pos: 37.5,16.5 + pos: -10.5,-31.5 parent: 2 - - uid: 5500 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Engineering-janitorial hallway + - uid: 9092 components: - type: Transform - pos: 37.5,17.5 + rot: 3.141592653589793 rad + pos: -18.5,-29.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Exterior janitorials + - uid: 9093 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-23.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: South west hallway + - uid: 9094 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-16.5 parent: 2 - - uid: 5502 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Dorms exterior + - uid: 12807 components: - type: Transform - pos: 37.5,19.5 + pos: -38.5,-65.5 parent: 2 - - uid: 5503 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: South east arrivals 2 + - uid: 18921 components: - type: Transform - pos: 37.5,20.5 + rot: 1.5707963267948966 rad + pos: 43.5,-10.5 parent: 2 - - uid: 5505 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Bridge-medical hallway + - uid: 19758 components: - type: Transform - pos: 37.5,22.5 + pos: -47.5,-8.5 parent: 2 - - uid: 5507 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Memorial room + - uid: 22393 components: - type: Transform - pos: 22.5,23.5 + rot: 3.141592653589793 rad + pos: -20.5,21.5 parent: 2 - - uid: 5509 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Dining area + - uid: 22394 components: - type: Transform - pos: 23.5,24.5 + pos: -52.5,-21.5 parent: 2 - - uid: 5511 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: North west lounge + - uid: 22395 components: - type: Transform - pos: 32.5,24.5 + rot: -1.5707963267948966 rad + pos: -54.5,-9.5 parent: 2 - - uid: 5512 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Evacuation-lounge hallway + - uid: 22404 components: - type: Transform - pos: 31.5,24.5 + pos: 10.5,23.5 parent: 2 - - uid: 5532 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: West bathroom + - uid: 22469 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,9.5 + pos: -32.5,-4.5 parent: 2 - - uid: 5559 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Vox box +- proto: SurveillanceCameraMedical + entities: + - uid: 9023 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,9.5 + pos: 41.5,7.5 parent: 2 - - uid: 5569 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Lobby + - uid: 9025 components: - type: Transform - pos: 29.5,6.5 + rot: 1.5707963267948966 rad + pos: 51.5,12.5 parent: 2 - - uid: 5570 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: North hallway + - uid: 9026 components: - type: Transform - pos: 29.5,8.5 + rot: 1.5707963267948966 rad + pos: 51.5,6.5 parent: 2 - - uid: 5616 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Central hallway + - uid: 9027 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,27.5 + rot: -1.5707963267948966 rad + pos: 48.5,-5.5 parent: 2 - - uid: 5628 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Examination bay + - uid: 9028 components: - type: Transform - pos: 38.5,16.5 + pos: 52.5,-14.5 parent: 2 - - uid: 5629 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Morgue + - uid: 9029 components: - type: Transform - pos: 38.5,15.5 + rot: 3.141592653589793 rad + pos: 57.5,-3.5 parent: 2 - - uid: 5632 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Cryogenics + - uid: 9030 components: - type: Transform - pos: 38.5,12.5 + rot: 1.5707963267948966 rad + pos: 60.5,2.5 parent: 2 - - uid: 5634 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Surgery rooms + - uid: 9031 components: - type: Transform - pos: 37.5,11.5 + rot: 1.5707963267948966 rad + pos: 57.5,3.5 parent: 2 - - uid: 5659 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Medical doctor supplies + - uid: 9032 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,0.5 + pos: 55.5,6.5 parent: 2 - - uid: 5723 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Paramedic's office + - uid: 9033 components: - type: Transform - pos: 40.5,18.5 + rot: 3.141592653589793 rad + pos: 55.5,12.5 parent: 2 - - uid: 5743 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Chief Medical Officer's office + - uid: 9035 components: - type: Transform - pos: 44.5,19.5 + pos: 59.5,14.5 parent: 2 - - uid: 5762 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Virology + - uid: 14256 components: - type: Transform - pos: -27.5,-45.5 + rot: 3.141592653589793 rad + pos: 45.5,16.5 parent: 2 - - uid: 5774 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Chemistry + - uid: 22383 components: - type: Transform - pos: 45.5,6.5 + pos: 45.5,-4.5 parent: 2 - - uid: 5775 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Examination room 2 + - uid: 22384 components: - type: Transform - pos: 47.5,4.5 + pos: 45.5,-1.5 parent: 2 - - uid: 5778 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Examination room 1 + - uid: 22385 components: - type: Transform - pos: 40.5,6.5 + pos: 45.5,-7.5 parent: 2 - - uid: 5779 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Examination room 3 + - uid: 22386 components: - type: Transform - pos: 27.5,-57.5 + pos: 55.5,-1.5 parent: 2 - - uid: 5780 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Examination room 4 + - uid: 22387 components: - type: Transform - pos: -34.5,-46.5 + pos: 55.5,-7.5 parent: 2 - - uid: 5787 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Examination room 5 + - uid: 22388 components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,-42.5 + pos: 62.5,4.5 parent: 2 - - uid: 5788 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Surgery room 1 + - uid: 22389 components: - type: Transform - pos: 0.5,40.5 + pos: 62.5,0.5 parent: 2 - - uid: 5802 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Surgery room 2 + - uid: 22390 components: - type: Transform - pos: -3.5,40.5 + pos: 54.5,14.5 parent: 2 - - uid: 5810 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Virology connective hallway +- proto: SurveillanceCameraRouterCommand + entities: + - uid: 7976 components: - type: Transform - pos: 55.5,-39.5 + pos: 11.5,-44.5 parent: 2 - - uid: 5814 +- proto: SurveillanceCameraRouterConstructed + entities: + - uid: 7749 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-34.5 + pos: 11.5,-49.5 parent: 2 - - uid: 5817 +- proto: SurveillanceCameraRouterEngineering + entities: + - uid: 7957 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-31.5 + pos: 13.5,-48.5 parent: 2 - - uid: 5820 +- proto: SurveillanceCameraRouterGeneral + entities: + - uid: 7953 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,-36.5 + pos: 16.5,-48.5 parent: 2 - - uid: 5821 +- proto: SurveillanceCameraRouterMedical + entities: + - uid: 7958 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-36.5 + pos: 13.5,-49.5 parent: 2 - - uid: 5823 +- proto: SurveillanceCameraRouterScience + entities: + - uid: 7956 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-36.5 + pos: 14.5,-48.5 parent: 2 - - uid: 5824 +- proto: SurveillanceCameraRouterSecurity + entities: + - uid: 7977 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-36.5 + pos: 14.5,-44.5 parent: 2 - - uid: 5826 +- proto: SurveillanceCameraRouterService + entities: + - uid: 7954 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,-35.5 + pos: 16.5,-49.5 parent: 2 - - uid: 5827 +- proto: SurveillanceCameraRouterSupply + entities: + - uid: 7955 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,-34.5 + pos: 14.5,-49.5 parent: 2 - - uid: 5829 +- proto: SurveillanceCameraScience + entities: + - uid: 8985 components: - type: Transform rot: 3.141592653589793 rad - pos: 59.5,-32.5 + pos: 62.5,-22.5 parent: 2 - - uid: 5832 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Robotics + - uid: 8986 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-30.5 + rot: 1.5707963267948966 rad + pos: 71.5,-26.5 parent: 2 - - uid: 5834 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Server room + - uid: 8988 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-30.5 + pos: 70.5,-18.5 parent: 2 - - uid: 5837 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Connective hallway + - uid: 8989 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-31.5 + rot: -1.5707963267948966 rad + pos: 73.5,-14.5 parent: 2 - - uid: 5839 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Xenoarchaeology labs + - uid: 8990 components: - type: Transform rot: 3.141592653589793 rad - pos: 56.5,-31.5 + pos: 70.5,-7.5 parent: 2 - - uid: 5840 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Anomaly centre + - uid: 8991 components: - type: Transform rot: 3.141592653589793 rad - pos: 55.5,-31.5 + pos: 60.5,-11.5 parent: 2 - - uid: 5841 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Reception desk + - uid: 8992 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,-31.5 + rot: 1.5707963267948966 rad + pos: 65.5,-14.5 parent: 2 - - uid: 5842 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Central hallway +- proto: SurveillanceCameraSecurity + entities: + - uid: 8998 components: - type: Transform rot: 3.141592653589793 rad - pos: 60.5,-30.5 + pos: -13.5,29.5 parent: 2 - - uid: 5844 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: West hallway + - uid: 8999 components: - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,-32.5 + rot: 1.5707963267948966 rad + pos: -0.5,29.5 parent: 2 - - uid: 5848 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Main hallway + - uid: 9000 components: - type: Transform rot: 3.141592653589793 rad - pos: 60.5,-36.5 + pos: -5.5,34.5 parent: 2 - - uid: 5849 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Officer supply room + - uid: 9001 components: - type: Transform rot: 3.141592653589793 rad - pos: 60.5,-37.5 + pos: -13.5,34.5 parent: 2 - - uid: 5851 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Head of Security's office + - uid: 9003 components: - type: Transform rot: 3.141592653589793 rad - pos: 58.5,-37.5 + pos: -19.5,29.5 parent: 2 - - uid: 5853 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Interrogation room + - uid: 9004 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-37.5 + rot: -1.5707963267948966 rad + pos: -7.5,24.5 parent: 2 - - uid: 5856 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Prison 1 + - uid: 9005 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-37.5 + rot: -1.5707963267948966 rad + pos: -11.5,24.5 parent: 2 - - uid: 5858 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Prison 2 + - uid: 9006 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-37.5 + rot: -1.5707963267948966 rad + pos: -15.5,24.5 parent: 2 - - uid: 5859 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Prison 3 + - uid: 9007 components: - type: Transform rot: 3.141592653589793 rad - pos: 53.5,-26.5 + pos: -0.5,25.5 parent: 2 - - uid: 5861 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Security lobby + - uid: 9008 components: - type: Transform rot: 3.141592653589793 rad - pos: 53.5,-24.5 + pos: 3.5,28.5 parent: 2 - - uid: 5863 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Warden's office + - uid: 9009 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-24.5 + pos: 6.5,30.5 parent: 2 - - uid: 5865 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Armory + - uid: 9010 components: - type: Transform - pos: 56.5,-24.5 + rot: 3.141592653589793 rad + pos: 1.5,48.5 parent: 2 - - uid: 5866 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Central perma + - uid: 9011 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-40.5 + rot: 1.5707963267948966 rad + pos: 2.5,53.5 parent: 2 - - uid: 5869 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Perma hydroponics + - uid: 9012 components: - type: Transform - pos: 59.5,-25.5 + rot: 1.5707963267948966 rad + pos: -4.5,42.5 parent: 2 - - uid: 5874 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Perma room 2 + - uid: 9013 components: - type: Transform - pos: 53.5,-42.5 + rot: -1.5707963267948966 rad + pos: 1.5,42.5 parent: 2 - - uid: 5877 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Perma room 1 + - uid: 9045 components: - type: Transform - pos: 52.5,-42.5 + rot: 3.141592653589793 rad + pos: -48.5,-12.5 parent: 2 - - uid: 5880 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Lawyer office + - uid: 9046 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-41.5 + rot: 3.141592653589793 rad + pos: -45.5,-13.5 parent: 2 - - uid: 5884 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Lawyer conference room + - uid: 12808 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-52.5 + rot: 3.141592653589793 rad + pos: -0.5,38.5 parent: 2 - - uid: 5891 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Security-perma hallway + - uid: 12809 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,-43.5 + rot: 1.5707963267948966 rad + pos: -0.5,43.5 parent: 2 - - uid: 5902 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Perma entrance + - uid: 20212 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-42.5 + rot: 1.5707963267948966 rad + pos: -24.5,29.5 parent: 2 - - uid: 5952 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Detective's office +- proto: SurveillanceCameraService + entities: + - uid: 8924 components: - type: Transform - pos: 39.5,7.5 + rot: 3.141592653589793 rad + pos: -18.5,3.5 parent: 2 - - uid: 5954 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Bar + - uid: 8925 components: - type: Transform - pos: 39.5,9.5 + rot: 1.5707963267948966 rad + pos: -13.5,-3.5 parent: 2 - - uid: 5955 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Bar lounge + - uid: 8929 components: - type: Transform - pos: 40.5,9.5 + rot: 3.141592653589793 rad + pos: -31.5,7.5 parent: 2 - - uid: 5959 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Theatre + - uid: 8930 components: - type: Transform - pos: 40.5,13.5 + rot: 3.141592653589793 rad + pos: -19.5,-12.5 parent: 2 - - uid: 5963 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Game room + - uid: 8932 components: - type: Transform - pos: 41.5,14.5 + rot: 3.141592653589793 rad + pos: -19.5,-17.5 parent: 2 - - uid: 6000 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Library + - uid: 8933 components: - type: Transform rot: 1.5707963267948966 rad - pos: 44.5,17.5 + pos: -13.5,-26.5 parent: 2 - - uid: 6003 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Janitorial closet + - uid: 8936 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,17.5 + rot: -1.5707963267948966 rad + pos: -50.5,11.5 parent: 2 - - uid: 6006 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Arcade + - uid: 8938 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,15.5 + rot: 3.141592653589793 rad + pos: -37.5,14.5 parent: 2 - - uid: 6010 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Botany closet + - uid: 8939 components: - type: Transform rot: 1.5707963267948966 rad - pos: 48.5,11.5 + pos: -53.5,-28.5 parent: 2 - - uid: 6043 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Reporter office + - uid: 8940 components: - type: Transform - pos: 50.5,16.5 + rot: 3.141592653589793 rad + pos: -60.5,-24.5 parent: 2 - - uid: 6046 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: News room + - uid: 8941 components: - type: Transform - pos: 49.5,16.5 + pos: -29.5,11.5 parent: 2 - - uid: 6060 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Botany + - uid: 8942 components: - type: Transform - pos: -57.5,-19.5 + rot: 3.141592653589793 rad + pos: -22.5,15.5 parent: 2 - - uid: 6063 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Kitchen + - uid: 8943 components: - type: Transform - pos: -18.5,37.5 + rot: 1.5707963267948966 rad + pos: -15.5,14.5 parent: 2 - - uid: 6075 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Freezer + - uid: 8944 components: - type: Transform - pos: -45.5,-37.5 + rot: 1.5707963267948966 rad + pos: -19.5,5.5 parent: 2 - - uid: 6077 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Music corner + - uid: 9040 components: - type: Transform - pos: 37.5,6.5 + rot: 3.141592653589793 rad + pos: -35.5,-24.5 parent: 2 - - uid: 6086 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: North boxing arena + - uid: 21412 components: - type: Transform - pos: -51.5,-37.5 + pos: -22.5,-39.5 parent: 2 - - uid: 6087 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Chapel + - uid: 22392 components: - type: Transform - pos: 79.5,-36.5 + rot: 1.5707963267948966 rad + pos: -42.5,12.5 parent: 2 - - uid: 6096 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Arcade reception +- proto: SurveillanceCameraSupply + entities: + - uid: 3557 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-54.5 + pos: 38.5,20.5 parent: 2 - - uid: 6100 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: External salvage + - uid: 9014 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-49.5 + pos: 25.5,10.5 parent: 2 - - uid: 6107 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Front desk + - uid: 9015 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,-42.5 + rot: 3.141592653589793 rad + pos: 22.5,15.5 parent: 2 - - uid: 6145 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Cargo front + - uid: 9018 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,-42.5 + rot: 1.5707963267948966 rad + pos: 34.5,6.5 parent: 2 - - uid: 6150 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Break room + - uid: 9019 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-42.5 + pos: 23.5,6.5 parent: 2 - - uid: 6152 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Secure storage + - uid: 9021 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,-37.5 + rot: 1.5707963267948966 rad + pos: 36.5,22.5 parent: 2 - - uid: 6160 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Salvage supply + - uid: 20086 components: - type: Transform rot: -1.5707963267948966 rad - pos: -38.5,-45.5 + pos: 30.5,13.5 parent: 2 - - uid: 6161 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Hallway + - uid: 22391 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-46.5 + rot: 3.141592653589793 rad + pos: 27.5,23.5 parent: 2 - - uid: 6165 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Storage bay +- proto: SurveillanceCameraWirelessRouterEntertainment + entities: + - uid: 7959 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-47.5 + pos: 11.5,-48.5 parent: 2 - - uid: 6166 +- proto: SurveillanceWirelessCameraAnchoredEntertainment + entities: + - uid: 2175 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-46.5 + rot: 3.141592653589793 rad + pos: -21.5,5.5 parent: 2 - - uid: 6167 + - uid: 4519 components: - type: Transform rot: -1.5707963267948966 rad - pos: -56.5,-45.5 + pos: -58.5,-26.5 parent: 2 - - uid: 6170 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEntertainment + nameSet: True + id: News channel +- proto: SurveillanceWirelessCameraMovableConstructed + entities: + - uid: 4531 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-55.5 + pos: -56.5,-23.5 parent: 2 - - uid: 6173 + - uid: 4532 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,-48.5 + pos: -55.5,-23.5 parent: 2 - - uid: 6174 +- proto: SyndieFlag + entities: + - uid: 21058 components: - type: Transform rot: -1.5707963267948966 rad - pos: -42.5,-49.5 + pos: -36.5,-42.5 parent: 2 - - uid: 6212 +- proto: SyndieHandyFlag + entities: + - uid: 21059 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,-55.5 + pos: -34.495705,-44.393948 parent: 2 - - uid: 6214 +- proto: SynthesizerInstrument + entities: + - uid: 21334 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-50.5 + pos: 47.788773,21.30058 parent: 2 - - uid: 6215 +- proto: Syringe + entities: + - uid: 8193 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-51.5 + pos: 61.51553,-3.394734 parent: 2 - - uid: 6218 + - uid: 16540 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-51.5 + pos: 15.512184,29.873684 parent: 2 - - uid: 6219 + - uid: 16966 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-52.5 + pos: 61.425484,17.165861 parent: 2 - - uid: 6221 +- proto: Table + entities: + - uid: 153 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-54.5 + rot: 3.141592653589793 rad + pos: -32.5,-8.5 parent: 2 - - uid: 6222 + - uid: 1413 components: - type: Transform rot: -1.5707963267948966 rad - pos: -59.5,-54.5 + pos: 53.5,-9.5 parent: 2 - - uid: 6223 + - uid: 2177 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,-57.5 + rot: 1.5707963267948966 rad + pos: -4.5,-16.5 parent: 2 - - uid: 6224 + - uid: 2178 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,-55.5 + rot: 1.5707963267948966 rad + pos: -4.5,-17.5 parent: 2 - - uid: 6225 + - uid: 2179 components: - type: Transform rot: -1.5707963267948966 rad - pos: -38.5,-49.5 - parent: 2 - - uid: 6227 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-44.5 - parent: 2 - - uid: 6228 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-44.5 + pos: -8.5,-21.5 parent: 2 - - uid: 6241 + - uid: 2180 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,-56.5 + pos: -5.5,-23.5 parent: 2 - - uid: 6246 + - uid: 2181 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-54.5 + pos: -4.5,-23.5 parent: 2 - - uid: 6247 + - uid: 2182 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-56.5 + pos: 1.5,-19.5 parent: 2 - - uid: 6251 + - uid: 2183 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-57.5 + pos: 2.5,-19.5 parent: 2 - - uid: 6254 + - uid: 2184 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-57.5 + pos: -4.5,-26.5 parent: 2 - - uid: 6255 + - uid: 2185 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-57.5 + pos: 5.5,-19.5 parent: 2 - - uid: 6258 + - uid: 2186 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-59.5 + pos: 6.5,-19.5 parent: 2 - - uid: 6259 + - uid: 2187 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-59.5 + pos: 6.5,-23.5 parent: 2 - - uid: 6261 + - uid: 2188 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,-59.5 + pos: 5.5,-23.5 parent: 2 - - uid: 6265 + - uid: 2189 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-64.5 + rot: 1.5707963267948966 rad + pos: 11.5,-27.5 parent: 2 - - uid: 6267 + - uid: 2190 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,-64.5 + rot: 1.5707963267948966 rad + pos: 17.5,-27.5 parent: 2 - - uid: 6268 + - uid: 2191 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-64.5 + rot: 1.5707963267948966 rad + pos: 17.5,-17.5 parent: 2 - - uid: 6287 + - uid: 2192 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-66.5 + rot: 1.5707963267948966 rad + pos: 18.5,-17.5 parent: 2 - - uid: 6289 + - uid: 2193 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-66.5 + rot: 1.5707963267948966 rad + pos: 17.5,-18.5 parent: 2 - - uid: 6295 + - uid: 2194 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-54.5 + rot: 1.5707963267948966 rad + pos: 18.5,-18.5 parent: 2 - - uid: 6298 + - uid: 2195 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-66.5 + pos: 24.5,-26.5 parent: 2 - - uid: 6300 + - uid: 2196 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-66.5 + pos: 27.5,-26.5 parent: 2 - - uid: 6303 + - uid: 2197 components: - type: Transform rot: -1.5707963267948966 rad - pos: -60.5,-64.5 + pos: -23.5,13.5 parent: 2 - - uid: 6305 + - uid: 2198 components: - type: Transform rot: -1.5707963267948966 rad - pos: -60.5,-62.5 + pos: -23.5,14.5 parent: 2 - - uid: 6307 + - uid: 2201 components: - type: Transform rot: -1.5707963267948966 rad - pos: -60.5,-59.5 + pos: -21.5,15.5 parent: 2 - - uid: 6309 + - uid: 2202 components: - type: Transform rot: -1.5707963267948966 rad - pos: -60.5,-60.5 + pos: -20.5,15.5 parent: 2 - - uid: 6310 + - uid: 2203 components: - type: Transform rot: -1.5707963267948966 rad - pos: -34.5,-58.5 + pos: -19.5,15.5 parent: 2 - - uid: 6311 + - uid: 2204 components: - type: Transform rot: -1.5707963267948966 rad - pos: -34.5,-60.5 + pos: -18.5,15.5 parent: 2 - - uid: 6312 + - uid: 2205 components: - type: Transform rot: -1.5707963267948966 rad - pos: -34.5,-61.5 + pos: -19.5,17.5 parent: 2 - - uid: 6315 + - uid: 2206 components: - type: Transform rot: -1.5707963267948966 rad - pos: -34.5,-63.5 + pos: -19.5,21.5 parent: 2 - - uid: 6316 + - uid: 2207 components: - type: Transform rot: -1.5707963267948966 rad - pos: -34.5,-64.5 + pos: -22.5,21.5 parent: 2 - - uid: 6319 + - uid: 2208 components: - type: Transform rot: -1.5707963267948966 rad - pos: -35.5,-66.5 + pos: -22.5,17.5 parent: 2 - - uid: 6322 + - uid: 2209 components: - type: Transform rot: -1.5707963267948966 rad - pos: -38.5,-66.5 + pos: 38.5,-16.5 parent: 2 - - uid: 6323 + - uid: 2210 components: - type: Transform rot: -1.5707963267948966 rad - pos: -39.5,-66.5 + pos: 37.5,-16.5 parent: 2 - - uid: 6325 + - uid: 2211 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-51.5 + rot: 3.141592653589793 rad + pos: -27.5,13.5 parent: 2 - - uid: 6486 + - uid: 2212 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-8.5 + rot: 3.141592653589793 rad + pos: -27.5,14.5 parent: 2 - - uid: 6490 + - uid: 2213 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-8.5 + pos: -29.5,-17.5 parent: 2 - - uid: 6494 + - uid: 2214 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-8.5 + pos: -27.5,-17.5 parent: 2 - - uid: 6503 + - uid: 2215 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-8.5 + pos: -27.5,-33.5 parent: 2 - - uid: 6507 + - uid: 2216 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,0.5 + pos: -28.5,-33.5 parent: 2 - - uid: 6511 + - uid: 2217 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-8.5 + pos: -29.5,-33.5 parent: 2 - - uid: 6512 + - uid: 3237 components: - type: Transform rot: 3.141592653589793 rad - pos: 48.5,-8.5 + pos: -33.5,-8.5 parent: 2 - - uid: 6513 + - uid: 3705 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-8.5 + rot: 1.5707963267948966 rad + pos: -54.5,10.5 parent: 2 - - uid: 6518 + - uid: 3706 components: - type: Transform - pos: 38.5,5.5 + rot: 1.5707963267948966 rad + pos: -54.5,9.5 parent: 2 - - uid: 6531 + - uid: 4063 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-1.5 + pos: 49.5,-24.5 parent: 2 - - uid: 6532 + - uid: 4064 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-2.5 + pos: 31.5,-24.5 parent: 2 - - uid: 6564 + - uid: 4254 components: - type: Transform rot: -1.5707963267948966 rad - pos: 60.5,-2.5 + pos: 44.5,1.5 parent: 2 - - uid: 6622 + - uid: 4270 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,5.5 + pos: -18.5,27.5 parent: 2 - - uid: 6629 + - uid: 4307 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,0.5 + rot: -1.5707963267948966 rad + pos: 33.5,8.5 parent: 2 - - uid: 6630 + - uid: 4504 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,6.5 + pos: -50.5,-13.5 parent: 2 - - uid: 6632 + - uid: 4505 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,8.5 + pos: -50.5,-12.5 parent: 2 - - uid: 6634 + - uid: 4794 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,9.5 + pos: -9.5,23.5 parent: 2 - - uid: 6637 + - uid: 4871 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,9.5 + pos: -5.5,23.5 parent: 2 - - uid: 6640 + - uid: 4874 components: - type: Transform rot: 1.5707963267948966 rad - pos: 57.5,12.5 + pos: -13.5,23.5 parent: 2 - - uid: 6642 + - uid: 5048 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,13.5 + pos: -8.5,31.5 parent: 2 - - uid: 6644 + - uid: 5049 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,13.5 + pos: -9.5,31.5 parent: 2 - - uid: 6645 + - uid: 5057 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,13.5 + rot: 3.141592653589793 rad + pos: -9.5,29.5 parent: 2 - - uid: 6646 + - uid: 5058 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,9.5 + rot: 3.141592653589793 rad + pos: -10.5,29.5 parent: 2 - - uid: 6649 + - uid: 5166 components: - type: Transform rot: 1.5707963267948966 rad - pos: 60.5,10.5 + pos: -6.5,47.5 parent: 2 - - uid: 6651 + - uid: 5169 components: - type: Transform rot: 1.5707963267948966 rad - pos: 60.5,12.5 + pos: -6.5,48.5 parent: 2 - - uid: 6654 + - uid: 5170 components: - type: Transform rot: 1.5707963267948966 rad - pos: 58.5,13.5 + pos: 1.5,46.5 parent: 2 - - uid: 6656 + - uid: 5171 components: - type: Transform rot: 1.5707963267948966 rad - pos: 54.5,16.5 + pos: 1.5,47.5 parent: 2 - - uid: 6658 + - uid: 5172 components: - type: Transform rot: 1.5707963267948966 rad - pos: 56.5,16.5 + pos: 0.5,47.5 parent: 2 - - uid: 6659 + - uid: 5173 components: - type: Transform rot: 1.5707963267948966 rad - pos: 56.5,15.5 + pos: 0.5,46.5 parent: 2 - - uid: 6670 + - uid: 5174 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.5,-12.5 + pos: -5.5,48.5 parent: 2 - - uid: 6674 + - uid: 5175 components: - type: Transform rot: 1.5707963267948966 rad - pos: 48.5,-15.5 + pos: -4.5,48.5 parent: 2 - - uid: 6676 + - uid: 5228 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-15.5 + rot: -1.5707963267948966 rad + pos: 3.5,52.5 parent: 2 - - uid: 6678 + - uid: 5229 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-15.5 + rot: -1.5707963267948966 rad + pos: 3.5,51.5 parent: 2 - - uid: 6679 + - uid: 5245 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-15.5 + rot: 3.141592653589793 rad + pos: -4.5,43.5 parent: 2 - - uid: 6681 + - uid: 5246 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-9.5 + rot: 3.141592653589793 rad + pos: 1.5,43.5 parent: 2 - - uid: 6748 + - uid: 5515 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-2.5 + pos: -19.5,27.5 parent: 2 - - uid: 6774 + - uid: 5562 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-27.5 + rot: -1.5707963267948966 rad + pos: 32.5,7.5 parent: 2 - - uid: 6777 + - uid: 5563 components: - type: Transform - pos: 51.5,-23.5 + rot: -1.5707963267948966 rad + pos: 32.5,8.5 parent: 2 - - uid: 6779 + - uid: 5572 components: - type: Transform - pos: 52.5,-30.5 + rot: -1.5707963267948966 rad + pos: 33.5,7.5 parent: 2 - - uid: 6785 + - uid: 5669 components: - type: Transform - pos: 54.5,-14.5 + pos: -20.5,27.5 parent: 2 - - uid: 6787 + - uid: 5770 components: - type: Transform - pos: 54.5,-12.5 + rot: -1.5707963267948966 rad + pos: 44.5,2.5 parent: 2 - - uid: 6789 + - uid: 5771 components: - type: Transform - pos: 54.5,-10.5 + rot: -1.5707963267948966 rad + pos: 44.5,3.5 parent: 2 - - uid: 6790 + - uid: 5772 components: - type: Transform - pos: 54.5,-9.5 + rot: -1.5707963267948966 rad + pos: 45.5,3.5 parent: 2 - - uid: 6805 + - uid: 6137 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-2.5 + rot: 3.141592653589793 rad + pos: 52.5,-28.5 parent: 2 - - uid: 6839 + - uid: 6331 components: - type: Transform - pos: 56.5,18.5 + rot: -1.5707963267948966 rad + pos: -53.5,-60.5 parent: 2 - - uid: 6841 + - uid: 6332 components: - type: Transform - pos: 56.5,20.5 + rot: -1.5707963267948966 rad + pos: -53.5,-61.5 parent: 2 - - uid: 6843 + - uid: 6333 components: - type: Transform - pos: -15.5,-39.5 + rot: -1.5707963267948966 rad + pos: -53.5,-62.5 parent: 2 - - uid: 6845 + - uid: 6334 components: - type: Transform - pos: 63.5,-10.5 + rot: -1.5707963267948966 rad + pos: -53.5,-63.5 parent: 2 - - uid: 6848 + - uid: 6335 components: - type: Transform - pos: 62.5,18.5 + rot: -1.5707963267948966 rad + pos: -41.5,-60.5 parent: 2 - - uid: 6849 + - uid: 6336 components: - type: Transform - pos: 61.5,20.5 + rot: -1.5707963267948966 rad + pos: -41.5,-61.5 parent: 2 - - uid: 6851 + - uid: 6337 components: - type: Transform - pos: 62.5,16.5 + rot: -1.5707963267948966 rad + pos: -41.5,-62.5 parent: 2 - - uid: 6853 + - uid: 6338 components: - type: Transform - pos: 62.5,14.5 + rot: -1.5707963267948966 rad + pos: -41.5,-63.5 parent: 2 - - uid: 6855 + - uid: 6382 components: - type: Transform - pos: 61.5,13.5 + pos: -55.5,-45.5 parent: 2 - - uid: 6857 + - uid: 6383 components: - type: Transform - pos: 58.5,-0.5 + pos: -39.5,-45.5 parent: 2 - - uid: 6859 + - uid: 6587 components: - type: Transform - pos: 59.5,5.5 + rot: 3.141592653589793 rad + pos: -31.5,-8.5 parent: 2 - - uid: 6861 + - uid: 6684 components: - type: Transform - pos: 61.5,5.5 + rot: 1.5707963267948966 rad + pos: 53.5,1.5 parent: 2 - - uid: 6863 + - uid: 6685 components: - type: Transform rot: 1.5707963267948966 rad - pos: 63.5,2.5 + pos: 54.5,1.5 parent: 2 - - uid: 6869 + - uid: 6686 components: - type: Transform - pos: 61.5,-0.5 + rot: 1.5707963267948966 rad + pos: 55.5,1.5 parent: 2 - - uid: 6873 + - uid: 6708 components: - type: Transform - pos: 64.5,0.5 + pos: 48.5,4.5 parent: 2 - - uid: 6874 + - uid: 6715 components: - type: Transform - pos: 64.5,1.5 + rot: -1.5707963267948966 rad + pos: 54.5,8.5 parent: 2 - - uid: 6875 + - uid: 6716 components: - type: Transform - pos: 64.5,2.5 + rot: -1.5707963267948966 rad + pos: 53.5,8.5 parent: 2 - - uid: 6876 + - uid: 7268 components: - type: Transform - pos: 64.5,3.5 + pos: 64.5,-11.5 parent: 2 - - uid: 6878 + - uid: 7277 components: - type: Transform - pos: 64.5,5.5 + rot: 3.141592653589793 rad + pos: 63.5,-15.5 parent: 2 - - uid: 6879 + - uid: 8115 components: - type: Transform - pos: 63.5,5.5 + rot: 3.141592653589793 rad + pos: -4.5,-36.5 parent: 2 - - uid: 6880 + - uid: 8213 components: - type: Transform rot: 1.5707963267948966 rad - pos: 61.5,2.5 + pos: 41.5,-7.5 parent: 2 - - uid: 6932 + - uid: 8267 components: - type: Transform - pos: 57.5,22.5 + pos: -4.5,21.5 parent: 2 - - uid: 6933 + - uid: 9179 components: - type: Transform - pos: 61.5,22.5 + rot: 1.5707963267948966 rad + pos: -25.5,25.5 parent: 2 - - uid: 6942 + - uid: 9180 components: - type: Transform - pos: -40.5,-37.5 + rot: 1.5707963267948966 rad + pos: -24.5,25.5 parent: 2 - - uid: 6952 + - uid: 9197 components: - type: Transform - pos: -3.5,42.5 + rot: 3.141592653589793 rad + pos: -21.5,35.5 parent: 2 - - uid: 6953 + - uid: 14240 components: - type: Transform - pos: 0.5,42.5 + pos: -21.5,10.5 parent: 2 - - uid: 6955 + - uid: 14738 components: - type: Transform - pos: 0.5,44.5 + rot: 1.5707963267948966 rad + pos: -17.5,35.5 parent: 2 - - uid: 6962 + - uid: 14753 components: - type: Transform - pos: -15.5,-41.5 + pos: -20.5,10.5 parent: 2 - - uid: 6970 + - uid: 15092 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,-38.5 + pos: -3.5,-41.5 parent: 2 - - uid: 6977 + - uid: 15093 components: - type: Transform - pos: 58.5,-10.5 + pos: -3.5,-40.5 parent: 2 - - uid: 6978 + - uid: 15148 components: - type: Transform - pos: 57.5,-10.5 + pos: -32.5,38.5 parent: 2 - - uid: 6980 + - uid: 15149 components: - type: Transform - pos: 56.5,-11.5 + pos: -33.5,38.5 parent: 2 - - uid: 6982 + - uid: 15620 components: - type: Transform - pos: 56.5,-13.5 + pos: 69.5,-3.5 parent: 2 - - uid: 6996 + - uid: 15952 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,7.5 + pos: -42.5,17.5 parent: 2 - - uid: 6998 + - uid: 16110 components: - type: Transform rot: -1.5707963267948966 rad - pos: 65.5,7.5 + pos: 58.5,26.5 parent: 2 - - uid: 7009 + - uid: 16138 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,11.5 + pos: 60.5,25.5 parent: 2 - - uid: 7020 + - uid: 16191 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,22.5 + pos: 56.5,-27.5 parent: 2 - - uid: 7021 + - uid: 16203 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,23.5 + pos: 55.5,-27.5 parent: 2 - - uid: 7022 + - uid: 16327 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,24.5 + rot: 1.5707963267948966 rad + pos: 78.5,-5.5 parent: 2 - - uid: 7028 + - uid: 16328 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-8.5 + rot: 1.5707963267948966 rad + pos: 79.5,-5.5 parent: 2 - - uid: 7029 + - uid: 16394 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,-8.5 + pos: 50.5,22.5 parent: 2 - - uid: 7066 + - uid: 16395 components: - type: Transform - pos: 61.5,-10.5 + pos: 51.5,22.5 parent: 2 - - uid: 7073 + - uid: 16396 components: - type: Transform - pos: 65.5,-9.5 + pos: 52.5,22.5 parent: 2 - - uid: 7074 + - uid: 16422 components: - type: Transform - pos: 65.5,-8.5 + pos: 63.5,8.5 parent: 2 - - uid: 7089 + - uid: 16463 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-21.5 + pos: -54.5,-35.5 parent: 2 - - uid: 7091 + - uid: 16464 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,-18.5 + pos: -54.5,-36.5 parent: 2 - - uid: 7094 + - uid: 16467 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,-15.5 + pos: -59.5,-35.5 parent: 2 - - uid: 7095 + - uid: 16468 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-15.5 + pos: -59.5,-36.5 parent: 2 - - uid: 7101 + - uid: 16529 components: - type: Transform rot: -1.5707963267948966 rad - pos: 62.5,-11.5 + pos: 13.5,32.5 parent: 2 - - uid: 7110 + - uid: 16530 components: - type: Transform - pos: 66.5,-19.5 + rot: -1.5707963267948966 rad + pos: 15.5,31.5 parent: 2 - - uid: 7113 + - uid: 16531 components: - type: Transform - pos: 67.5,-23.5 + rot: -1.5707963267948966 rad + pos: 15.5,30.5 parent: 2 - - uid: 7116 + - uid: 16532 components: - type: Transform - pos: 67.5,-26.5 + rot: -1.5707963267948966 rad + pos: 15.5,29.5 parent: 2 - - uid: 7117 + - uid: 16578 components: - type: Transform - pos: 67.5,-27.5 + rot: 1.5707963267948966 rad + pos: 5.5,40.5 parent: 2 - - uid: 7128 + - uid: 16597 components: - type: Transform - pos: 60.5,-27.5 + rot: 1.5707963267948966 rad + pos: 8.5,42.5 parent: 2 - - uid: 7129 + - uid: 16598 components: - type: Transform - pos: 61.5,-27.5 + rot: 1.5707963267948966 rad + pos: 9.5,42.5 parent: 2 - - uid: 7131 + - uid: 16599 components: - type: Transform - pos: 64.5,-27.5 + rot: 1.5707963267948966 rad + pos: 9.5,41.5 parent: 2 - - uid: 7133 + - uid: 16600 components: - type: Transform - pos: 65.5,-27.5 + rot: 1.5707963267948966 rad + pos: 9.5,40.5 parent: 2 - - uid: 7136 + - uid: 17379 components: - type: Transform - pos: 66.5,-11.5 + rot: 3.141592653589793 rad + pos: -30.5,-3.5 parent: 2 - - uid: 7137 + - uid: 20792 components: - type: Transform - pos: 66.5,-10.5 + rot: 3.141592653589793 rad + pos: 8.5,16.5 parent: 2 - - uid: 7165 + - uid: 21186 components: - type: Transform rot: 3.141592653589793 rad - pos: 55.5,-21.5 + pos: -30.5,-4.5 parent: 2 - - uid: 7182 + - uid: 21330 components: - type: Transform - pos: 60.5,-29.5 + rot: 1.5707963267948966 rad + pos: 63.5,-32.5 parent: 2 - - uid: 7185 +- proto: TableCarpet + entities: + - uid: 2218 components: - type: Transform - pos: 63.5,-29.5 + pos: -19.5,-2.5 parent: 2 - - uid: 7187 + - uid: 2219 components: - type: Transform - pos: 68.5,-15.5 + pos: -18.5,-3.5 parent: 2 - - uid: 7189 + - uid: 2220 components: - type: Transform - pos: 70.5,-15.5 + pos: -19.5,-3.5 parent: 2 - - uid: 7191 + - uid: 2221 components: - type: Transform - pos: 72.5,-15.5 + pos: -18.5,-2.5 parent: 2 - - uid: 7195 + - uid: 2222 components: - type: Transform - pos: 72.5,-11.5 + rot: 1.5707963267948966 rad + pos: -20.5,-14.5 parent: 2 - - uid: 7197 + - uid: 2223 components: - type: Transform - pos: 74.5,-10.5 + pos: -19.5,-13.5 parent: 2 - - uid: 7200 + - uid: 2224 components: - type: Transform - pos: 75.5,-9.5 + pos: -20.5,-13.5 parent: 2 - - uid: 7202 + - uid: 2225 components: - type: Transform - pos: 75.5,-7.5 + rot: 1.5707963267948966 rad + pos: -19.5,-14.5 parent: 2 - - uid: 7204 + - uid: 16631 components: - type: Transform - pos: 74.5,-6.5 + rot: 1.5707963267948966 rad + pos: 14.5,36.5 parent: 2 - - uid: 7206 + - uid: 16632 components: - type: Transform - pos: 72.5,-6.5 + rot: 1.5707963267948966 rad + pos: 14.5,35.5 parent: 2 - - uid: 7209 + - uid: 16633 components: - type: Transform - pos: 69.5,-6.5 + rot: 1.5707963267948966 rad + pos: 15.5,35.5 parent: 2 - - uid: 7212 + - uid: 16634 components: - type: Transform - pos: 66.5,-6.5 + rot: 1.5707963267948966 rad + pos: 16.5,35.5 parent: 2 - - uid: 7269 +- proto: TableCounterWood + entities: + - uid: 2226 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,-19.5 + pos: -16.5,-0.5 parent: 2 - - uid: 7271 + - uid: 2227 components: - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,-19.5 + pos: -16.5,3.5 parent: 2 - - uid: 7281 + - uid: 2228 components: - type: Transform rot: 3.141592653589793 rad - pos: 72.5,-20.5 + pos: -16.5,0.5 parent: 2 - - uid: 7284 + - uid: 2229 components: - type: Transform rot: 3.141592653589793 rad - pos: 72.5,-23.5 - parent: 2 - - uid: 7285 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,-24.5 - parent: 2 - - uid: 7287 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,-24.5 + pos: -16.5,1.5 parent: 2 - - uid: 7293 + - uid: 2230 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,-27.5 + rot: 3.141592653589793 rad + pos: -16.5,2.5 parent: 2 - - uid: 7294 + - uid: 2231 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,-28.5 + pos: -15.5,3.5 parent: 2 - - uid: 7296 + - uid: 2237 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,-30.5 + pos: -37.5,-20.5 parent: 2 - - uid: 7297 + - uid: 2238 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,-30.5 + pos: -36.5,-20.5 parent: 2 - - uid: 7299 + - uid: 3730 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,-30.5 + pos: -44.5,11.5 parent: 2 - - uid: 7300 + - uid: 3731 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,-30.5 + pos: -44.5,12.5 parent: 2 - - uid: 7304 + - uid: 3732 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,-19.5 + pos: -44.5,13.5 parent: 2 - - uid: 7307 + - uid: 4407 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,-19.5 + rot: 1.5707963267948966 rad + pos: -49.5,-15.5 parent: 2 - - uid: 7309 + - uid: 4410 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,-19.5 + rot: 1.5707963267948966 rad + pos: -48.5,-15.5 parent: 2 - - uid: 7312 + - uid: 4414 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,-15.5 + rot: 1.5707963267948966 rad + pos: -44.5,-16.5 parent: 2 - - uid: 7317 + - uid: 4415 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,-11.5 + rot: 1.5707963267948966 rad + pos: -44.5,-17.5 parent: 2 - - uid: 7319 + - uid: 4418 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,-10.5 + pos: -44.5,-15.5 parent: 2 - - uid: 7321 + - uid: 4427 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,-15.5 + rot: 1.5707963267948966 rad + pos: -50.5,-15.5 parent: 2 - - uid: 7322 + - uid: 4567 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,-15.5 + rot: 3.141592653589793 rad + pos: 39.5,-28.5 parent: 2 - - uid: 7323 + - uid: 12701 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 81.5,-15.5 + rot: 3.141592653589793 rad + pos: 39.5,-27.5 parent: 2 - - uid: 7324 + - uid: 12702 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,-15.5 + rot: 3.141592653589793 rad + pos: 40.5,-27.5 parent: 2 - - uid: 7326 + - uid: 16197 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,-11.5 + rot: 1.5707963267948966 rad + pos: 77.5,-24.5 parent: 2 - - uid: 7329 + - uid: 16199 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,-19.5 + rot: 1.5707963267948966 rad + pos: 79.5,-24.5 parent: 2 - - uid: 7331 + - uid: 16200 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,-19.5 + rot: 1.5707963267948966 rad + pos: 76.5,-24.5 parent: 2 - - uid: 7338 +- proto: TableFancyBlack + entities: + - uid: 3109 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,-11.5 + pos: -36.5,5.5 parent: 2 - - uid: 7339 + - uid: 3110 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 83.5,-15.5 + pos: -30.5,5.5 parent: 2 - - uid: 7340 + - uid: 3111 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,-15.5 + pos: -36.5,6.5 parent: 2 - - uid: 7342 + - uid: 3112 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,-11.5 + pos: -30.5,7.5 parent: 2 - - uid: 7350 + - uid: 3121 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 83.5,-19.5 + pos: -30.5,6.5 parent: 2 - - uid: 7460 +- proto: TableFancyRed + entities: + - uid: 3124 components: - type: Transform - pos: 73.5,-4.5 + pos: -20.5,7.5 parent: 2 - - uid: 7463 + - uid: 3490 components: - type: Transform - pos: 76.5,-4.5 + pos: -21.5,7.5 parent: 2 - - uid: 7478 +- proto: TableFrame + entities: + - uid: 16498 components: - type: Transform - pos: 86.5,-9.5 + pos: -66.5,-23.5 parent: 2 - - uid: 7504 +- proto: TableReinforced + entities: + - uid: 182 components: - type: Transform - pos: 73.5,-33.5 + rot: -1.5707963267948966 rad + pos: 14.5,-64.5 parent: 2 - - uid: 7516 + - uid: 758 components: - type: Transform - pos: 66.5,-28.5 + pos: 9.5,-48.5 parent: 2 - - uid: 7517 + - uid: 880 components: - type: Transform - pos: 66.5,-29.5 + pos: -32.5,14.5 parent: 2 - - uid: 7518 + - uid: 2243 components: - type: Transform - pos: 66.5,-30.5 + rot: 3.141592653589793 rad + pos: -6.5,-28.5 parent: 2 - - uid: 7520 + - uid: 2244 components: - type: Transform - pos: 67.5,-31.5 + rot: 3.141592653589793 rad + pos: -5.5,-28.5 parent: 2 - - uid: 7522 + - uid: 2245 components: - type: Transform - pos: 69.5,-31.5 + rot: 3.141592653589793 rad + pos: 0.5,-27.5 parent: 2 - - uid: 7523 + - uid: 2246 components: - type: Transform - pos: 70.5,-31.5 + rot: 3.141592653589793 rad + pos: -0.5,-27.5 parent: 2 - - uid: 7524 + - uid: 2247 components: - type: Transform - pos: 71.5,-31.5 + pos: 20.5,-23.5 parent: 2 - - uid: 7526 + - uid: 2248 components: - type: Transform - pos: 73.5,-31.5 + pos: 21.5,-23.5 parent: 2 - - uid: 7528 + - uid: 2249 components: - type: Transform - pos: 73.5,-29.5 + pos: 14.5,-15.5 parent: 2 - - uid: 7532 + - uid: 2250 components: - type: Transform - pos: 73.5,-25.5 + pos: 13.5,-15.5 parent: 2 - - uid: 7534 + - uid: 2251 components: - type: Transform - pos: 73.5,-23.5 + pos: 17.5,-22.5 parent: 2 - - uid: 7544 + - uid: 2252 components: - type: Transform - pos: 64.5,-31.5 + pos: 17.5,-21.5 parent: 2 - - uid: 7562 + - uid: 2253 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-23.5 + pos: 17.5,-20.5 parent: 2 - - uid: 7565 + - uid: 2254 components: - type: Transform - pos: 64.5,19.5 + pos: 43.5,-22.5 parent: 2 - - uid: 7568 + - uid: 2255 components: - type: Transform rot: 1.5707963267948966 rad - pos: 65.5,18.5 + pos: 41.5,-23.5 parent: 2 - - uid: 7574 + - uid: 2256 components: - type: Transform - pos: 56.5,-15.5 + rot: 1.5707963267948966 rad + pos: 40.5,-23.5 parent: 2 - - uid: 7577 + - uid: 2257 components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,-34.5 + pos: 44.5,-23.5 parent: 2 - - uid: 7578 + - uid: 2258 components: - type: Transform - pos: 18.5,-36.5 + rot: 1.5707963267948966 rad + pos: 45.5,-23.5 parent: 2 - - uid: 7579 + - uid: 2259 components: - type: Transform - pos: 18.5,-37.5 + rot: -1.5707963267948966 rad + pos: -15.5,-28.5 parent: 2 - - uid: 7588 + - uid: 2260 components: - type: Transform rot: -1.5707963267948966 rad - pos: 31.5,-40.5 + pos: -16.5,-28.5 parent: 2 - - uid: 7589 + - uid: 2261 components: - type: Transform - pos: 27.5,-38.5 + rot: 3.141592653589793 rad + pos: -13.5,-24.5 parent: 2 - - uid: 7594 + - uid: 2262 components: - type: Transform - pos: 26.5,-39.5 + rot: 3.141592653589793 rad + pos: -13.5,-25.5 parent: 2 - - uid: 7597 + - uid: 2263 components: - type: Transform - pos: 23.5,-39.5 + rot: 3.141592653589793 rad + pos: -13.5,-23.5 parent: 2 - - uid: 7602 + - uid: 2312 components: - type: Transform - pos: 18.5,-39.5 + pos: 27.5,-43.5 parent: 2 - - uid: 7628 + - uid: 4020 components: - type: Transform - pos: 27.5,-40.5 + rot: -1.5707963267948966 rad + pos: 38.5,-37.5 parent: 2 - - uid: 7630 + - uid: 4021 components: - type: Transform rot: -1.5707963267948966 rad - pos: 30.5,-40.5 + pos: 42.5,-37.5 parent: 2 - - uid: 7633 + - uid: 4022 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,-49.5 + pos: 35.5,-33.5 parent: 2 - - uid: 7634 + - uid: 4023 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,-40.5 + pos: 45.5,-32.5 parent: 2 - - uid: 7635 + - uid: 4024 components: - type: Transform rot: -1.5707963267948966 rad - pos: 24.5,-40.5 + pos: 35.5,-32.5 parent: 2 - - uid: 7638 + - uid: 4025 components: - type: Transform rot: -1.5707963267948966 rad - pos: 23.5,-41.5 + pos: 45.5,-33.5 parent: 2 - - uid: 7640 + - uid: 4026 components: - type: Transform rot: -1.5707963267948966 rad - pos: 23.5,-43.5 + pos: 38.5,-38.5 parent: 2 - - uid: 7642 + - uid: 4027 components: - type: Transform rot: -1.5707963267948966 rad - pos: 30.5,-42.5 + pos: 42.5,-38.5 parent: 2 - - uid: 7643 + - uid: 4028 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-43.5 + pos: 33.5,-38.5 parent: 2 - - uid: 7644 + - uid: 4029 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-44.5 + pos: 34.5,-38.5 parent: 2 - - uid: 7646 + - uid: 4030 components: - type: Transform rot: -1.5707963267948966 rad - pos: 31.5,-43.5 + pos: 48.5,-38.5 parent: 2 - - uid: 7647 + - uid: 4041 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-40.5 + pos: 34.5,-37.5 parent: 2 - - uid: 7650 + - uid: 4042 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-45.5 + pos: 32.5,-38.5 parent: 2 - - uid: 7652 + - uid: 4046 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-46.5 + pos: 46.5,-38.5 parent: 2 - - uid: 7656 + - uid: 4047 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-42.5 + pos: 46.5,-37.5 parent: 2 - - uid: 7657 + - uid: 4048 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-43.5 + pos: 47.5,-38.5 parent: 2 - - uid: 7659 + - uid: 4075 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-44.5 + pos: 44.5,-32.5 parent: 2 - - uid: 7663 + - uid: 4076 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-46.5 + pos: 43.5,-32.5 parent: 2 - - uid: 7665 + - uid: 4077 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-47.5 + pos: 36.5,-32.5 parent: 2 - - uid: 7674 + - uid: 4078 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-47.5 + pos: 37.5,-32.5 parent: 2 - - uid: 7679 + - uid: 4094 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-47.5 + rot: 3.141592653589793 rad + pos: 27.5,-30.5 parent: 2 - - uid: 7725 + - uid: 4095 components: - type: Transform - pos: 29.5,-49.5 + rot: 3.141592653589793 rad + pos: 25.5,-30.5 parent: 2 - - uid: 7728 + - uid: 4096 components: - type: Transform - pos: 31.5,-48.5 + rot: 3.141592653589793 rad + pos: 26.5,-30.5 parent: 2 - - uid: 7729 + - uid: 4125 components: - type: Transform - pos: 30.5,-48.5 + rot: 3.141592653589793 rad + pos: 26.5,-31.5 parent: 2 - - uid: 7731 + - uid: 4127 components: - type: Transform - pos: 22.5,-48.5 + rot: 3.141592653589793 rad + pos: 27.5,-31.5 parent: 2 - - uid: 7734 + - uid: 4128 components: - type: Transform - pos: 24.5,-48.5 + rot: 3.141592653589793 rad + pos: 25.5,-31.5 parent: 2 - - uid: 7740 + - uid: 4258 components: - type: Transform - pos: 17.5,-41.5 + rot: -1.5707963267948966 rad + pos: 28.5,11.5 parent: 2 - - uid: 7743 + - uid: 4259 components: - type: Transform - pos: 20.5,-41.5 + rot: -1.5707963267948966 rad + pos: 28.5,10.5 parent: 2 - - uid: 7752 + - uid: 4361 components: - type: Transform - pos: 13.5,-38.5 + pos: 37.5,-4.5 parent: 2 - - uid: 7753 + - uid: 4363 components: - type: Transform - pos: 16.5,-45.5 + pos: 36.5,-3.5 parent: 2 - - uid: 7754 + - uid: 4364 components: - type: Transform - pos: 20.5,-46.5 + pos: 36.5,-4.5 parent: 2 - - uid: 7761 + - uid: 4365 components: - type: Transform - pos: 17.5,-45.5 + pos: 36.5,-2.5 parent: 2 - - uid: 7765 + - uid: 4383 components: - type: Transform - pos: 4.5,-35.5 + pos: 30.5,0.5 parent: 2 - - uid: 7768 + - uid: 4384 components: - type: Transform - pos: 4.5,-33.5 + pos: 30.5,-0.5 parent: 2 - - uid: 7769 + - uid: 4385 components: - type: Transform - pos: 13.5,-37.5 + pos: 30.5,-1.5 parent: 2 - - uid: 7773 + - uid: 4386 components: - type: Transform - pos: -6.5,-33.5 + pos: 30.5,-2.5 parent: 2 - - uid: 7775 + - uid: 4521 components: - type: Transform - pos: 7.5,-37.5 + rot: -1.5707963267948966 rad + pos: -59.5,-24.5 parent: 2 - - uid: 7780 + - uid: 4522 components: - type: Transform - pos: -8.5,-41.5 + rot: -1.5707963267948966 rad + pos: -60.5,-24.5 parent: 2 - - uid: 7786 + - uid: 4523 components: - type: Transform - pos: 4.5,-37.5 + rot: -1.5707963267948966 rad + pos: -59.5,-26.5 parent: 2 - - uid: 7793 + - uid: 4525 components: - type: Transform rot: -1.5707963267948966 rad - pos: 20.5,-48.5 + pos: -59.5,-25.5 parent: 2 - - uid: 7796 + - uid: 4526 components: - type: Transform - pos: 15.5,-45.5 + rot: -1.5707963267948966 rad + pos: -61.5,-24.5 parent: 2 - - uid: 7800 + - uid: 4527 components: - type: Transform rot: -1.5707963267948966 rad - pos: 22.5,-63.5 + pos: -59.5,-27.5 parent: 2 - - uid: 7801 + - uid: 4533 components: - type: Transform - pos: 15.5,-43.5 + pos: -56.5,-26.5 parent: 2 - - uid: 7803 + - uid: 4534 components: - type: Transform - pos: 15.5,-42.5 + pos: -55.5,-26.5 parent: 2 - - uid: 7805 + - uid: 4535 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-62.5 + pos: -54.5,-26.5 parent: 2 - - uid: 7811 + - uid: 4536 components: - type: Transform - pos: 26.5,-78.5 + pos: -55.5,-29.5 parent: 2 - - uid: 7815 + - uid: 4537 components: - type: Transform - pos: 27.5,-65.5 + pos: -54.5,-29.5 parent: 2 - - uid: 7821 + - uid: 4759 components: - type: Transform - pos: 15.5,-50.5 + rot: 1.5707963267948966 rad + pos: 0.5,23.5 parent: 2 - - uid: 7823 + - uid: 4760 components: - type: Transform - pos: 24.5,-62.5 + rot: 1.5707963267948966 rad + pos: 0.5,24.5 parent: 2 - - uid: 7825 + - uid: 4958 components: - type: Transform - pos: 13.5,-62.5 + rot: -1.5707963267948966 rad + pos: 5.5,25.5 parent: 2 - - uid: 7829 + - uid: 4959 components: - type: Transform rot: -1.5707963267948966 rad - pos: 17.5,-53.5 + pos: 5.5,26.5 parent: 2 - - uid: 7838 + - uid: 5428 components: - type: Transform - pos: 13.5,-78.5 + pos: 24.5,13.5 parent: 2 - - uid: 7841 + - uid: 5429 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-66.5 + pos: 24.5,14.5 parent: 2 - - uid: 7842 + - uid: 5456 components: - type: Transform - pos: 25.5,-79.5 + rot: 1.5707963267948966 rad + pos: 22.5,14.5 parent: 2 - - uid: 7843 + - uid: 5457 components: - type: Transform - pos: 11.5,-64.5 + rot: 1.5707963267948966 rad + pos: 22.5,13.5 parent: 2 - - uid: 7844 + - uid: 5527 components: - type: Transform - pos: 24.5,-66.5 + pos: 75.5,-15.5 parent: 2 - - uid: 7847 + - uid: 5540 components: - type: Transform - pos: 12.5,-66.5 + pos: 32.5,20.5 parent: 2 - - uid: 7850 + - uid: 5621 components: - type: Transform - pos: 17.5,-55.5 + rot: 3.141592653589793 rad + pos: 23.5,17.5 parent: 2 - - uid: 7851 + - uid: 5622 components: - type: Transform - pos: 13.5,-50.5 + rot: 3.141592653589793 rad + pos: 23.5,18.5 parent: 2 - - uid: 7852 + - uid: 5623 components: - type: Transform - pos: 24.5,-50.5 + rot: 3.141592653589793 rad + pos: 23.5,19.5 parent: 2 - - uid: 7853 + - uid: 5716 components: - type: Transform - pos: 17.5,-77.5 + rot: -1.5707963267948966 rad + pos: 34.5,22.5 parent: 2 - - uid: 7854 + - uid: 5717 components: - type: Transform - pos: 15.5,-77.5 + rot: -1.5707963267948966 rad + pos: 35.5,22.5 parent: 2 - - uid: 7857 + - uid: 5910 components: - type: Transform - pos: 21.5,-54.5 + rot: -1.5707963267948966 rad + pos: 55.5,-35.5 parent: 2 - - uid: 7860 + - uid: 5911 components: - type: Transform - pos: 24.5,-53.5 + rot: -1.5707963267948966 rad + pos: 54.5,-35.5 parent: 2 - - uid: 7863 + - uid: 6016 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-66.5 + rot: 3.141592653589793 rad + pos: 42.5,10.5 parent: 2 - - uid: 7865 + - uid: 6018 components: - type: Transform - pos: 23.5,-54.5 + rot: 3.141592653589793 rad + pos: 46.5,10.5 parent: 2 - - uid: 7879 + - uid: 6582 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-65.5 + rot: 3.141592653589793 rad + pos: 45.5,-7.5 parent: 2 - - uid: 7880 + - uid: 6584 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-66.5 + rot: 3.141592653589793 rad + pos: 45.5,-4.5 parent: 2 - - uid: 7882 + - uid: 6585 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-62.5 + rot: 3.141592653589793 rad + pos: 45.5,-1.5 parent: 2 - - uid: 7884 + - uid: 6586 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-52.5 + rot: 3.141592653589793 rad + pos: 55.5,-1.5 parent: 2 - - uid: 7885 + - uid: 6588 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-61.5 + rot: 3.141592653589793 rad + pos: 55.5,-7.5 parent: 2 - - uid: 7886 + - uid: 6596 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-61.5 + pos: 63.5,4.5 parent: 2 - - uid: 7889 + - uid: 6604 components: - type: Transform - pos: 14.5,-61.5 + pos: 63.5,0.5 parent: 2 - - uid: 7891 + - uid: 6606 components: - type: Transform - pos: 22.5,-49.5 + rot: 1.5707963267948966 rad + pos: 50.5,-2.5 parent: 2 - - uid: 7892 + - uid: 6607 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-39.5 + rot: 1.5707963267948966 rad + pos: 50.5,-3.5 parent: 2 - - uid: 7895 + - uid: 6608 components: - type: Transform - pos: 10.5,-41.5 + rot: 1.5707963267948966 rad + pos: 50.5,-5.5 parent: 2 - - uid: 7897 + - uid: 6903 components: - type: Transform - pos: 12.5,-41.5 + pos: 61.5,17.5 parent: 2 - - uid: 7900 + - uid: 6904 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-41.5 + pos: 61.5,16.5 parent: 2 - - uid: 7903 + - uid: 6906 components: - type: Transform - pos: 13.5,-40.5 + pos: 60.5,17.5 parent: 2 - - uid: 7947 + - uid: 6909 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,17.5 + pos: 61.5,15.5 parent: 2 - - uid: 7963 + - uid: 7044 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-47.5 + pos: 57.5,-6.5 parent: 2 - - uid: 7964 + - uid: 7053 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-48.5 + pos: 61.5,-3.5 parent: 2 - - uid: 7967 + - uid: 7097 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,-50.5 + pos: 59.5,-15.5 parent: 2 - - uid: 7969 + - uid: 7098 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,-44.5 + pos: 58.5,-15.5 parent: 2 - - uid: 7970 + - uid: 7099 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,-43.5 + pos: 60.5,-15.5 parent: 2 - - uid: 7971 + - uid: 7143 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-43.5 + pos: 57.5,-11.5 parent: 2 - - uid: 7990 + - uid: 7144 components: - type: Transform - pos: 24.5,-61.5 + pos: 58.5,-11.5 parent: 2 - - uid: 7997 + - uid: 7145 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-33.5 + pos: 59.5,-11.5 parent: 2 - - uid: 8004 + - uid: 7166 components: - type: Transform - pos: -2.5,-37.5 + pos: 65.5,-26.5 parent: 2 - - uid: 8007 + - uid: 7172 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-41.5 + pos: 66.5,-26.5 parent: 2 - - uid: 8012 + - uid: 7220 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-55.5 + pos: 67.5,-13.5 parent: 2 - - uid: 8013 + - uid: 7221 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-33.5 + pos: 67.5,-14.5 parent: 2 - - uid: 8015 + - uid: 7222 components: - type: Transform - pos: 25.5,-62.5 + pos: 71.5,-13.5 parent: 2 - - uid: 8018 + - uid: 7223 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-38.5 + pos: 71.5,-14.5 parent: 2 - - uid: 8019 + - uid: 7256 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-38.5 + pos: 71.5,-8.5 parent: 2 - - uid: 8022 + - uid: 7257 components: - type: Transform - pos: 27.5,-66.5 + pos: 71.5,-7.5 parent: 2 - - uid: 8040 + - uid: 7427 components: - type: Transform - pos: 15.5,-69.5 + pos: 44.5,16.5 parent: 2 - - uid: 8049 + - uid: 7616 components: - type: Transform - pos: 15.5,-67.5 + rot: 1.5707963267948966 rad + pos: 20.5,-38.5 parent: 2 - - uid: 8050 + - uid: 7617 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-60.5 + rot: 1.5707963267948966 rad + pos: 21.5,-38.5 parent: 2 - - uid: 8051 + - uid: 7709 components: - type: Transform - pos: 24.5,-68.5 + rot: 1.5707963267948966 rad + pos: 26.5,-41.5 parent: 2 - - uid: 8052 + - uid: 7710 components: - type: Transform - pos: 24.5,-70.5 + rot: 1.5707963267948966 rad + pos: 27.5,-41.5 parent: 2 - - uid: 8058 + - uid: 7711 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-66.5 + rot: 1.5707963267948966 rad + pos: 26.5,-46.5 parent: 2 - - uid: 8064 + - uid: 7712 components: - type: Transform - pos: 23.5,-74.5 + rot: 1.5707963267948966 rad + pos: 27.5,-46.5 parent: 2 - - uid: 8088 + - uid: 7777 components: - type: Transform - pos: -4.5,-37.5 + rot: -1.5707963267948966 rad + pos: 11.5,-40.5 parent: 2 - - uid: 8093 + - uid: 7779 components: - type: Transform - pos: -5.5,-37.5 + pos: 10.5,-37.5 parent: 2 - - uid: 8122 + - uid: 7996 components: - type: Transform - pos: 4.5,-43.5 + pos: 9.5,-37.5 parent: 2 - - uid: 8125 + - uid: 8000 components: - type: Transform - pos: 7.5,-43.5 + pos: 8.5,-37.5 parent: 2 - - uid: 8129 + - uid: 8135 components: - type: Transform - pos: 12.5,-36.5 + pos: 11.5,-37.5 parent: 2 - - uid: 8131 + - uid: 8139 components: - type: Transform - pos: 10.5,-36.5 + rot: -1.5707963267948966 rad + pos: 12.5,-40.5 parent: 2 - - uid: 8132 + - uid: 8554 components: - type: Transform - pos: 8.5,-36.5 + pos: 75.5,-11.5 parent: 2 - - uid: 8140 + - uid: 8753 components: - type: Transform - pos: 5.5,-44.5 + rot: 3.141592653589793 rad + pos: 45.5,12.5 parent: 2 - - uid: 8141 + - uid: 15813 components: - type: Transform - pos: 6.5,-44.5 + pos: -27.5,38.5 parent: 2 - - uid: 8144 + - uid: 15842 components: - type: Transform - pos: 6.5,-46.5 + pos: -28.5,38.5 parent: 2 - - uid: 8146 + - uid: 16259 components: - type: Transform - pos: 5.5,-47.5 + pos: -31.5,14.5 parent: 2 - - uid: 8155 + - uid: 16576 components: - type: Transform - pos: 5.5,-45.5 + rot: 3.141592653589793 rad + pos: 43.5,12.5 parent: 2 - - uid: 8156 + - uid: 17596 components: - type: Transform - pos: 14.5,-39.5 + rot: 1.5707963267948966 rad + pos: -20.5,13.5 parent: 2 - - uid: 8174 + - uid: 18460 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,9.5 + pos: 57.5,-7.5 parent: 2 - - uid: 8202 + - uid: 20250 components: - type: Transform - pos: -2.5,-40.5 + rot: 3.141592653589793 rad + pos: 7.5,-48.5 parent: 2 - - uid: 8203 + - uid: 20606 components: - type: Transform - pos: -3.5,-42.5 + pos: 43.5,16.5 parent: 2 - - uid: 8342 + - uid: 20995 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,-41.5 + rot: 3.141592653589793 rad + pos: 91.5,-20.5 parent: 2 - - uid: 8491 + - uid: 20996 components: - type: Transform rot: 3.141592653589793 rad - pos: -12.5,-41.5 + pos: 90.5,-20.5 parent: 2 - - uid: 8519 + - uid: 21056 components: - type: Transform rot: -1.5707963267948966 rad - pos: -37.5,-51.5 + pos: -34.5,-43.5 parent: 2 - - uid: 8523 + - uid: 21057 components: - type: Transform rot: -1.5707963267948966 rad - pos: -35.5,-53.5 + pos: -34.5,-44.5 parent: 2 - - uid: 8707 + - uid: 21245 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-27.5 - parent: 2 - - uid: 9095 + pos: 7.5,2.5 + parent: 21128 + - uid: 21246 components: - type: Transform - pos: 14.5,-67.5 - parent: 2 - - uid: 9098 + pos: 7.5,1.5 + parent: 21128 + - uid: 21247 components: - type: Transform - pos: 14.5,-74.5 - parent: 2 - - uid: 9100 + pos: 9.5,2.5 + parent: 21128 + - uid: 21248 components: - type: Transform - pos: 21.5,-77.5 + pos: 9.5,1.5 + parent: 21128 + - uid: 21455 + components: + - type: Transform + pos: 8.5,-48.5 parent: 2 - - uid: 9101 + - uid: 21550 components: - type: Transform - pos: 13.5,-67.5 + rot: -1.5707963267948966 rad + pos: 14.5,-65.5 parent: 2 - - uid: 9106 + - uid: 21552 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,-33.5 + pos: 27.5,-44.5 parent: 2 - - uid: 9107 +- proto: TableReinforcedGlass + entities: + - uid: 6925 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-33.5 + pos: 58.5,18.5 parent: 2 - - uid: 9113 +- proto: TableStone + entities: + - uid: 2266 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,11.5 + pos: -34.5,-20.5 parent: 2 - - uid: 9116 + - uid: 2267 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,8.5 + pos: -34.5,-19.5 parent: 2 - - uid: 9123 +- proto: TableWood + entities: + - uid: 2269 components: - type: Transform - pos: -30.5,24.5 + pos: -13.5,3.5 parent: 2 - - uid: 9126 + - uid: 2271 components: - type: Transform - pos: -30.5,27.5 + pos: -13.5,0.5 parent: 2 - - uid: 9129 + - uid: 2272 components: - type: Transform - pos: -28.5,28.5 + pos: -13.5,2.5 parent: 2 - - uid: 9130 + - uid: 2273 components: - type: Transform - pos: -27.5,28.5 + pos: -13.5,-0.5 parent: 2 - - uid: 9132 + - uid: 2274 components: - type: Transform - pos: -27.5,30.5 + rot: 3.141592653589793 rad + pos: -16.5,7.5 parent: 2 - - uid: 9134 + - uid: 2277 components: - type: Transform - pos: -26.5,31.5 + pos: -17.5,-13.5 parent: 2 - - uid: 9136 + - uid: 2278 components: - type: Transform - pos: -24.5,31.5 + rot: 3.141592653589793 rad + pos: -19.5,-8.5 parent: 2 - - uid: 9138 + - uid: 2279 components: - type: Transform - pos: -27.5,25.5 + rot: 3.141592653589793 rad + pos: -20.5,-8.5 parent: 2 - - uid: 9141 + - uid: 2281 components: - type: Transform - pos: -30.5,30.5 + pos: -17.5,-17.5 parent: 2 - - uid: 9142 + - uid: 2282 components: - type: Transform - pos: -31.5,30.5 + pos: -17.5,-18.5 parent: 2 - - uid: 9145 + - uid: 2283 components: - type: Transform - pos: 84.5,-8.5 + pos: -19.5,-19.5 parent: 2 - - uid: 9152 + - uid: 2284 components: - type: Transform - pos: -27.5,33.5 + pos: -19.5,-20.5 parent: 2 - - uid: 9155 + - uid: 2285 components: - type: Transform - pos: -24.5,33.5 + pos: -17.5,-23.5 parent: 2 - - uid: 9191 + - uid: 2286 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,36.5 + pos: -18.5,-23.5 parent: 2 - - uid: 9195 + - uid: 2287 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,34.5 + pos: -21.5,-23.5 parent: 2 - - uid: 9206 + - uid: 2288 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,-19.5 + pos: -20.5,-23.5 parent: 2 - - uid: 9209 + - uid: 2289 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-18.5 + rot: -1.5707963267948966 rad + pos: -37.5,-2.5 parent: 2 - - uid: 9210 + - uid: 2290 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-18.5 + rot: -1.5707963267948966 rad + pos: -36.5,-1.5 parent: 2 - - uid: 9215 + - uid: 2291 components: - type: Transform - pos: -39.5,-37.5 + rot: -1.5707963267948966 rad + pos: -37.5,-1.5 parent: 2 - - uid: 10638 + - uid: 2292 components: - type: Transform - pos: 15.5,-68.5 + rot: -1.5707963267948966 rad + pos: -36.5,-2.5 parent: 2 - - uid: 10640 + - uid: 2293 components: - type: Transform - pos: 22.5,-77.5 + rot: -1.5707963267948966 rad + pos: -36.5,-3.5 parent: 2 - - uid: 10641 + - uid: 2294 components: - type: Transform - pos: 23.5,-67.5 + rot: -1.5707963267948966 rad + pos: -37.5,-3.5 parent: 2 - - uid: 10643 + - uid: 2301 components: - type: Transform - pos: 14.5,-76.5 + rot: -1.5707963267948966 rad + pos: -26.5,-2.5 parent: 2 - - uid: 10644 + - uid: 2302 components: - type: Transform rot: -1.5707963267948966 rad - pos: 16.5,-55.5 + pos: -26.5,-1.5 parent: 2 - - uid: 10645 + - uid: 2303 components: - type: Transform - pos: 23.5,-71.5 + rot: -1.5707963267948966 rad + pos: -27.5,-1.5 parent: 2 - - uid: 10647 + - uid: 2304 components: - type: Transform - pos: 14.5,-66.5 + rot: -1.5707963267948966 rad + pos: -27.5,-3.5 parent: 2 - - uid: 10649 + - uid: 2305 components: - type: Transform - pos: 14.5,-70.5 + rot: -1.5707963267948966 rad + pos: -26.5,-3.5 parent: 2 - - uid: 10652 + - uid: 2306 components: - type: Transform - pos: 25.5,-66.5 + rot: -1.5707963267948966 rad + pos: -27.5,-2.5 parent: 2 - - uid: 11665 + - uid: 2309 components: - type: Transform - pos: 76.5,-32.5 + pos: -35.5,-8.5 parent: 2 - - uid: 12255 + - uid: 2310 components: - type: Transform - pos: 43.5,19.5 + pos: -35.5,-9.5 parent: 2 - - uid: 12462 + - uid: 2311 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-28.5 + pos: -35.5,-10.5 parent: 2 - - uid: 12832 + - uid: 2314 components: - type: Transform - pos: 11.5,-52.5 + pos: -29.5,-9.5 parent: 2 - - uid: 12833 + - uid: 2315 components: - type: Transform - pos: 17.5,-76.5 + pos: -29.5,-8.5 parent: 2 - - uid: 12835 + - uid: 2316 components: - type: Transform - pos: 15.5,-74.5 + pos: -30.5,-37.5 parent: 2 - - uid: 12836 + - uid: 2317 components: - type: Transform - pos: 15.5,-72.5 + rot: 1.5707963267948966 rad + pos: -26.5,-38.5 parent: 2 - - uid: 12839 + - uid: 2318 components: - type: Transform - pos: 20.5,-76.5 + pos: -26.5,-36.5 parent: 2 - - uid: 13730 + - uid: 2319 components: - type: Transform - pos: 77.5,-32.5 + pos: -31.5,-37.5 parent: 2 - - uid: 14199 + - uid: 3880 components: - type: Transform - pos: 63.5,27.5 + rot: 1.5707963267948966 rad + pos: -48.5,-21.5 parent: 2 - - uid: 14632 + - uid: 3881 components: - type: Transform - pos: -37.5,-42.5 + rot: 1.5707963267948966 rad + pos: -49.5,-21.5 parent: 2 - - uid: 14672 + - uid: 3882 components: - type: Transform - pos: -61.5,-33.5 + rot: 1.5707963267948966 rad + pos: -50.5,-21.5 parent: 2 - - uid: 14956 + - uid: 3883 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,30.5 + rot: 1.5707963267948966 rad + pos: -50.5,-22.5 parent: 2 - - uid: 14959 + - uid: 3884 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,30.5 + rot: 1.5707963267948966 rad + pos: -49.5,-22.5 parent: 2 - - uid: 14960 + - uid: 3885 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,30.5 + rot: 1.5707963267948966 rad + pos: -48.5,-22.5 parent: 2 - - uid: 15010 + - uid: 3886 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,23.5 + rot: 1.5707963267948966 rad + pos: -45.5,-22.5 parent: 2 - - uid: 15012 + - uid: 3887 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,21.5 + rot: 1.5707963267948966 rad + pos: -46.5,-21.5 parent: 2 - - uid: 15039 + - uid: 3888 components: - type: Transform - pos: -24.5,39.5 + rot: 1.5707963267948966 rad + pos: -46.5,-22.5 parent: 2 - - uid: 15044 + - uid: 3889 components: - type: Transform - pos: -29.5,39.5 + rot: 1.5707963267948966 rad + pos: -45.5,-21.5 parent: 2 - - uid: 15048 + - uid: 3890 components: - type: Transform - pos: -30.5,34.5 + rot: 1.5707963267948966 rad + pos: -44.5,-21.5 parent: 2 - - uid: 15049 + - uid: 3891 components: - type: Transform - pos: -30.5,33.5 + rot: 1.5707963267948966 rad + pos: -44.5,-22.5 parent: 2 - - uid: 15051 + - uid: 4933 components: - type: Transform - pos: -20.5,38.5 + pos: -26.5,28.5 parent: 2 - - uid: 15067 + - uid: 5032 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,39.5 + pos: -11.5,32.5 parent: 2 - - uid: 15069 + - uid: 5033 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,39.5 + rot: 1.5707963267948966 rad + pos: -13.5,32.5 parent: 2 - - uid: 15070 + - uid: 5038 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,38.5 + rot: 1.5707963267948966 rad + pos: -13.5,33.5 parent: 2 - - uid: 15074 + - uid: 5039 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,34.5 + rot: 1.5707963267948966 rad + pos: -12.5,32.5 parent: 2 - - uid: 15075 + - uid: 5696 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,33.5 + pos: 33.5,15.5 parent: 2 - - uid: 15077 + - uid: 5697 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,33.5 + pos: 33.5,14.5 parent: 2 - - uid: 15079 + - uid: 6393 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,38.5 + pos: -38.5,-60.5 parent: 2 - - uid: 15082 + - uid: 6396 components: - type: Transform - pos: 18.5,24.5 + pos: -56.5,-60.5 parent: 2 - - uid: 15197 + - uid: 6397 components: - type: Transform - pos: 71.5,-3.5 + pos: -57.5,-60.5 parent: 2 - - uid: 15200 + - uid: 6398 components: - type: Transform - pos: 71.5,-0.5 + pos: -57.5,-61.5 parent: 2 - - uid: 15208 + - uid: 6399 components: - type: Transform - pos: 71.5,3.5 + pos: -56.5,-61.5 parent: 2 - - uid: 15217 + - uid: 6400 components: - type: Transform - pos: 70.5,7.5 + pos: -57.5,-62.5 parent: 2 - - uid: 15219 + - uid: 6401 components: - type: Transform - pos: 68.5,7.5 + pos: -56.5,-62.5 parent: 2 - - uid: 15244 + - uid: 6402 components: - type: Transform - pos: 67.5,22.5 + pos: -37.5,-60.5 parent: 2 - - uid: 15245 + - uid: 6403 components: - type: Transform - pos: 66.5,22.5 + pos: -38.5,-61.5 parent: 2 - - uid: 15397 + - uid: 6404 components: - type: Transform - pos: 21.5,-39.5 + pos: -37.5,-61.5 parent: 2 - - uid: 15590 + - uid: 6405 components: - type: Transform - pos: 7.5,-45.5 + pos: -38.5,-62.5 parent: 2 - - uid: 15599 + - uid: 6406 components: - type: Transform - pos: 43.5,17.5 + pos: -37.5,-62.5 parent: 2 - - uid: 15847 + - uid: 6738 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,-70.5 + rot: 3.141592653589793 rad + pos: 54.5,11.5 parent: 2 - - uid: 15848 + - uid: 6739 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-69.5 + rot: 3.141592653589793 rad + pos: 54.5,10.5 parent: 2 - - uid: 15850 + - uid: 7417 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,-68.5 + pos: 70.5,-20.5 parent: 2 - - uid: 15859 + - uid: 7418 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-67.5 + pos: 71.5,-20.5 parent: 2 - - uid: 15876 + - uid: 9159 components: - type: Transform - pos: -17.5,41.5 + pos: -25.5,28.5 parent: 2 - - uid: 15883 + - uid: 13487 components: - type: Transform - pos: -11.5,42.5 + pos: 40.5,-30.5 parent: 2 - - uid: 15885 + - uid: 14062 components: - type: Transform - pos: -10.5,41.5 + pos: -35.5,-15.5 parent: 2 - - uid: 15942 + - uid: 14784 components: - type: Transform - pos: -43.5,18.5 + pos: -30.5,-15.5 parent: 2 - - uid: 15946 + - uid: 14991 components: - type: Transform - pos: -44.5,15.5 + rot: -1.5707963267948966 rad + pos: -35.5,23.5 parent: 2 - - uid: 16002 + - uid: 14994 components: - type: Transform - pos: -21.5,-45.5 + rot: -1.5707963267948966 rad + pos: -38.5,28.5 parent: 2 - - uid: 16004 + - uid: 14995 components: - type: Transform - pos: -19.5,-45.5 + rot: -1.5707963267948966 rad + pos: -34.5,22.5 parent: 2 - - uid: 16023 + - uid: 14996 components: - type: Transform - pos: -23.5,-44.5 + rot: -1.5707963267948966 rad + pos: -34.5,23.5 parent: 2 - - uid: 16025 + - uid: 14997 components: - type: Transform - pos: -20.5,-45.5 + rot: -1.5707963267948966 rad + pos: -34.5,28.5 parent: 2 - - uid: 16090 + - uid: 14998 components: - type: Transform - pos: 63.5,28.5 + rot: -1.5707963267948966 rad + pos: -37.5,23.5 parent: 2 - - uid: 16091 + - uid: 14999 components: - type: Transform - pos: 60.5,28.5 + rot: -1.5707963267948966 rad + pos: -36.5,23.5 parent: 2 - - uid: 16095 + - uid: 15020 components: - type: Transform - pos: 58.5,28.5 + rot: 1.5707963267948966 rad + pos: -36.5,21.5 parent: 2 - - uid: 16099 + - uid: 15921 components: - type: Transform - pos: 55.5,27.5 + pos: -15.5,41.5 parent: 2 - - uid: 16154 + - uid: 15922 components: - type: Transform - pos: 71.5,-36.5 + pos: -12.5,41.5 parent: 2 - - uid: 16167 + - uid: 16232 components: - type: Transform - pos: -37.5,-46.5 + pos: 81.5,-22.5 parent: 2 - - uid: 16170 + - uid: 16233 components: - type: Transform - pos: 84.5,-31.5 + pos: 81.5,-23.5 parent: 2 - - uid: 16177 + - uid: 16444 components: - type: Transform - pos: 84.5,-24.5 + pos: -30.5,-45.5 parent: 2 - - uid: 16262 + - uid: 16500 components: - type: Transform - pos: 20.5,-39.5 + pos: -66.5,-24.5 parent: 2 - - uid: 16308 + - uid: 17257 components: - type: Transform - pos: 78.5,-4.5 + pos: 65.5,-52.5 parent: 2 - - uid: 16312 + - uid: 20418 components: - type: Transform - pos: 80.5,-4.5 + pos: 81.5,-35.5 parent: 2 - - uid: 16314 +- proto: TargetClown + entities: + - uid: 16841 components: - type: Transform - pos: 83.5,-5.5 + pos: 9.5,39.5 parent: 2 - - uid: 16316 +- proto: TargetDarts + entities: + - uid: 21576 components: - type: Transform - pos: 83.5,-7.5 + pos: -36.5,27.5 parent: 2 - - uid: 16337 +- proto: TargetSyndicate + entities: + - uid: 21066 components: - type: Transform - pos: 53.5,25.5 + pos: -36.5,-43.5 parent: 2 - - uid: 16343 +- proto: TelecomServer + entities: + - uid: 7431 components: - type: Transform - pos: 54.5,25.5 + pos: 68.5,-29.5 parent: 2 - - uid: 16346 +- proto: TelecomServerFilledCargo + entities: + - uid: 14231 components: - type: Transform - pos: 49.5,25.5 + pos: 24.5,-43.5 parent: 2 - - uid: 16390 +- proto: TelecomServerFilledCommand + entities: + - uid: 14232 components: - type: Transform - pos: 17.5,26.5 + pos: 58.5,-32.5 parent: 2 - - uid: 16423 + - uid: 14239 components: - type: Transform - pos: -26.5,-44.5 + pos: 24.5,-44.5 parent: 2 - - uid: 16429 +- proto: TelecomServerFilledCommon + entities: + - uid: 14234 components: - type: Transform - pos: 16.5,28.5 + pos: 25.5,-41.5 parent: 2 - - uid: 16430 +- proto: TelecomServerFilledEngineering + entities: + - uid: 14237 components: - type: Transform - pos: -31.5,-46.5 + pos: 25.5,-46.5 parent: 2 - - uid: 16457 +- proto: TelecomServerFilledMedical + entities: + - uid: 14233 components: - type: Transform - pos: -59.5,-37.5 + pos: 24.5,-46.5 parent: 2 - - uid: 16458 +- proto: TelecomServerFilledScience + entities: + - uid: 14238 components: - type: Transform - pos: -58.5,-37.5 + pos: 25.5,-43.5 parent: 2 - - uid: 16460 +- proto: TelecomServerFilledSecurity + entities: + - uid: 14236 components: - type: Transform - pos: -56.5,-37.5 + pos: 25.5,-44.5 parent: 2 - - uid: 16462 +- proto: TelecomServerFilledService + entities: + - uid: 14235 components: - type: Transform - pos: -54.5,-37.5 + pos: 24.5,-41.5 parent: 2 - - uid: 16488 +- proto: Thruster + entities: + - uid: 15142 components: - type: Transform - pos: -68.5,-26.5 + pos: -33.5,34.5 parent: 2 - - uid: 16490 + - uid: 15143 components: - type: Transform - pos: -68.5,-24.5 + pos: -33.5,35.5 parent: 2 - - uid: 16494 + - uid: 15144 components: - type: Transform - pos: -65.5,-22.5 + pos: -32.5,34.5 parent: 2 - - uid: 16495 + - uid: 15145 components: - type: Transform - pos: -67.5,-22.5 + pos: -32.5,35.5 parent: 2 - - uid: 16510 + - uid: 21205 components: - type: Transform - pos: 16.5,30.5 - parent: 2 - - uid: 16511 + rot: 3.141592653589793 rad + pos: 5.5,-5.5 + parent: 21128 + - uid: 21206 components: - type: Transform - pos: 16.5,31.5 - parent: 2 - - uid: 16518 + rot: 3.141592653589793 rad + pos: 9.5,-7.5 + parent: 21128 +- proto: TintedWindow + entities: + - uid: 2021 components: - type: Transform - pos: 48.5,22.5 + pos: 47.5,-4.5 parent: 2 - - uid: 16520 + - uid: 2022 components: - type: Transform - pos: 46.5,22.5 + pos: 53.5,-7.5 parent: 2 - - uid: 16570 + - uid: 2023 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,43.5 + pos: 47.5,-7.5 parent: 2 - - uid: 16572 + - uid: 2024 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,43.5 + pos: 47.5,-1.5 parent: 2 - - uid: 16574 + - uid: 2025 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,43.5 + pos: 53.5,-1.5 parent: 2 - - uid: 16604 + - uid: 2026 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-43.5 + pos: -22.5,-41.5 parent: 2 - - uid: 16613 + - uid: 6887 components: - type: Transform - pos: 85.5,-23.5 + rot: 1.5707963267948966 rad + pos: 61.5,0.5 parent: 2 - - uid: 16622 + - uid: 6888 components: - type: Transform - pos: 17.5,37.5 + rot: 1.5707963267948966 rad + pos: 61.5,4.5 parent: 2 - - uid: 16624 +- proto: ToiletEmpty + entities: + - uid: 2320 components: - type: Transform - pos: 17.5,35.5 + rot: 1.5707963267948966 rad + pos: 35.5,-22.5 parent: 2 - - uid: 16626 + - uid: 5006 components: - type: Transform - pos: 17.5,34.5 + rot: 1.5707963267948966 rad + pos: -6.5,40.5 parent: 2 - - uid: 16713 + - uid: 5286 components: - type: Transform - pos: 22.5,-75.5 + rot: -1.5707963267948966 rad + pos: 3.5,40.5 parent: 2 - - uid: 16734 + - uid: 8225 components: - type: Transform - pos: 23.5,-70.5 + rot: -1.5707963267948966 rad + pos: 17.5,23.5 parent: 2 - - uid: 16773 + - uid: 8235 components: - type: Transform rot: -1.5707963267948966 rad - pos: 56.5,-42.5 + pos: 17.5,25.5 parent: 2 - - uid: 16774 +- proto: ToiletGoldenDirtyWater + entities: + - uid: 4593 components: - type: Transform - pos: 55.5,-42.5 + pos: 45.5,-27.5 parent: 2 - - uid: 16775 +- proto: ToolboxArtisticFilled + entities: + - uid: 5117 components: - type: Transform - pos: 55.5,-41.5 + pos: -34.515057,-20.462738 parent: 2 - - uid: 16790 +- proto: ToolboxElectricalFilled + entities: + - uid: 4370 components: - type: Transform - pos: 62.5,-37.5 + pos: 36.492764,-3.2268338 parent: 2 - - uid: 16794 + - uid: 16124 components: - type: Transform - pos: 66.5,-37.5 + pos: 1.5326661,-19.32547 parent: 2 - - uid: 16801 + - uid: 22353 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-40.5 + pos: 17.546753,-62.23559 parent: 2 - - uid: 16813 +- proto: ToolboxEmergencyFilled + entities: + - uid: 2322 components: - type: Transform - pos: 43.5,-57.5 + pos: 1.4969568,-19.241749 parent: 2 - - uid: 16822 + - uid: 4369 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-26.5 + pos: 36.51111,-2.9332993 parent: 2 - - uid: 16828 +- proto: ToolboxGoldFilled + entities: + - uid: 5914 components: - type: Transform - pos: 30.5,-52.5 + pos: 54.499077,-35.417862 parent: 2 - - uid: 16852 +- proto: ToolboxMechanical + entities: + - uid: 22354 components: - type: Transform - pos: 5.5,56.5 + pos: 17.546753,-62.492435 parent: 2 - - uid: 16854 +- proto: ToolboxMechanicalFilled + entities: + - uid: 2323 components: - type: Transform - pos: 6.5,55.5 + pos: 1.5282068,-19.507374 parent: 2 - - uid: 16856 + - uid: 4371 components: - type: Transform - pos: -5.5,55.5 + pos: 36.51111,-3.538714 parent: 2 - - uid: 16859 + - uid: 5747 components: - type: Transform - pos: -9.5,51.5 + pos: 28.502048,12.539796 parent: 2 - - uid: 16862 +- proto: ToyFigurineClown + entities: + - uid: 2324 components: - type: Transform - pos: -6.5,51.5 + pos: -20.040586,-13.42651 parent: 2 - - uid: 17018 +- proto: ToyFigurineFootsoldier + entities: + - uid: 21063 components: - type: Transform - pos: 24.5,-67.5 + pos: -34.32448,-43.488884 parent: 2 - - uid: 17020 +- proto: ToyFigurineNukieCommander + entities: + - uid: 5942 components: - type: Transform - pos: 24.5,-74.5 + pos: 38.483326,-38.004993 parent: 2 - - uid: 17070 +- proto: ToyFigurineNukieElite + entities: + - uid: 21061 components: - type: Transform - pos: 39.5,-52.5 + pos: -34.63432,-43.333965 parent: 2 - - uid: 17071 +- proto: ToyFigurinePassenger + entities: + - uid: 2325 components: - type: Transform - pos: 49.5,-56.5 + pos: -20.274961,-14.23901 parent: 2 - - uid: 17072 +- proto: ToyFigurineSpaceDragon + entities: + - uid: 2326 components: - type: Transform - pos: 55.5,-48.5 + pos: -19.618711,-14.223385 parent: 2 - - uid: 17073 +- proto: ToyNuke + entities: + - uid: 2327 components: - type: Transform - pos: 61.5,-56.5 + pos: -19.44582,-13.477165 parent: 2 - - uid: 17074 +- proto: ToyRubberDuck + entities: + - uid: 1971 components: - type: Transform - pos: 64.5,-48.5 + pos: 45.5,-30.5 parent: 2 - - uid: 17197 + - uid: 5256 components: - type: Transform - pos: 66.5,-35.5 + pos: 0.7634096,47.159733 parent: 2 - - uid: 17202 +- proto: ToySpawner + entities: + - uid: 14225 components: - type: Transform - pos: 64.5,-49.5 + pos: 55.5,-25.5 parent: 2 - - uid: 17209 +- proto: TrainingBomb + entities: + - uid: 2135 components: - type: Transform - pos: 67.5,-48.5 + pos: -5.5,32.5 parent: 2 - - uid: 17210 +- proto: TrashBag + entities: + - uid: 5273 components: - type: Transform - pos: 65.5,-48.5 + pos: -4.987312,48.64716 parent: 2 - - uid: 17211 +- proto: TrashBakedBananaPeel + entities: + - uid: 16479 components: - type: Transform - pos: 66.5,-48.5 + pos: -59.62266,-35.23038 parent: 2 - - uid: 17232 + - uid: 16480 components: - type: Transform - pos: 64.5,-37.5 + pos: -59.42697,-35.426067 parent: 2 - - uid: 17247 +- proto: TrashBananaPeel + entities: + - uid: 2328 components: - type: Transform - pos: 67.5,-49.5 + pos: -27.617392,-17.536655 parent: 2 - - uid: 17327 +- proto: trayScanner + entities: + - uid: 21861 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-38.5 + pos: 58.334652,-7.458692 parent: 2 - - uid: 17354 +- proto: TwoWayLever + entities: + - uid: 5553 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-29.5 + pos: 30.5,23.5 parent: 2 - - uid: 18469 + - type: DeviceLinkSource + linkedPorts: + 5554: + - Left: Forward + - Right: Reverse + - Middle: Off + 5510: + - Left: Forward + - Right: Reverse + - Middle: Off + 7406: + - Left: Forward + - Right: Reverse + - Middle: Off + 5478: + - Left: Forward + - Right: Reverse + - Middle: Off + 5475: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 7940 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,-6.5 + pos: -10.5,-39.5 parent: 2 - - uid: 18470 + - type: DeviceLinkSource + linkedPorts: + 7915: + - Left: Forward + - Right: Reverse + - Middle: Off + 2696: + - Left: Forward + - Right: Reverse + - Middle: Off + 9233: + - Left: Forward + - Right: Reverse + - Middle: Off + 20107: + - Left: Forward + - Right: Reverse + - Middle: Off + 7905: + - Left: Forward + - Right: Reverse + - Middle: Off + 16910: + - Left: Reverse + - Right: Forward + - Middle: Off + - uid: 15603 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-7.5 + pos: 24.5,23.5 parent: 2 - - uid: 18475 + - type: DeviceLinkSource + linkedPorts: + 8553: + - Left: Forward + - Right: Reverse + - Middle: Off + 17528: + - Left: Forward + - Right: Reverse + - Middle: Off + 17529: + - Left: Forward + - Right: Reverse + - Middle: Off + 17530: + - Left: Forward + - Right: Reverse + - Middle: Off + 17531: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 17334 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-4.5 + pos: 33.5,19.5 parent: 2 - - uid: 18579 + - type: DeviceLinkSource + linkedPorts: + 5714: + - Left: Reverse + - Right: Forward + - Middle: Off + 8321: + - Left: Reverse + - Right: Forward + - Middle: Off + 5732: + - Left: Reverse + - Right: Forward + - Middle: Off + - uid: 20106 components: - type: Transform - pos: 15.5,-75.5 + pos: -11.5,-39.5 parent: 2 - - uid: 19151 + - type: DeviceLinkSource + linkedPorts: + 7916: + - Left: Forward + - Right: Reverse + - Middle: Off + 7913: + - Left: Forward + - Right: Reverse + - Middle: Off + 8665: + - Left: Forward + - Right: Reverse + - Middle: Off + 7912: + - Left: Forward + - Right: Reverse + - Middle: Off + 7911: + - Left: Forward + - Right: Reverse + - Middle: Off +- proto: UnfinishedMachineFrame + entities: + - uid: 15086 components: - type: Transform - pos: 19.5,-76.5 + pos: -3.5,-38.5 parent: 2 - - uid: 20088 + - uid: 16136 components: - type: Transform - pos: 16.5,-75.5 + pos: 60.5,26.5 parent: 2 - - uid: 20089 + - uid: 21199 components: - type: Transform - pos: 23.5,-75.5 - parent: 2 - - uid: 20097 + pos: 2.5,-8.5 + parent: 21128 + - uid: 21200 components: - type: Transform - pos: 22.5,-76.5 - parent: 2 - - uid: 20201 + pos: 8.5,-7.5 + parent: 21128 + - uid: 21201 components: - type: Transform - pos: 19.5,-77.5 - parent: 2 - - uid: 20303 + pos: 10.5,4.5 + parent: 21128 + - uid: 21202 components: - type: Transform - pos: 15.5,38.5 + pos: 8.5,3.5 + parent: 21128 +- proto: UniformPrinter + entities: + - uid: 2329 + components: + - type: Transform + pos: 40.5,-25.5 parent: 2 - - uid: 20356 +- proto: UniformShortsRedWithTop + entities: + - uid: 21032 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,39.5 + pos: -30.471287,-24.425285 parent: 2 - - uid: 20357 +- proto: Vaccinator + entities: + - uid: 6913 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,42.5 + pos: 58.5,17.5 parent: 2 - - uid: 20360 +- proto: VendingBarDrobe + entities: + - uid: 2331 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,43.5 + pos: -17.5,7.5 parent: 2 - - uid: 20362 +- proto: VendingMachineAtmosDrobe + entities: + - uid: 2332 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,43.5 + pos: 14.5,-18.5 parent: 2 - - uid: 20364 +- proto: VendingMachineBooze + entities: + - uid: 14972 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,42.5 + pos: -37.5,21.5 parent: 2 - - uid: 20367 + - uid: 20296 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,39.5 + pos: -15.5,-0.5 parent: 2 - - uid: 20398 +- proto: VendingMachineCargoDrobe + entities: + - uid: 16906 components: - type: Transform - pos: 83.5,-36.5 + pos: 23.5,22.5 parent: 2 - - uid: 20400 +- proto: VendingMachineCart + entities: + - uid: 2333 components: - type: Transform - pos: 84.5,-35.5 + pos: 39.5,-25.5 parent: 2 - - uid: 20402 +- proto: VendingMachineChapel + entities: + - uid: 2334 components: - type: Transform - pos: 84.5,-33.5 + pos: -30.5,-36.5 parent: 2 - - uid: 20405 +- proto: VendingMachineChefDrobe + entities: + - uid: 2335 components: - type: Transform - pos: 79.5,-34.5 + pos: -18.5,14.5 parent: 2 - - uid: 20406 +- proto: VendingMachineChefvend + entities: + - uid: 2336 components: - type: Transform - pos: 79.5,-33.5 + pos: -18.5,13.5 parent: 2 - - uid: 20529 +- proto: VendingMachineChemDrobe + entities: + - uid: 5996 components: - type: Transform - pos: -41.5,22.5 + pos: 41.5,12.5 parent: 2 - - uid: 20531 +- proto: VendingMachineChemicals + entities: + - uid: 711 components: - type: Transform - pos: -42.5,21.5 + pos: 41.5,13.5 parent: 2 - - uid: 20533 +- proto: VendingMachineCigs + entities: + - uid: 2337 components: - type: Transform - pos: -44.5,22.5 + pos: -39.5,-24.5 parent: 2 - - uid: 20536 + - uid: 4170 components: - type: Transform - pos: -44.5,24.5 + pos: 24.5,-33.5 parent: 2 - - uid: 20879 + - uid: 4960 components: - type: Transform - pos: 87.5,-10.5 + pos: 5.5,28.5 parent: 2 - - uid: 20883 + - uid: 8214 components: - type: Transform - pos: 89.5,-10.5 + pos: 41.5,-6.5 parent: 2 - - uid: 20889 + - uid: 16144 components: - type: Transform - pos: 91.5,-10.5 + pos: 13.5,-33.5 parent: 2 - - uid: 20902 + - uid: 20607 components: - type: Transform - pos: 93.5,-16.5 + pos: -21.5,-4.5 parent: 2 - - uid: 20924 +- proto: VendingMachineClothing + entities: + - uid: 1593 components: - type: Transform - rot: 3.141592653589793 rad - pos: 93.5,-21.5 + pos: 38.5,0.5 parent: 2 - - uid: 20925 + - uid: 2340 components: - type: Transform - rot: 3.141592653589793 rad - pos: 91.5,-21.5 + pos: -38.5,-13.5 parent: 2 - - uid: 20930 + - uid: 20610 components: - type: Transform - rot: 3.141592653589793 rad - pos: 87.5,-21.5 + pos: -21.5,-3.5 parent: 2 - - uid: 20932 +- proto: VendingMachineCoffee + entities: + - uid: 2341 components: - type: Transform - rot: 3.141592653589793 rad - pos: 90.5,-23.5 + pos: -17.5,-15.5 parent: 2 - - uid: 20935 + - uid: 2342 components: - type: Transform - rot: 3.141592653589793 rad - pos: 87.5,-23.5 + pos: -28.5,-24.5 parent: 2 - - uid: 21398 + - uid: 4167 components: - type: Transform - pos: -21.5,-48.5 + pos: 23.5,-33.5 parent: 2 - - uid: 21453 +- proto: VendingMachineCondiments + entities: + - uid: 2343 components: - type: Transform - pos: -64.5,-33.5 + pos: -23.5,14.5 parent: 2 - - uid: 21460 +- proto: VendingMachineCuraDrobe + entities: + - uid: 1555 components: - type: Transform - pos: 24.5,-76.5 + pos: -20.5,-10.5 parent: 2 - - uid: 21461 +- proto: VendingMachineDetDrobe + entities: + - uid: 9177 components: - type: Transform - pos: 14.5,-71.5 + pos: -26.5,25.5 parent: 2 - - uid: 21463 +- proto: VendingMachineDinnerware + entities: + - uid: 2344 components: - type: Transform - pos: 15.5,-62.5 + pos: -18.5,12.5 parent: 2 - - uid: 21525 +- proto: VendingMachineEngiDrobe + entities: + - uid: 2345 components: - type: Transform - pos: 24.5,-72.5 + pos: -9.5,-23.5 parent: 2 - - uid: 21526 +- proto: VendingMachineEngivend + entities: + - uid: 2346 components: - type: Transform - pos: 24.5,-73.5 + pos: -8.5,-23.5 parent: 2 - - uid: 21528 +- proto: VendingMachineGames + entities: + - uid: 2347 components: - type: Transform - pos: 11.5,-66.5 + pos: -17.5,-12.5 parent: 2 - - uid: 21587 + - uid: 5167 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-49.5 + pos: -6.5,45.5 parent: 2 - - uid: 21588 +- proto: VendingMachineHydrobe + entities: + - uid: 14630 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-50.5 + pos: -38.5,11.5 parent: 2 - - uid: 21589 +- proto: VendingMachineJaniDrobe + entities: + - uid: 2349 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-49.5 + pos: -18.5,-25.5 parent: 2 - - uid: 21671 +- proto: VendingMachineLawDrobe + entities: + - uid: 4501 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,18.5 + pos: -44.5,-13.5 parent: 2 - - uid: 21748 +- proto: VendingMachineMedical + entities: + - uid: 6690 components: - type: Transform - pos: 42.5,16.5 + pos: 50.5,-4.5 parent: 2 - - uid: 22006 + - uid: 6691 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-59.5 + pos: 48.5,5.5 parent: 2 - - uid: 22038 +- proto: VendingMachineMediDrobe + entities: + - uid: 6692 components: - type: Transform - pos: 20.5,-71.5 + pos: 54.5,4.5 parent: 2 - - uid: 22041 +- proto: VendingMachineNutri + entities: + - uid: 16120 components: - type: Transform - pos: 18.5,-71.5 + pos: -29.5,17.5 parent: 2 - - uid: 22042 +- proto: VendingMachineRoboDrobe + entities: + - uid: 7102 components: - type: Transform - pos: 20.5,-74.5 + pos: 60.5,-26.5 parent: 2 - - uid: 22043 +- proto: VendingMachineRobotics + entities: + - uid: 7161 components: - type: Transform - pos: 18.5,-74.5 + pos: 60.5,-25.5 parent: 2 - - uid: 22044 +- proto: VendingMachineSalvage + entities: + - uid: 5705 components: - type: Transform - pos: 19.5,-74.5 + pos: 33.5,22.5 parent: 2 - - uid: 22174 +- proto: VendingMachineSciDrobe + entities: + - uid: 4277 components: - type: Transform - pos: 18.5,-73.5 + pos: 67.5,-10.5 parent: 2 - - uid: 22177 +- proto: VendingMachineSec + entities: + - uid: 5051 components: - type: Transform - pos: 20.5,-73.5 + pos: -4.5,34.5 parent: 2 - - uid: 22448 +- proto: VendingMachineSecDrobe + entities: + - uid: 5052 components: - type: Transform - pos: -63.5,-33.5 + pos: -4.5,33.5 parent: 2 -- proto: WallReinforcedRust +- proto: VendingMachineSeeds entities: - - uid: 597 + - uid: 15399 components: - type: Transform - pos: 14.5,-73.5 + pos: -30.5,17.5 parent: 2 - - uid: 2330 +- proto: VendingMachineSeedsUnlocked + entities: + - uid: 5210 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-42.5 + pos: -3.5,52.5 parent: 2 - - uid: 2368 + - uid: 16332 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-42.5 + pos: 80.5,-7.5 parent: 2 - - uid: 2370 +- proto: VendingMachineSustenance + entities: + - uid: 5168 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-43.5 + pos: -6.5,46.5 parent: 2 - - uid: 2372 +- proto: VendingMachineTankDispenserEngineering + entities: + - uid: 2353 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-41.5 + pos: 23.5,-20.5 parent: 2 - - uid: 2374 +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 7615 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,11.5 + pos: 19.5,-38.5 parent: 2 - - uid: 2376 + - uid: 8982 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,11.5 + pos: 36.5,22.5 parent: 2 - - uid: 2379 + - uid: 15147 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,11.5 + pos: -31.5,35.5 parent: 2 - - uid: 2384 + - uid: 20608 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,11.5 + pos: -9.5,-25.5 parent: 2 - - uid: 2385 +- proto: VendingMachineTheater + entities: + - uid: 2354 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,11.5 + pos: -38.5,-12.5 parent: 2 - - uid: 2387 + - uid: 2355 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,11.5 + pos: -36.5,7.5 parent: 2 - - uid: 2390 + - uid: 4356 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,11.5 + pos: 39.5,-0.5 parent: 2 - - uid: 2392 +- proto: VendingMachineVendomat + entities: + - uid: 1352 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,11.5 + pos: -3.5,-23.5 parent: 2 - - uid: 2394 + - uid: 2890 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-9.5 + pos: 37.5,0.5 parent: 2 - - uid: 2397 +- proto: VendingMachineViroDrobe + entities: + - uid: 6912 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,11.5 + pos: 61.5,14.5 parent: 2 - - uid: 2399 +- proto: VendingMachineWinter + entities: + - uid: 2358 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,9.5 + pos: -38.5,-14.5 parent: 2 - - uid: 2402 + - uid: 4357 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,7.5 + pos: 39.5,-1.5 parent: 2 - - uid: 2404 +- proto: VendingMachineYouTool + entities: + - uid: 2359 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,4.5 + pos: -7.5,-23.5 parent: 2 - - uid: 2407 + - uid: 4354 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,2.5 + pos: 36.5,0.5 parent: 2 - - uid: 2410 +- proto: WallmountTelevision + entities: + - uid: 545 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-0.5 + pos: 5.5,22.5 parent: 2 - - uid: 2412 + - uid: 8920 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-2.5 + pos: -19.5,22.5 parent: 2 - - uid: 2413 + - uid: 8921 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-5.5 + rot: -1.5707963267948966 rad + pos: -40.5,5.5 parent: 2 - - uid: 2416 + - uid: 8922 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-8.5 + pos: -34.5,-23.5 parent: 2 - - uid: 2418 + - uid: 21745 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-10.5 + pos: -10.5,-32.5 parent: 2 - - uid: 2420 +- proto: WallPlastic + entities: + - uid: 2360 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-10.5 + pos: -30.5,-16.5 parent: 2 - - uid: 2424 + - uid: 2361 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-10.5 + pos: -27.5,-16.5 parent: 2 - - uid: 2426 + - uid: 2362 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-10.5 + pos: -29.5,-16.5 parent: 2 - - uid: 2427 + - uid: 2363 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-10.5 + pos: -30.5,-17.5 parent: 2 - - uid: 2429 + - uid: 2364 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-10.5 + pos: -30.5,-18.5 parent: 2 - - uid: 2430 + - uid: 2365 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-11.5 + pos: -30.5,-19.5 parent: 2 - - uid: 2433 + - uid: 2366 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-10.5 + pos: -30.5,-20.5 parent: 2 - - uid: 2435 +- proto: WallReinforced + entities: + - uid: 48 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-10.5 + rot: -1.5707963267948966 rad + pos: 5.5,-49.5 parent: 2 - - uid: 2436 + - uid: 103 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-10.5 + rot: -1.5707963267948966 rad + pos: 54.5,-43.5 parent: 2 - - uid: 2437 + - uid: 851 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-7.5 + rot: -1.5707963267948966 rad + pos: 6.5,-50.5 parent: 2 - - uid: 2439 + - uid: 1084 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-6.5 + pos: -38.5,-43.5 parent: 2 - - uid: 2440 + - uid: 1447 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-4.5 + pos: -62.5,-21.5 parent: 2 - - uid: 2442 + - uid: 2002 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-2.5 + pos: 50.5,-42.5 parent: 2 - - uid: 2443 + - uid: 2012 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,4.5 + pos: 37.5,-31.5 parent: 2 - - uid: 2448 + - uid: 2035 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,3.5 + pos: -55.5,5.5 parent: 2 - - uid: 2449 + - uid: 2037 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,9.5 + pos: -55.5,-0.5 parent: 2 - - uid: 2450 + - uid: 2106 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,7.5 + rot: -1.5707963267948966 rad + pos: 56.5,-43.5 parent: 2 - - uid: 2452 + - uid: 2367 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-12.5 + pos: -8.5,11.5 parent: 2 - - uid: 2457 + - uid: 2369 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-12.5 + pos: -9.5,11.5 parent: 2 - - uid: 2458 + - uid: 2371 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-15.5 + pos: -6.5,11.5 parent: 2 - - uid: 2459 + - uid: 2373 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-15.5 + pos: -4.5,11.5 parent: 2 - - uid: 2461 + - uid: 2375 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-18.5 + pos: -3.5,11.5 parent: 2 - - uid: 2463 + - uid: 2377 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-0.5 + pos: -1.5,11.5 parent: 2 - - uid: 2466 + - uid: 2378 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-11.5 + pos: 0.5,11.5 parent: 2 - - uid: 2467 + - uid: 2380 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-13.5 + pos: 2.5,11.5 parent: 2 - - uid: 2468 + - uid: 2381 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-15.5 + pos: 3.5,11.5 parent: 2 - - uid: 2472 + - uid: 2382 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-16.5 + pos: 4.5,11.5 parent: 2 - - uid: 2473 + - uid: 2383 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-16.5 + pos: 7.5,11.5 parent: 2 - - uid: 2474 + - uid: 2386 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-12.5 + pos: 9.5,11.5 parent: 2 - - uid: 2476 + - uid: 2388 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-12.5 + pos: 10.5,11.5 parent: 2 - - uid: 2479 + - uid: 2389 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-11.5 + pos: 6.5,11.5 parent: 2 - - uid: 2481 + - uid: 2391 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-10.5 + pos: 11.5,10.5 parent: 2 - - uid: 2483 + - uid: 2393 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-8.5 + pos: 11.5,8.5 parent: 2 - - uid: 2485 + - uid: 2395 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-5.5 + pos: 11.5,6.5 parent: 2 - - uid: 2489 + - uid: 2396 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-3.5 + pos: 11.5,5.5 parent: 2 - - uid: 2492 + - uid: 2398 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-0.5 + pos: 11.5,3.5 parent: 2 - - uid: 2495 + - uid: 2400 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,2.5 + pos: 11.5,1.5 parent: 2 - - uid: 2496 + - uid: 2401 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,5.5 + pos: 11.5,0.5 parent: 2 - - uid: 2500 + - uid: 2403 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,7.5 + pos: 11.5,-1.5 parent: 2 - - uid: 2503 + - uid: 2405 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,11.5 + pos: 11.5,-3.5 parent: 2 - - uid: 2505 + - uid: 2406 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,13.5 + pos: 11.5,-4.5 parent: 2 - - uid: 2508 + - uid: 2408 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,13.5 + pos: 11.5,-6.5 parent: 2 - - uid: 2510 + - uid: 2409 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,13.5 + pos: 11.5,-7.5 parent: 2 - - uid: 2512 + - uid: 2411 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,13.5 + pos: 11.5,-9.5 parent: 2 - - uid: 2516 + - uid: 2414 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,13.5 + pos: 9.5,-10.5 parent: 2 - - uid: 2518 + - uid: 2415 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,13.5 + pos: 8.5,-10.5 parent: 2 - - uid: 2521 + - uid: 2417 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,13.5 + pos: 6.5,-10.5 parent: 2 - - uid: 2524 + - uid: 2419 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,13.5 + pos: 4.5,-10.5 parent: 2 - - uid: 2527 + - uid: 2421 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,13.5 + rot: -1.5707963267948966 rad + pos: 3.5,-11.5 parent: 2 - - uid: 2529 + - uid: 2422 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,13.5 + rot: -1.5707963267948966 rad + pos: -2.5,-11.5 parent: 2 - - uid: 2531 + - uid: 2423 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,13.5 + pos: -2.5,-10.5 parent: 2 - - uid: 2533 + - uid: 2425 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,10.5 + pos: -4.5,-10.5 parent: 2 - - uid: 2534 + - uid: 2428 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,8.5 + pos: -5.5,-12.5 parent: 2 - - uid: 2535 + - uid: 2431 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,6.5 + pos: -10.5,-10.5 parent: 2 - - uid: 2538 + - uid: 2432 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,4.5 + pos: -10.5,-8.5 parent: 2 - - uid: 2540 + - uid: 2434 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,3.5 + pos: -10.5,-5.5 parent: 2 - - uid: 2542 + - uid: 2438 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-0.5 + pos: -10.5,-3.5 parent: 2 - - uid: 2545 + - uid: 2441 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-3.5 + pos: -10.5,5.5 parent: 2 - - uid: 2546 + - uid: 2444 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-5.5 + pos: -10.5,8.5 parent: 2 - - uid: 2548 + - uid: 2445 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-7.5 + pos: -10.5,10.5 parent: 2 - - uid: 2549 + - uid: 2446 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-11.5 + pos: -10.5,6.5 parent: 2 - - uid: 2551 + - uid: 2447 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-9.5 + pos: 8.5,-12.5 parent: 2 - - uid: 2553 + - uid: 2451 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-12.5 + pos: -2.5,-16.5 parent: 2 - - uid: 2554 + - uid: 2453 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-12.5 + pos: 3.5,-16.5 parent: 2 - - uid: 2556 + - uid: 2454 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-12.5 + pos: -2.5,-18.5 parent: 2 - - uid: 2557 + - uid: 2455 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-12.5 + pos: -1.5,-18.5 parent: 2 - - uid: 2559 + - uid: 2456 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-11.5 + pos: 3.5,-17.5 parent: 2 - - uid: 2560 + - uid: 2460 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-19.5 + pos: 7.5,-12.5 parent: 2 - - uid: 2562 + - uid: 2462 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-19.5 + pos: 7.5,-14.5 parent: 2 - - uid: 2565 + - uid: 2464 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-12.5 + pos: 7.5,-16.5 parent: 2 - - uid: 2568 + - uid: 2465 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-13.5 + pos: 6.5,-16.5 parent: 2 - - uid: 2569 + - uid: 2469 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-15.5 + pos: 10.5,-12.5 parent: 2 - - uid: 2571 + - uid: 2470 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-17.5 + pos: 11.5,-12.5 parent: 2 - - uid: 2572 + - uid: 2471 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-13.5 + pos: 12.5,-12.5 parent: 2 - - uid: 2575 + - uid: 2475 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-17.5 + pos: 13.5,-9.5 parent: 2 - - uid: 2581 + - uid: 2477 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-19.5 + pos: 13.5,-7.5 parent: 2 - - uid: 2582 + - uid: 2478 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-17.5 + pos: 13.5,-6.5 parent: 2 - - uid: 2583 + - uid: 2480 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-19.5 + pos: 13.5,-4.5 parent: 2 - - uid: 2586 + - uid: 2482 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-23.5 + pos: 13.5,-1.5 parent: 2 - - uid: 2587 + - uid: 2484 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-21.5 + pos: 13.5,1.5 parent: 2 - - uid: 2589 + - uid: 2486 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-24.5 + pos: 13.5,0.5 parent: 2 - - uid: 2590 + - uid: 2487 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-24.5 + pos: 13.5,-2.5 parent: 2 - - uid: 2591 + - uid: 2488 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-24.5 + pos: 13.5,3.5 parent: 2 - - uid: 2593 + - uid: 2490 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-25.5 + pos: 13.5,6.5 parent: 2 - - uid: 2595 + - uid: 2491 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-25.5 + pos: 13.5,4.5 parent: 2 - - uid: 2597 + - uid: 2493 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-26.5 + pos: 13.5,9.5 parent: 2 - - uid: 2599 + - uid: 2494 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-28.5 + pos: 13.5,10.5 parent: 2 - - uid: 2601 + - uid: 2497 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-28.5 + pos: 13.5,8.5 parent: 2 - - uid: 2603 + - uid: 2498 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-26.5 + pos: 13.5,12.5 parent: 2 - - uid: 2604 + - uid: 2499 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-28.5 + pos: 12.5,13.5 parent: 2 - - uid: 2606 + - uid: 2501 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-24.5 + pos: 10.5,13.5 parent: 2 - - uid: 2609 + - uid: 2502 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-24.5 + pos: 9.5,13.5 parent: 2 - - uid: 2611 + - uid: 2504 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-24.5 + pos: 7.5,13.5 parent: 2 - - uid: 2612 + - uid: 2506 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-26.5 + pos: 5.5,13.5 parent: 2 - - uid: 2617 + - uid: 2507 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-25.5 + pos: 4.5,13.5 parent: 2 - - uid: 2618 + - uid: 2509 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-28.5 + pos: 2.5,13.5 parent: 2 - - uid: 2622 + - uid: 2511 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-28.5 + pos: -0.5,13.5 parent: 2 - - uid: 2624 + - uid: 2513 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-20.5 + pos: -3.5,13.5 parent: 2 - - uid: 2625 + - uid: 2514 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-22.5 + pos: 0.5,13.5 parent: 2 - - uid: 2627 + - uid: 2515 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-26.5 + pos: -2.5,13.5 parent: 2 - - uid: 2630 + - uid: 2517 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-18.5 + pos: -5.5,13.5 parent: 2 - - uid: 2632 + - uid: 2519 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-19.5 + pos: -7.5,13.5 parent: 2 - - uid: 2635 + - uid: 2520 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-20.5 + pos: -8.5,13.5 parent: 2 - - uid: 2638 + - uid: 2522 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-16.5 + pos: -10.5,13.5 parent: 2 - - uid: 2639 + - uid: 2523 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-19.5 + pos: -11.5,13.5 parent: 2 - - uid: 2640 + - uid: 2525 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-25.5 + pos: -12.5,12.5 parent: 2 - - uid: 2642 + - uid: 2526 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-25.5 + pos: -12.5,11.5 parent: 2 - - uid: 2645 + - uid: 2528 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-19.5 + pos: -12.5,9.5 parent: 2 - - uid: 2647 + - uid: 2530 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-28.5 + pos: -12.5,7.5 parent: 2 - - uid: 2649 + - uid: 2532 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-23.5 + pos: -12.5,5.5 parent: 2 - - uid: 2651 + - uid: 2536 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-25.5 + pos: -11.5,3.5 parent: 2 - - uid: 2652 + - uid: 2537 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-27.5 + pos: -12.5,-2.5 parent: 2 - - uid: 2655 + - uid: 2539 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-30.5 + pos: -12.5,-4.5 parent: 2 - - uid: 2656 + - uid: 2541 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-23.5 + pos: -12.5,-6.5 parent: 2 - - uid: 2658 + - uid: 2543 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-23.5 + pos: -12.5,-8.5 parent: 2 - - uid: 2661 + - uid: 2544 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-23.5 + pos: -12.5,-10.5 parent: 2 - - uid: 2662 + - uid: 2547 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-30.5 + pos: -11.5,-12.5 parent: 2 - - uid: 2663 + - uid: 2550 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-30.5 + pos: -9.5,-12.5 parent: 2 - - uid: 2667 + - uid: 2552 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-21.5 + pos: -7.5,-10.5 parent: 2 - - uid: 2668 + - uid: 2558 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-20.5 + pos: -13.5,-12.5 parent: 2 - - uid: 2670 + - uid: 2561 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-19.5 + pos: -14.5,-14.5 parent: 2 - - uid: 2672 + - uid: 2563 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-14.5 + rot: -1.5707963267948966 rad + pos: -10.5,-18.5 parent: 2 - - uid: 2673 + - uid: 2564 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-14.5 + rot: -1.5707963267948966 rad + pos: -14.5,-18.5 parent: 2 - - uid: 2676 + - uid: 2566 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-14.5 + rot: -1.5707963267948966 rad + pos: -14.5,-16.5 parent: 2 - - uid: 2678 + - uid: 2567 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-14.5 + rot: -1.5707963267948966 rad + pos: -10.5,-14.5 parent: 2 - - uid: 2679 + - uid: 2570 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-9.5 + rot: -1.5707963267948966 rad + pos: -13.5,-19.5 parent: 2 - - uid: 2685 + - uid: 2573 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-6.5 + rot: 3.141592653589793 rad + pos: -7.5,-20.5 parent: 2 - - uid: 2697 + - uid: 2574 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-4.5 + rot: 3.141592653589793 rad + pos: -5.5,-20.5 parent: 2 - - uid: 2728 + - uid: 2576 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-3.5 + rot: 3.141592653589793 rad + pos: -2.5,-20.5 parent: 2 - - uid: 2729 + - uid: 2577 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-1.5 + rot: 3.141592653589793 rad + pos: -10.5,-20.5 parent: 2 - - uid: 2734 + - uid: 2578 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-39.5 + rot: -1.5707963267948966 rad + pos: -9.5,-24.5 parent: 2 - - uid: 2760 + - uid: 2579 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-19.5 + rot: -1.5707963267948966 rad + pos: -10.5,-24.5 parent: 2 - - uid: 2762 + - uid: 2580 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-19.5 + pos: -10.5,-22.5 parent: 2 - - uid: 2763 + - uid: 2584 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-28.5 + rot: -1.5707963267948966 rad + pos: -7.5,-24.5 parent: 2 - - uid: 2764 + - uid: 2585 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-0.5 + rot: -1.5707963267948966 rad + pos: -5.5,-24.5 parent: 2 - - uid: 2765 + - uid: 2588 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-20.5 + rot: -1.5707963267948966 rad + pos: -2.5,-24.5 parent: 2 - - uid: 2768 + - uid: 2592 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-22.5 + rot: 3.141592653589793 rad + pos: -10.5,-27.5 parent: 2 - - uid: 2769 + - uid: 2594 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-23.5 + rot: 3.141592653589793 rad + pos: -8.5,-27.5 parent: 2 - - uid: 2771 + - uid: 2596 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-19.5 + rot: 3.141592653589793 rad + pos: -3.5,-25.5 parent: 2 - - uid: 2773 + - uid: 2598 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-19.5 + rot: 3.141592653589793 rad + pos: -3.5,-27.5 parent: 2 - - uid: 2775 + - uid: 2600 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-18.5 + rot: 3.141592653589793 rad + pos: -4.5,-28.5 parent: 2 - - uid: 2776 + - uid: 2602 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-5.5 + rot: 3.141592653589793 rad + pos: 2.5,-24.5 parent: 2 - - uid: 2778 + - uid: 2605 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-5.5 + rot: 3.141592653589793 rad + pos: 4.5,-25.5 parent: 2 - - uid: 2782 + - uid: 2607 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-22.5 + rot: 3.141592653589793 rad + pos: 4.5,-27.5 parent: 2 - - uid: 2783 + - uid: 2608 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-21.5 + rot: 3.141592653589793 rad + pos: 4.5,-28.5 parent: 2 - - uid: 2785 + - uid: 2610 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-9.5 + rot: 3.141592653589793 rad + pos: 1.5,-27.5 parent: 2 - - uid: 2787 + - uid: 2613 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-14.5 + rot: 3.141592653589793 rad + pos: 2.5,-28.5 parent: 2 - - uid: 2789 + - uid: 2616 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-14.5 + rot: 3.141592653589793 rad + pos: 3.5,-19.5 parent: 2 - - uid: 2794 + - uid: 2619 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-14.5 + rot: 3.141592653589793 rad + pos: 3.5,-23.5 parent: 2 - - uid: 2796 + - uid: 2620 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-3.5 + rot: -1.5707963267948966 rad + pos: 10.5,-24.5 parent: 2 - - uid: 2797 + - uid: 2621 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-1.5 + pos: 10.5,-25.5 parent: 2 - - uid: 2799 + - uid: 2623 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-3.5 + pos: 10.5,-27.5 parent: 2 - - uid: 2801 + - uid: 2626 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-5.5 + pos: 11.5,-19.5 parent: 2 - - uid: 2803 + - uid: 2628 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-1.5 + rot: -1.5707963267948966 rad + pos: 17.5,-23.5 parent: 2 - - uid: 2805 + - uid: 2629 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-2.5 + pos: 9.5,-17.5 parent: 2 - - uid: 2806 + - uid: 2633 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-4.5 + pos: 9.5,-15.5 parent: 2 - - uid: 2808 + - uid: 2634 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-1.5 + pos: 16.5,-14.5 parent: 2 - - uid: 2809 + - uid: 2636 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-2.5 + pos: 5.5,-25.5 parent: 2 - - uid: 2810 + - uid: 2637 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-3.5 + pos: 8.5,-25.5 parent: 2 - - uid: 2811 + - uid: 2641 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-5.5 + pos: 14.5,-19.5 parent: 2 - - uid: 2813 + - uid: 2643 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-1.5 + rot: -1.5707963267948966 rad + pos: 11.5,-23.5 parent: 2 - - uid: 2815 + - uid: 2644 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-1.5 + rot: -1.5707963267948966 rad + pos: 10.5,-29.5 parent: 2 - - uid: 2817 + - uid: 2646 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-2.5 + rot: -1.5707963267948966 rad + pos: 18.5,-26.5 parent: 2 - - uid: 2818 + - uid: 2648 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-4.5 + rot: -1.5707963267948966 rad + pos: 18.5,-28.5 parent: 2 - - uid: 2820 + - uid: 2650 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-1.5 + rot: -1.5707963267948966 rad + pos: 18.5,-29.5 parent: 2 - - uid: 2824 + - uid: 2653 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-2.5 + rot: -1.5707963267948966 rad + pos: 15.5,-23.5 parent: 2 - - uid: 2837 + - uid: 2654 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-3.5 + rot: -1.5707963267948966 rad + pos: 18.5,-24.5 parent: 2 - - uid: 2840 + - uid: 2657 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-5.5 + rot: -1.5707963267948966 rad + pos: 10.5,-30.5 parent: 2 - - uid: 2841 + - uid: 2659 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-17.5 + rot: -1.5707963267948966 rad + pos: 13.5,-23.5 parent: 2 - - uid: 2843 + - uid: 2660 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-17.5 + rot: -1.5707963267948966 rad + pos: 16.5,-22.5 parent: 2 - - uid: 2845 + - uid: 2664 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-5.5 + rot: -1.5707963267948966 rad + pos: 15.5,-19.5 parent: 2 - - uid: 2850 + - uid: 2665 components: - type: Transform rot: 1.5707963267948966 rad - pos: 32.5,-5.5 + pos: 15.5,-10.5 parent: 2 - - uid: 2855 + - uid: 2666 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,-6.5 + pos: 15.5,-14.5 parent: 2 - - uid: 2857 + - uid: 2669 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-8.5 + rot: -1.5707963267948966 rad + pos: 11.5,-14.5 parent: 2 - - uid: 2858 + - uid: 2671 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-17.5 + rot: -1.5707963267948966 rad + pos: 13.5,-14.5 parent: 2 - - uid: 2860 + - uid: 2674 components: - type: Transform rot: 1.5707963267948966 rad - pos: 36.5,-12.5 + pos: 15.5,-12.5 parent: 2 - - uid: 2861 + - uid: 2675 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-10.5 + pos: 15.5,-7.5 parent: 2 - - uid: 2863 + - uid: 2677 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-9.5 + pos: 15.5,-5.5 parent: 2 - - uid: 2865 + - uid: 2680 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-9.5 + pos: 15.5,-2.5 parent: 2 - - uid: 2872 + - uid: 2726 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-17.5 + pos: 17.5,-19.5 parent: 2 - - uid: 2889 + - uid: 2730 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-17.5 + pos: 19.5,-19.5 parent: 2 - - uid: 2934 + - uid: 2731 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-15.5 + pos: 21.5,-19.5 parent: 2 - - uid: 2937 + - uid: 2732 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-13.5 + rot: -1.5707963267948966 rad + pos: -2.5,-28.5 parent: 2 - - uid: 2939 + - uid: 2736 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-18.5 + rot: 3.141592653589793 rad + pos: -0.5,16.5 parent: 2 - - uid: 2941 + - uid: 2738 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-17.5 + rot: 3.141592653589793 rad + pos: -4.5,15.5 parent: 2 - - uid: 2943 + - uid: 2740 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-21.5 + rot: 3.141592653589793 rad + pos: -3.5,16.5 parent: 2 - - uid: 2944 + - uid: 2741 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-21.5 + rot: 3.141592653589793 rad + pos: -4.5,16.5 parent: 2 - - uid: 2945 + - uid: 2759 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-21.5 + rot: 3.141592653589793 rad + pos: -10.5,-1.5 parent: 2 - - uid: 2947 + - uid: 2761 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-22.5 + rot: 3.141592653589793 rad + pos: -12.5,-1.5 parent: 2 - - uid: 2949 + - uid: 2766 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-23.5 + pos: 24.5,-19.5 parent: 2 - - uid: 2951 + - uid: 2767 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-24.5 + pos: 25.5,-19.5 parent: 2 - - uid: 2952 + - uid: 2770 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-26.5 + pos: 26.5,-17.5 parent: 2 - - uid: 2954 + - uid: 2772 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-27.5 + pos: 26.5,-14.5 parent: 2 - - uid: 2958 + - uid: 2774 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-29.5 + pos: 24.5,-23.5 parent: 2 - - uid: 2973 + - uid: 2777 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-30.5 + pos: 24.5,-20.5 parent: 2 - - uid: 2981 + - uid: 2779 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-33.5 + pos: 28.5,-9.5 parent: 2 - - uid: 2993 + - uid: 2780 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-34.5 + pos: 28.5,-7.5 parent: 2 - - uid: 2996 + - uid: 2781 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-32.5 + pos: 30.5,-9.5 parent: 2 - - uid: 2997 + - uid: 2784 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-32.5 + pos: 29.5,-14.5 parent: 2 - - uid: 2998 + - uid: 2786 components: - type: Transform rot: 1.5707963267948966 rad - pos: 34.5,-22.5 + pos: 17.5,-4.5 parent: 2 - - uid: 2999 + - uid: 2788 components: - type: Transform rot: 1.5707963267948966 rad - pos: 31.5,-26.5 + pos: 17.5,-2.5 parent: 2 - - uid: 3002 + - uid: 2790 components: - type: Transform rot: 1.5707963267948966 rad - pos: 34.5,-25.5 + pos: 16.5,-1.5 parent: 2 - - uid: 3005 + - uid: 2791 components: - type: Transform rot: 1.5707963267948966 rad - pos: 38.5,-22.5 + pos: 18.5,-1.5 parent: 2 - - uid: 3007 + - uid: 2792 components: - type: Transform rot: 1.5707963267948966 rad - pos: 38.5,-23.5 + pos: 19.5,-1.5 parent: 2 - - uid: 3008 + - uid: 2793 components: - type: Transform rot: 1.5707963267948966 rad - pos: 38.5,-26.5 + pos: 19.5,-2.5 parent: 2 - - uid: 3010 + - uid: 2795 components: - type: Transform rot: 1.5707963267948966 rad - pos: 37.5,-27.5 + pos: 19.5,-4.5 parent: 2 - - uid: 3011 + - uid: 2798 components: - type: Transform rot: 1.5707963267948966 rad - pos: 34.5,-27.5 + pos: 21.5,-1.5 parent: 2 - - uid: 3012 + - uid: 2800 components: - type: Transform rot: 1.5707963267948966 rad - pos: 38.5,-25.5 + pos: 21.5,-3.5 parent: 2 - - uid: 3013 + - uid: 2802 components: - type: Transform rot: 1.5707963267948966 rad - pos: 46.5,-22.5 + pos: 21.5,-5.5 parent: 2 - - uid: 3014 + - uid: 2804 components: - type: Transform rot: 1.5707963267948966 rad - pos: 46.5,-21.5 + pos: 23.5,-1.5 parent: 2 - - uid: 3015 + - uid: 2807 components: - type: Transform rot: 1.5707963267948966 rad - pos: 45.5,-22.5 + pos: 23.5,-4.5 parent: 2 - - uid: 3017 + - uid: 2812 components: - type: Transform rot: 1.5707963267948966 rad - pos: 46.5,-24.5 + pos: 25.5,-3.5 parent: 2 - - uid: 3019 + - uid: 2814 components: - type: Transform rot: 1.5707963267948966 rad - pos: 46.5,-25.5 + pos: 25.5,-5.5 parent: 2 - - uid: 3021 + - uid: 2816 components: - type: Transform rot: 1.5707963267948966 rad - pos: 46.5,-26.5 + pos: 27.5,-1.5 parent: 2 - - uid: 3029 + - uid: 2819 components: - type: Transform rot: 1.5707963267948966 rad - pos: 44.5,-26.5 + pos: 27.5,-4.5 parent: 2 - - uid: 3030 + - uid: 2822 components: - type: Transform rot: 1.5707963267948966 rad - pos: 42.5,-26.5 + pos: 29.5,-17.5 parent: 2 - - uid: 3031 + - uid: 2823 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,-26.5 + pos: 28.5,-17.5 parent: 2 - - uid: 3032 + - uid: 2838 components: - type: Transform rot: 1.5707963267948966 rad - pos: 50.5,-22.5 + pos: 29.5,-5.5 parent: 2 - - uid: 3034 + - uid: 2839 components: - type: Transform rot: 1.5707963267948966 rad - pos: 49.5,-22.5 + pos: 30.5,-5.5 parent: 2 - - uid: 3035 + - uid: 2842 components: - type: Transform rot: 1.5707963267948966 rad - pos: 50.5,-23.5 + pos: 33.5,-5.5 parent: 2 - - uid: 3048 + - uid: 2844 components: - type: Transform rot: 1.5707963267948966 rad - pos: 50.5,-24.5 + pos: 33.5,-7.5 parent: 2 - - uid: 3049 + - uid: 2846 components: - type: Transform rot: 1.5707963267948966 rad - pos: 50.5,-26.5 + pos: 33.5,-9.5 parent: 2 - - uid: 3054 + - uid: 2847 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-26.5 + pos: 22.5,-32.5 parent: 2 - - uid: 3056 + - uid: 2849 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,-40.5 + pos: 33.5,-17.5 parent: 2 - - uid: 3057 + - uid: 2851 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,-32.5 + pos: 31.5,-17.5 parent: 2 - - uid: 3058 + - uid: 2852 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,-16.5 + pos: 32.5,-14.5 parent: 2 - - uid: 3158 + - uid: 2853 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,-14.5 + pos: 36.5,-14.5 parent: 2 - - uid: 3175 + - uid: 2854 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,-13.5 + pos: 36.5,-13.5 parent: 2 - - uid: 3177 + - uid: 2856 components: - type: Transform rot: 1.5707963267948966 rad - pos: 38.5,-13.5 + pos: 36.5,-11.5 parent: 2 - - uid: 3178 + - uid: 2859 components: - type: Transform rot: 1.5707963267948966 rad - pos: -16.5,22.5 + pos: 35.5,-9.5 parent: 2 - - uid: 3180 + - uid: 2862 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,22.5 + pos: 35.5,-17.5 parent: 2 - - uid: 3183 + - uid: 2864 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,22.5 + pos: 36.5,-16.5 parent: 2 - - uid: 3288 + - uid: 2866 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,22.5 + pos: 15.5,-8.5 parent: 2 - - uid: 3289 + - uid: 2932 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,22.5 + pos: 37.5,-17.5 parent: 2 - - uid: 3294 + - uid: 2933 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,22.5 + pos: 38.5,-17.5 parent: 2 - - uid: 3424 + - uid: 2935 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,18.5 + pos: 40.5,-17.5 parent: 2 - - uid: 3452 + - uid: 2936 components: - type: Transform rot: 1.5707963267948966 rad - pos: -37.5,20.5 + pos: 39.5,-22.5 parent: 2 - - uid: 3454 + - uid: 2938 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,18.5 + pos: 37.5,-21.5 parent: 2 - - uid: 3562 + - uid: 2940 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-38.5 + pos: 35.5,-21.5 parent: 2 - - uid: 3563 + - uid: 2942 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-36.5 + pos: 30.5,-21.5 parent: 2 - - uid: 3566 + - uid: 2946 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,18.5 + pos: 30.5,-25.5 parent: 2 - - uid: 3576 + - uid: 2948 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,7.5 + pos: 30.5,-27.5 parent: 2 - - uid: 3577 + - uid: 2950 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,7.5 + pos: 22.5,-28.5 parent: 2 - - uid: 3614 + - uid: 2953 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,8.5 + pos: 22.5,-31.5 parent: 2 - - uid: 3657 + - uid: 2955 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,-4.5 + pos: 22.5,-34.5 parent: 2 - - uid: 3660 + - uid: 2956 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,-4.5 + pos: 18.5,-35.5 parent: 2 - - uid: 3661 + - uid: 2975 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,8.5 + pos: 3.5,-32.5 parent: 2 - - uid: 3662 + - uid: 2976 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,10.5 + rot: 3.141592653589793 rad + pos: -2.5,-38.5 parent: 2 - - uid: 3664 + - uid: 2979 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,11.5 + rot: 3.141592653589793 rad + pos: -1.5,-38.5 parent: 2 - - uid: 3667 + - uid: 2980 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,11.5 + rot: 3.141592653589793 rad + pos: 3.5,-33.5 parent: 2 - - uid: 3668 + - uid: 2992 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,11.5 + pos: 31.5,-22.5 parent: 2 - - uid: 3671 + - uid: 2994 components: - type: Transform rot: 1.5707963267948966 rad - pos: -51.5,9.5 + pos: 34.5,-23.5 parent: 2 - - uid: 3746 + - uid: 2995 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,14.5 + pos: 34.5,-26.5 parent: 2 - - uid: 3749 + - uid: 3000 components: - type: Transform rot: 1.5707963267948966 rad - pos: -50.5,14.5 + pos: 37.5,-23.5 parent: 2 - - uid: 3762 + - uid: 3001 components: - type: Transform rot: 1.5707963267948966 rad - pos: -44.5,14.5 + pos: 35.5,-23.5 parent: 2 - - uid: 3765 + - uid: 3003 components: - type: Transform rot: 1.5707963267948966 rad - pos: -55.5,-6.5 + pos: 38.5,-27.5 parent: 2 - - uid: 3791 + - uid: 3004 components: - type: Transform rot: 1.5707963267948966 rad - pos: -55.5,-9.5 + pos: 36.5,-27.5 parent: 2 - - uid: 3792 + - uid: 3006 components: - type: Transform rot: 1.5707963267948966 rad - pos: -55.5,-12.5 + pos: 35.5,-27.5 parent: 2 - - uid: 3794 + - uid: 3009 components: - type: Transform rot: 1.5707963267948966 rad - pos: -55.5,-15.5 + pos: 46.5,-23.5 parent: 2 - - uid: 3854 + - uid: 3016 components: - type: Transform rot: 1.5707963267948966 rad - pos: -55.5,-16.5 + pos: 45.5,-26.5 parent: 2 - - uid: 3855 + - uid: 3018 components: - type: Transform rot: 1.5707963267948966 rad - pos: -55.5,-18.5 + pos: 43.5,-26.5 parent: 2 - - uid: 3914 + - uid: 3020 components: - type: Transform rot: 1.5707963267948966 rad - pos: -55.5,-20.5 + pos: 41.5,-26.5 parent: 2 - - uid: 3920 + - uid: 3022 components: - type: Transform rot: 1.5707963267948966 rad - pos: -55.5,-19.5 + pos: 39.5,-26.5 parent: 2 - - uid: 3923 + - uid: 3028 components: - type: Transform - pos: 36.5,-31.5 + pos: 50.5,-21.5 parent: 2 - - uid: 3924 + - uid: 3033 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-27.5 + pos: 50.5,-25.5 parent: 2 - - uid: 3926 + - uid: 3047 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-31.5 + pos: 4.5,-39.5 parent: 2 - - uid: 3928 + - uid: 3055 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-31.5 + rot: -1.5707963267948966 rad + pos: 39.5,-13.5 parent: 2 - - uid: 3934 + - uid: 3059 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-29.5 + rot: -1.5707963267948966 rad + pos: 37.5,-13.5 parent: 2 - - uid: 3936 + - uid: 3103 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-30.5 + rot: 3.141592653589793 rad + pos: -14.5,-28.5 parent: 2 - - uid: 3937 + - uid: 3114 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-31.5 + pos: -22.5,-32.5 parent: 2 - - uid: 3938 + - uid: 3155 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-31.5 + pos: -19.5,22.5 parent: 2 - - uid: 3941 + - uid: 3162 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-31.5 + pos: -12.5,22.5 parent: 2 - - uid: 3942 + - uid: 3176 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-31.5 + pos: 5.5,22.5 parent: 2 - - uid: 3943 + - uid: 3179 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-29.5 + pos: 2.5,22.5 parent: 2 - - uid: 3944 + - uid: 3181 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-30.5 + rot: -1.5707963267948966 rad + pos: 0.5,22.5 parent: 2 - - uid: 3949 + - uid: 3185 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-31.5 + pos: -4.5,24.5 parent: 2 - - uid: 3954 + - uid: 3189 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-32.5 + pos: -8.5,22.5 parent: 2 - - uid: 3956 + - uid: 3249 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-37.5 + rot: 3.141592653589793 rad + pos: -0.5,15.5 parent: 2 - - uid: 3969 + - uid: 3250 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-32.5 + rot: 3.141592653589793 rad + pos: -1.5,16.5 parent: 2 - - uid: 3972 + - uid: 3251 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-34.5 + rot: 3.141592653589793 rad + pos: -2.5,16.5 parent: 2 - - uid: 3973 + - uid: 3287 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-39.5 + rot: 3.141592653589793 rad + pos: -37.5,19.5 parent: 2 - - uid: 4018 + - uid: 3309 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-37.5 + pos: -55.5,-5.5 parent: 2 - - uid: 4019 + - uid: 3310 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-39.5 + pos: 29.5,-0.5 parent: 2 - - uid: 4138 + - uid: 3453 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-32.5 + pos: -36.5,-37.5 parent: 2 - - uid: 4141 + - uid: 3564 components: - type: Transform rot: 1.5707963267948966 rad - pos: 34.5,-32.5 + pos: -55.5,7.5 parent: 2 - - uid: 4183 + - uid: 3572 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-34.5 + rot: -1.5707963267948966 rad + pos: -55.5,8.5 parent: 2 - - uid: 4192 + - uid: 3575 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,-34.5 + pos: -56.5,-4.5 parent: 2 - - uid: 4197 + - uid: 3591 components: - type: Transform rot: 1.5707963267948966 rad - pos: 22.5,22.5 + pos: -55.5,3.5 parent: 2 - - uid: 4201 + - uid: 3600 components: - type: Transform rot: 1.5707963267948966 rad - pos: 22.5,8.5 + pos: -55.5,-2.5 parent: 2 - - uid: 4244 + - uid: 3615 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,6.5 + rot: -1.5707963267948966 rad + pos: -51.5,8.5 parent: 2 - - uid: 4266 + - uid: 3656 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-8.5 + pos: -55.5,9.5 parent: 2 - - uid: 4269 + - uid: 3658 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,5.5 + pos: -55.5,11.5 parent: 2 - - uid: 4273 + - uid: 3659 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,5.5 + pos: -54.5,11.5 parent: 2 - - uid: 4314 + - uid: 3663 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,5.5 + pos: -51.5,10.5 parent: 2 - - uid: 4315 + - uid: 3665 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-21.5 + pos: -51.5,12.5 parent: 2 - - uid: 4317 + - uid: 3666 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-2.5 + pos: -51.5,13.5 parent: 2 - - uid: 4441 + - uid: 3747 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-2.5 + pos: -55.5,-7.5 parent: 2 - - uid: 4450 + - uid: 3748 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,5.5 + pos: -55.5,-8.5 parent: 2 - - uid: 4474 + - uid: 3760 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,-29.5 + pos: -55.5,-10.5 parent: 2 - - uid: 4482 + - uid: 3761 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,-22.5 + pos: -55.5,-11.5 parent: 2 - - uid: 4483 + - uid: 3763 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,-21.5 + pos: -55.5,-13.5 parent: 2 - - uid: 4486 + - uid: 3790 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -61.5,-21.5 + pos: -55.5,-14.5 parent: 2 - - uid: 4489 + - uid: 3793 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-20.5 + pos: -55.5,-17.5 parent: 2 - - uid: 4491 + - uid: 3907 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,-20.5 + pos: 41.5,6.5 parent: 2 - - uid: 4660 + - uid: 3917 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-46.5 + pos: 34.5,-28.5 parent: 2 - - uid: 4663 + - uid: 3919 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,25.5 + pos: 34.5,-30.5 parent: 2 - - uid: 4664 + - uid: 3921 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,26.5 + pos: 35.5,-31.5 parent: 2 - - uid: 4668 + - uid: 3925 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,26.5 + pos: 39.5,-31.5 parent: 2 - - uid: 4670 + - uid: 3929 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,32.5 + pos: 46.5,-27.5 parent: 2 - - uid: 4672 + - uid: 3930 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,26.5 + pos: 46.5,-28.5 parent: 2 - - uid: 4674 + - uid: 3933 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,35.5 + pos: 46.5,-31.5 parent: 2 - - uid: 4677 + - uid: 3935 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,25.5 + pos: 44.5,-31.5 parent: 2 - - uid: 4679 + - uid: 3939 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,23.5 + pos: 41.5,-31.5 parent: 2 - - uid: 4680 + - uid: 3940 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,30.5 + pos: 50.5,-28.5 parent: 2 - - uid: 4684 + - uid: 3945 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,25.5 + pos: 50.5,-33.5 parent: 2 - - uid: 4686 + - uid: 3946 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,23.5 + pos: 50.5,-34.5 parent: 2 - - uid: 4691 + - uid: 3948 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,25.5 + pos: 50.5,-36.5 parent: 2 - - uid: 4692 + - uid: 3950 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,24.5 + pos: 30.5,-28.5 parent: 2 - - uid: 4707 + - uid: 3953 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,31.5 + pos: 30.5,-31.5 parent: 2 - - uid: 4708 + - uid: 3955 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,34.5 + pos: 30.5,-33.5 parent: 2 - - uid: 4713 + - uid: 3957 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,36.5 + pos: 30.5,-35.5 parent: 2 - - uid: 4714 + - uid: 3959 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,27.5 + pos: 21.5,-53.5 parent: 2 - - uid: 4715 + - uid: 3965 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,35.5 + rot: 3.141592653589793 rad + pos: 50.5,-38.5 parent: 2 - - uid: 4722 + - uid: 3968 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,27.5 + rot: 3.141592653589793 rad + pos: 49.5,-38.5 parent: 2 - - uid: 4724 + - uid: 3970 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,24.5 + rot: 3.141592653589793 rad + pos: 31.5,-38.5 parent: 2 - - uid: 4741 + - uid: 3971 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,28.5 + rot: 3.141592653589793 rad + pos: 30.5,-38.5 parent: 2 - - uid: 4743 + - uid: 4040 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,29.5 + pos: -56.5,-20.5 parent: 2 - - uid: 4748 + - uid: 4137 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,29.5 + pos: 24.5,-34.5 parent: 2 - - uid: 4757 + - uid: 4139 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,26.5 + pos: 26.5,-34.5 parent: 2 - - uid: 4771 + - uid: 4140 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,33.5 + pos: 27.5,-34.5 parent: 2 - - uid: 4773 + - uid: 4142 components: - type: Transform rot: 1.5707963267948966 rad - pos: -15.5,30.5 + pos: 29.5,-34.5 parent: 2 - - uid: 4775 + - uid: 4184 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,30.5 + pos: 22.5,21.5 parent: 2 - - uid: 4786 + - uid: 4186 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,29.5 + rot: 3.141592653589793 rad + pos: 47.5,6.5 parent: 2 - - uid: 4790 + - uid: 4188 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,29.5 + pos: 22.5,18.5 parent: 2 - - uid: 4806 + - uid: 4189 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,25.5 + pos: 22.5,17.5 parent: 2 - - uid: 4811 + - uid: 4190 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,24.5 + pos: 22.5,16.5 parent: 2 - - uid: 4814 + - uid: 4198 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,24.5 + pos: 22.5,7.5 parent: 2 - - uid: 4816 + - uid: 4199 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,24.5 + pos: 22.5,5.5 parent: 2 - - uid: 4817 + - uid: 4200 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,24.5 + pos: 22.5,9.5 parent: 2 - - uid: 4818 + - uid: 4213 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,25.5 + pos: 29.5,0.5 parent: 2 - - uid: 4821 + - uid: 4214 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,24.5 + pos: 29.5,1.5 parent: 2 - - uid: 4823 + - uid: 4215 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,30.5 + pos: 30.5,1.5 parent: 2 - - uid: 4826 + - uid: 4216 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,30.5 + pos: 31.5,1.5 parent: 2 - - uid: 4827 + - uid: 4245 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,30.5 + rot: -1.5707963267948966 rad + pos: -56.5,-50.5 parent: 2 - - uid: 4830 + - uid: 4247 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,27.5 + pos: 44.5,-5.5 parent: 2 - - uid: 4831 + - uid: 4250 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,26.5 + pos: 44.5,-2.5 parent: 2 - - uid: 4832 + - uid: 4253 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,25.5 + pos: 44.5,0.5 parent: 2 - - uid: 4837 + - uid: 4265 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,29.5 + pos: 35.5,5.5 parent: 2 - - uid: 4839 + - uid: 4267 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,35.5 + pos: 33.5,5.5 parent: 2 - - uid: 4840 + - uid: 4268 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,35.5 + pos: 32.5,5.5 parent: 2 - - uid: 4842 + - uid: 4271 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,35.5 + pos: 30.5,5.5 parent: 2 - - uid: 4844 + - uid: 4272 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,35.5 + pos: 29.5,5.5 parent: 2 - - uid: 4847 + - uid: 4274 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,33.5 + pos: 27.5,5.5 parent: 2 - - uid: 4850 + - uid: 4278 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,35.5 + pos: 23.5,5.5 parent: 2 - - uid: 4852 + - uid: 4280 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,35.5 + pos: 29.5,-1.5 parent: 2 - - uid: 4854 + - uid: 4281 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,32.5 + pos: 29.5,-2.5 parent: 2 - - uid: 4858 + - uid: 4282 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,31.5 + pos: 29.5,-3.5 parent: 2 - - uid: 4863 + - uid: 4283 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,31.5 + pos: 30.5,-3.5 parent: 2 - - uid: 4864 + - uid: 4284 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,34.5 + pos: 31.5,-3.5 parent: 2 - - uid: 4866 + - uid: 4285 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,34.5 + pos: 32.5,-3.5 parent: 2 - - uid: 4867 + - uid: 4286 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,34.5 + pos: 33.5,-3.5 parent: 2 - - uid: 4881 + - uid: 4287 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,25.5 + pos: 34.5,-3.5 parent: 2 - - uid: 4883 + - uid: 4288 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,35.5 + pos: 35.5,-3.5 parent: 2 - - uid: 4886 + - uid: 4291 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,-32.5 + rot: -1.5707963267948966 rad + pos: 28.5,9.5 parent: 2 - - uid: 4888 + - uid: 4302 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,37.5 + pos: 35.5,1.5 parent: 2 - - uid: 4896 + - uid: 4345 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,31.5 + rot: 3.141592653589793 rad + pos: 53.5,-28.5 parent: 2 - - uid: 4897 + - uid: 4352 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,30.5 + pos: 47.5,5.5 parent: 2 - - uid: 4899 + - uid: 4444 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,30.5 + pos: 35.5,-2.5 parent: 2 - - uid: 4908 + - uid: 4445 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,34.5 + pos: 35.5,-1.5 parent: 2 - - uid: 4909 + - uid: 4446 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,34.5 + pos: 35.5,-0.5 parent: 2 - - uid: 4910 + - uid: 4447 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,34.5 + pos: 35.5,0.5 parent: 2 - - uid: 4911 + - uid: 4461 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,34.5 + rot: 3.141592653589793 rad + pos: 47.5,3.5 parent: 2 - - uid: 4912 + - uid: 4475 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,34.5 + pos: -64.5,-28.5 parent: 2 - - uid: 4913 + - uid: 4477 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,34.5 + pos: -64.5,-27.5 parent: 2 - - uid: 4927 + - uid: 4484 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,33.5 + pos: -37.5,-39.5 parent: 2 - - uid: 4937 + - uid: 4488 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,38.5 + pos: -59.5,-21.5 parent: 2 - - uid: 4939 + - uid: 4558 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,36.5 + pos: 44.5,-27.5 parent: 2 - - uid: 4941 + - uid: 4629 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,36.5 + pos: 50.5,-40.5 parent: 2 - - uid: 4943 + - uid: 4662 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,36.5 + pos: -4.5,23.5 parent: 2 - - uid: 4944 + - uid: 4667 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,36.5 + rot: 3.141592653589793 rad + pos: -20.5,34.5 parent: 2 - - uid: 4953 + - uid: 4678 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,27.5 + pos: -8.5,24.5 parent: 2 - - uid: 4955 + - uid: 4681 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,27.5 + pos: 1.5,26.5 parent: 2 - - uid: 4968 + - uid: 4685 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,29.5 + pos: -12.5,24.5 parent: 2 - - uid: 4974 + - uid: 4688 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,32.5 + pos: -3.5,31.5 parent: 2 - - uid: 4975 + - uid: 4689 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,32.5 + pos: -16.5,26.5 parent: 2 - - uid: 4976 + - uid: 4693 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,34.5 + pos: -16.5,23.5 parent: 2 - - uid: 5002 + - uid: 4705 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,37.5 + pos: -3.5,34.5 parent: 2 - - uid: 5004 + - uid: 4716 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,37.5 + rot: -1.5707963267948966 rad + pos: 2.5,36.5 parent: 2 - - uid: 5005 + - uid: 4721 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,40.5 + pos: 6.5,28.5 parent: 2 - - uid: 5008 + - uid: 4723 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,39.5 + pos: 6.5,26.5 parent: 2 - - uid: 5011 + - uid: 4725 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,39.5 + pos: 6.5,23.5 parent: 2 - - uid: 5012 + - uid: 4726 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,39.5 + pos: 6.5,25.5 parent: 2 - - uid: 5113 + - uid: 4727 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,44.5 + pos: 8.5,32.5 parent: 2 - - uid: 5125 + - uid: 4728 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,43.5 + rot: -1.5707963267948966 rad + pos: 0.5,33.5 parent: 2 - - uid: 5126 + - uid: 4730 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,42.5 + pos: 8.5,33.5 parent: 2 - - uid: 5136 + - uid: 4738 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,43.5 + rot: 3.141592653589793 rad + pos: 47.5,2.5 parent: 2 - - uid: 5137 + - uid: 4739 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,44.5 + pos: 8.5,29.5 parent: 2 - - uid: 5140 + - uid: 4742 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,46.5 + rot: -1.5707963267948966 rad + pos: 7.5,27.5 parent: 2 - - uid: 5142 + - uid: 4747 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,48.5 + pos: 0.5,29.5 parent: 2 - - uid: 5143 + - uid: 4768 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,45.5 + pos: -4.5,35.5 parent: 2 - - uid: 5145 + - uid: 4770 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,47.5 + pos: 46.5,6.5 parent: 2 - - uid: 5176 + - uid: 4772 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,49.5 + rot: 3.141592653589793 rad + pos: 47.5,1.5 parent: 2 - - uid: 5177 + - uid: 4776 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,49.5 + pos: -13.5,30.5 parent: 2 - - uid: 5178 + - uid: 4779 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,49.5 + pos: -10.5,30.5 parent: 2 - - uid: 5184 + - uid: 4782 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,50.5 + pos: -4.5,30.5 parent: 2 - - uid: 5186 + - uid: 4785 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,52.5 + pos: -16.5,30.5 parent: 2 - - uid: 5187 + - uid: 4788 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,53.5 + pos: -16.5,27.5 parent: 2 - - uid: 5188 + - uid: 4802 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,54.5 + pos: -10.5,33.5 parent: 2 - - uid: 5191 + - uid: 4812 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,53.5 + pos: -28.5,24.5 parent: 2 - - uid: 5192 + - uid: 4813 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,53.5 + pos: -27.5,24.5 parent: 2 - - uid: 5194 + - uid: 4819 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,50.5 + pos: -21.5,24.5 parent: 2 - - uid: 5195 + - uid: 4820 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,49.5 + pos: -20.5,24.5 parent: 2 - - uid: 5282 + - uid: 4824 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,39.5 + pos: -17.5,30.5 parent: 2 - - uid: 5284 + - uid: 4825 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,39.5 + pos: -19.5,30.5 parent: 2 - - uid: 5295 + - uid: 4828 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,6.5 + pos: -21.5,29.5 parent: 2 - - uid: 5378 + - uid: 4829 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,33.5 + pos: -21.5,28.5 parent: 2 - - uid: 5423 + - uid: 4833 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,16.5 + pos: -17.5,24.5 parent: 2 - - uid: 5433 + - uid: 4838 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,35.5 + pos: -23.5,30.5 parent: 2 - - uid: 5451 + - uid: 4841 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,9.5 + pos: -7.5,35.5 parent: 2 - - uid: 5455 + - uid: 4843 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-37.5 + pos: -9.5,35.5 parent: 2 - - uid: 5470 + - uid: 4845 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,16.5 + pos: -11.5,35.5 parent: 2 - - uid: 5477 + - uid: 4848 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,23.5 + pos: -15.5,31.5 parent: 2 - - uid: 5485 + - uid: 4851 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,16.5 + pos: -14.5,35.5 parent: 2 - - uid: 5490 + - uid: 4853 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,7.5 + pos: -15.5,35.5 parent: 2 - - uid: 5494 + - uid: 4855 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,11.5 + pos: -9.5,30.5 parent: 2 - - uid: 5496 + - uid: 4862 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,11.5 + pos: -18.5,33.5 parent: 2 - - uid: 5497 + - uid: 4865 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,12.5 + pos: -16.5,34.5 parent: 2 - - uid: 5498 + - uid: 4877 components: - type: Transform rot: 1.5707963267948966 rad - pos: 36.5,16.5 + pos: -15.5,25.5 parent: 2 - - uid: 5504 + - uid: 4884 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,21.5 + rot: 3.141592653589793 rad + pos: -20.5,36.5 parent: 2 - - uid: 5506 + - uid: 4887 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,23.5 + pos: -63.5,-20.5 parent: 2 - - uid: 5508 + - uid: 4894 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,24.5 + pos: 1.5,33.5 parent: 2 - - uid: 5513 + - uid: 4906 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,-51.5 + rot: -1.5707963267948966 rad + pos: 4.5,34.5 parent: 2 - - uid: 5617 + - uid: 4907 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,27.5 + rot: -1.5707963267948966 rad + pos: 2.5,34.5 parent: 2 - - uid: 5630 + - uid: 4918 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,14.5 + rot: -1.5707963267948966 rad + pos: 11.5,38.5 parent: 2 - - uid: 5631 + - uid: 4928 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,13.5 + pos: -29.5,33.5 parent: 2 - - uid: 5633 + - uid: 4929 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,11.5 + pos: -25.5,24.5 parent: 2 - - uid: 5635 + - uid: 4934 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,11.5 + pos: -0.5,35.5 parent: 2 - - uid: 5664 + - uid: 4935 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,19.5 + pos: -2.5,35.5 parent: 2 - - uid: 5665 + - uid: 4940 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,16.5 + rot: -1.5707963267948966 rad + pos: 4.5,36.5 parent: 2 - - uid: 5666 + - uid: 4942 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,16.5 + rot: -1.5707963267948966 rad + pos: 6.5,36.5 parent: 2 - - uid: 5667 + - uid: 4945 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,17.5 + rot: -1.5707963267948966 rad + pos: 8.5,36.5 parent: 2 - - uid: 5742 + - uid: 4954 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,19.5 + rot: -1.5707963267948966 rad + pos: 9.5,27.5 parent: 2 - - uid: 5789 + - uid: 4969 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,41.5 + rot: -1.5707963267948966 rad + pos: 5.5,29.5 parent: 2 - - uid: 5795 + - uid: 4970 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-46.5 + pos: 3.5,29.5 parent: 2 - - uid: 5803 + - uid: 4977 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-42.5 + rot: -1.5707963267948966 rad + pos: 0.5,35.5 parent: 2 - - uid: 5804 + - uid: 4985 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-42.5 + pos: 1.5,39.5 parent: 2 - - uid: 5811 + - uid: 4986 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-42.5 + pos: 3.5,39.5 parent: 2 - - uid: 5812 + - uid: 5001 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-36.5 + pos: -10.5,37.5 parent: 2 - - uid: 5813 + - uid: 5003 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-35.5 + pos: -8.5,37.5 parent: 2 - - uid: 5815 + - uid: 5009 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-27.5 + pos: -0.5,39.5 parent: 2 - - uid: 5816 + - uid: 5013 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-32.5 + pos: -7.5,38.5 parent: 2 - - uid: 5818 + - uid: 5014 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-30.5 + pos: 4.5,39.5 parent: 2 - - uid: 5819 + - uid: 5098 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,-44.5 + rot: 3.141592653589793 rad + pos: 47.5,0.5 parent: 2 - - uid: 5822 + - uid: 5114 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-36.5 + pos: -3.5,44.5 parent: 2 - - uid: 5825 + - uid: 5124 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-36.5 + pos: 4.5,44.5 parent: 2 - - uid: 5828 + - uid: 5127 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-33.5 + pos: 4.5,41.5 parent: 2 - - uid: 5830 + - uid: 5134 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-31.5 + pos: -7.5,41.5 parent: 2 - - uid: 5831 + - uid: 5135 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-30.5 + pos: -7.5,42.5 parent: 2 - - uid: 5833 + - uid: 5139 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-30.5 + pos: -7.5,45.5 parent: 2 - - uid: 5835 + - uid: 5141 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-30.5 + pos: -7.5,47.5 parent: 2 - - uid: 5836 + - uid: 5144 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-30.5 + pos: 4.5,46.5 parent: 2 - - uid: 5838 + - uid: 5146 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-31.5 + rot: -1.5707963267948966 rad + pos: 4.5,52.5 parent: 2 - - uid: 5843 + - uid: 5153 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-31.5 + rot: 3.141592653589793 rad + pos: 46.5,0.5 parent: 2 - - uid: 5845 + - uid: 5179 components: - type: Transform rot: 1.5707963267948966 rad - pos: 60.5,-33.5 + pos: -4.5,49.5 parent: 2 - - uid: 5846 + - uid: 5185 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-34.5 + rot: -1.5707963267948966 rad + pos: -4.5,51.5 parent: 2 - - uid: 5847 + - uid: 5189 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-35.5 + rot: -1.5707963267948966 rad + pos: -3.5,53.5 parent: 2 - - uid: 5850 + - uid: 5190 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-37.5 + rot: -1.5707963267948966 rad + pos: 3.5,54.5 parent: 2 - - uid: 5852 + - uid: 5193 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-37.5 + rot: -1.5707963267948966 rad + pos: 4.5,51.5 parent: 2 - - uid: 5854 + - uid: 5196 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-37.5 + rot: -1.5707963267948966 rad + pos: 4.5,48.5 parent: 2 - - uid: 5855 + - uid: 5279 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-37.5 + pos: -7.5,40.5 parent: 2 - - uid: 5860 + - uid: 5283 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-25.5 + pos: -6.5,39.5 parent: 2 - - uid: 5867 + - uid: 5285 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-24.5 + pos: -4.5,39.5 parent: 2 - - uid: 5868 + - uid: 5296 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-24.5 + pos: 10.5,29.5 parent: 2 - - uid: 5870 + - uid: 5298 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-26.5 + pos: 10.5,31.5 parent: 2 - - uid: 5871 + - uid: 5326 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-27.5 + pos: 10.5,32.5 parent: 2 - - uid: 5873 + - uid: 5424 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-39.5 + pos: 24.5,16.5 parent: 2 - - uid: 5876 + - uid: 5427 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-41.5 + rot: -1.5707963267948966 rad + pos: 24.5,11.5 parent: 2 - - uid: 5882 + - uid: 5431 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-25.5 + rot: -1.5707963267948966 rad + pos: 23.5,9.5 parent: 2 - - uid: 5887 + - uid: 5432 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,-53.5 + pos: 10.5,34.5 parent: 2 - - uid: 5888 + - uid: 5434 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-50.5 + pos: 10.5,36.5 parent: 2 - - uid: 5892 + - uid: 5479 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-43.5 + pos: 35.5,11.5 parent: 2 - - uid: 5918 + - uid: 5483 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,8.5 + pos: 33.5,16.5 parent: 2 - - uid: 5951 + - uid: 5484 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,10.5 + pos: 35.5,16.5 parent: 2 - - uid: 5956 + - uid: 5486 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,11.5 + pos: 35.5,10.5 parent: 2 - - uid: 5957 + - uid: 5488 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,12.5 + pos: 35.5,8.5 parent: 2 - - uid: 5958 + - uid: 5489 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,-20.5 + pos: 35.5,6.5 parent: 2 - - uid: 5961 + - uid: 5495 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,14.5 + pos: 33.5,11.5 parent: 2 - - uid: 5962 + - uid: 5499 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,38.5 + pos: 37.5,16.5 parent: 2 - - uid: 5972 + - uid: 5500 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,10.5 + pos: 37.5,17.5 parent: 2 - - uid: 5989 + - uid: 5502 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,10.5 + pos: 37.5,19.5 parent: 2 - - uid: 5995 + - uid: 5503 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,10.5 + pos: 37.5,20.5 parent: 2 - - uid: 5999 + - uid: 5505 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,17.5 + pos: 37.5,22.5 parent: 2 - - uid: 6001 + - uid: 5507 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,17.5 + pos: 22.5,23.5 parent: 2 - - uid: 6002 + - uid: 5509 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,17.5 + pos: 23.5,24.5 parent: 2 - - uid: 6004 + - uid: 5511 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,16.5 + pos: 32.5,24.5 parent: 2 - - uid: 6005 + - uid: 5512 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,14.5 + pos: 31.5,24.5 parent: 2 - - uid: 6007 + - uid: 5532 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,12.5 + rot: 3.141592653589793 rad + pos: 27.5,9.5 parent: 2 - - uid: 6009 + - uid: 5559 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,16.5 + rot: 3.141592653589793 rad + pos: 25.5,9.5 parent: 2 - - uid: 6044 + - uid: 5569 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,16.5 + pos: 29.5,6.5 parent: 2 - - uid: 6051 + - uid: 5570 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,15.5 + pos: 29.5,8.5 parent: 2 - - uid: 6052 + - uid: 5616 components: - type: Transform rot: 1.5707963267948966 rad - pos: 45.5,19.5 + pos: 30.5,27.5 parent: 2 - - uid: 6053 + - uid: 5628 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-38.5 + pos: 38.5,16.5 parent: 2 - - uid: 6076 + - uid: 5629 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,5.5 + pos: 38.5,15.5 parent: 2 - - uid: 6078 + - uid: 5632 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,-37.5 + pos: 38.5,12.5 parent: 2 - - uid: 6079 + - uid: 5634 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,-37.5 + pos: 37.5,11.5 parent: 2 - - uid: 6081 + - uid: 5659 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-41.5 + rot: 3.141592653589793 rad + pos: 45.5,0.5 parent: 2 - - uid: 6097 + - uid: 5723 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-43.5 + pos: 40.5,18.5 parent: 2 - - uid: 6108 + - uid: 5743 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,-43.5 + pos: 44.5,19.5 parent: 2 - - uid: 6110 + - uid: 5762 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,-42.5 + pos: -27.5,-45.5 parent: 2 - - uid: 6111 + - uid: 5774 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,-43.5 + pos: 45.5,6.5 parent: 2 - - uid: 6144 + - uid: 5775 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-53.5 + pos: 47.5,4.5 parent: 2 - - uid: 6146 + - uid: 5778 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-44.5 + pos: 40.5,6.5 parent: 2 - - uid: 6147 + - uid: 5779 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-43.5 + pos: 27.5,-57.5 parent: 2 - - uid: 6149 + - uid: 5780 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-37.5 + pos: -34.5,-46.5 parent: 2 - - uid: 6153 + - uid: 5787 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,37.5 + rot: 3.141592653589793 rad + pos: -17.5,-42.5 parent: 2 - - uid: 6154 + - uid: 5788 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,37.5 + pos: 0.5,40.5 parent: 2 - - uid: 6155 + - uid: 5802 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-41.5 + pos: -3.5,40.5 parent: 2 - - uid: 6156 + - uid: 5810 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-36.5 + pos: 55.5,-39.5 parent: 2 - - uid: 6157 + - uid: 5814 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-36.5 + rot: 3.141592653589793 rad + pos: 53.5,-34.5 parent: 2 - - uid: 6159 + - uid: 5817 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-47.5 + rot: 3.141592653589793 rad + pos: 53.5,-31.5 parent: 2 - - uid: 6162 + - uid: 5820 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-48.5 + rot: 3.141592653589793 rad + pos: 54.5,-36.5 parent: 2 - - uid: 6163 + - uid: 5821 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,-48.5 + rot: 3.141592653589793 rad + pos: 55.5,-36.5 parent: 2 - - uid: 6164 + - uid: 5823 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-55.5 + rot: 3.141592653589793 rad + pos: 57.5,-36.5 parent: 2 - - uid: 6168 + - uid: 5824 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-57.5 + rot: 3.141592653589793 rad + pos: 58.5,-36.5 parent: 2 - - uid: 6169 + - uid: 5826 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-54.5 + rot: 3.141592653589793 rad + pos: 59.5,-35.5 parent: 2 - - uid: 6171 + - uid: 5827 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-48.5 + rot: 3.141592653589793 rad + pos: 59.5,-34.5 parent: 2 - - uid: 6172 + - uid: 5829 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-49.5 + rot: 3.141592653589793 rad + pos: 59.5,-32.5 parent: 2 - - uid: 6175 + - uid: 5832 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-49.5 + rot: 3.141592653589793 rad + pos: 58.5,-30.5 parent: 2 - - uid: 6176 + - uid: 5834 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,-49.5 + rot: 3.141592653589793 rad + pos: 56.5,-30.5 parent: 2 - - uid: 6177 + - uid: 5837 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-50.5 + rot: 3.141592653589793 rad + pos: 58.5,-31.5 parent: 2 - - uid: 6202 + - uid: 5839 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,-55.5 + rot: 3.141592653589793 rad + pos: 56.5,-31.5 parent: 2 - - uid: 6210 + - uid: 5840 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,-54.5 + rot: 3.141592653589793 rad + pos: 55.5,-31.5 parent: 2 - - uid: 6211 + - uid: 5841 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-54.5 + rot: 3.141592653589793 rad + pos: 54.5,-31.5 parent: 2 - - uid: 6213 + - uid: 5842 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-52.5 + rot: 3.141592653589793 rad + pos: 60.5,-30.5 parent: 2 - - uid: 6216 + - uid: 5844 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-53.5 + rot: 3.141592653589793 rad + pos: 60.5,-32.5 parent: 2 - - uid: 6217 + - uid: 5848 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-53.5 + rot: 3.141592653589793 rad + pos: 60.5,-36.5 parent: 2 - - uid: 6220 + - uid: 5849 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-44.5 + rot: 3.141592653589793 rad + pos: 60.5,-37.5 parent: 2 - - uid: 6226 + - uid: 5851 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,-44.5 + rot: 3.141592653589793 rad + pos: 58.5,-37.5 parent: 2 - - uid: 6229 + - uid: 5853 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-51.5 + rot: 3.141592653589793 rad + pos: 56.5,-37.5 parent: 2 - - uid: 6239 + - uid: 5856 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,-54.5 + rot: 3.141592653589793 rad + pos: 53.5,-37.5 parent: 2 - - uid: 6240 + - uid: 5858 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,-57.5 + rot: 3.141592653589793 rad + pos: 51.5,-37.5 parent: 2 - - uid: 6242 + - uid: 5859 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-54.5 + rot: 3.141592653589793 rad + pos: 53.5,-26.5 parent: 2 - - uid: 6243 + - uid: 5861 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-54.5 + rot: 3.141592653589793 rad + pos: 53.5,-24.5 parent: 2 - - uid: 6244 + - uid: 5863 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-54.5 + rot: 3.141592653589793 rad + pos: 55.5,-24.5 parent: 2 - - uid: 6245 + - uid: 5865 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-55.5 + pos: 56.5,-24.5 parent: 2 - - uid: 6248 + - uid: 5866 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-54.5 + rot: -1.5707963267948966 rad + pos: 56.5,-40.5 parent: 2 - - uid: 6249 + - uid: 5869 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-56.5 + pos: 59.5,-25.5 parent: 2 - - uid: 6250 + - uid: 5874 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-57.5 + pos: 53.5,-42.5 parent: 2 - - uid: 6252 + - uid: 5877 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-59.5 + pos: 52.5,-42.5 parent: 2 - - uid: 6253 + - uid: 5880 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-56.5 + rot: -1.5707963267948966 rad + pos: 49.5,-41.5 parent: 2 - - uid: 6256 + - uid: 5884 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-57.5 + rot: -1.5707963267948966 rad + pos: -56.5,-52.5 parent: 2 - - uid: 6257 + - uid: 5891 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-59.5 + rot: -1.5707963267948966 rad + pos: 51.5,-43.5 parent: 2 - - uid: 6260 + - uid: 5902 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,-59.5 + rot: -1.5707963267948966 rad + pos: 49.5,-42.5 parent: 2 - - uid: 6262 + - uid: 5952 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-64.5 + pos: 39.5,7.5 parent: 2 - - uid: 6263 + - uid: 5954 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-64.5 + pos: 39.5,9.5 parent: 2 - - uid: 6264 + - uid: 5955 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-64.5 + pos: 40.5,9.5 parent: 2 - - uid: 6266 + - uid: 5959 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-66.5 + pos: 40.5,13.5 parent: 2 - - uid: 6285 + - uid: 5963 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,-66.5 + pos: 41.5,14.5 parent: 2 - - uid: 6286 + - uid: 6000 components: - type: Transform rot: 1.5707963267948966 rad - pos: -42.5,-66.5 + pos: 44.5,17.5 parent: 2 - - uid: 6288 + - uid: 6003 components: - type: Transform rot: 1.5707963267948966 rad - pos: -40.5,-66.5 + pos: 47.5,17.5 parent: 2 - - uid: 6290 + - uid: 6006 components: - type: Transform rot: 1.5707963267948966 rad - pos: -55.5,-66.5 + pos: 48.5,15.5 parent: 2 - - uid: 6296 + - uid: 6010 components: - type: Transform rot: 1.5707963267948966 rad - pos: -56.5,-66.5 + pos: 48.5,11.5 parent: 2 - - uid: 6297 + - uid: 6043 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,-66.5 + pos: 50.5,16.5 parent: 2 - - uid: 6299 + - uid: 6046 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-66.5 + pos: 49.5,16.5 parent: 2 - - uid: 6301 + - uid: 6060 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-65.5 + pos: -57.5,-19.5 parent: 2 - - uid: 6302 + - uid: 6063 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-63.5 + pos: -18.5,37.5 parent: 2 - - uid: 6304 + - uid: 6075 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-61.5 + pos: -45.5,-37.5 parent: 2 - - uid: 6306 + - uid: 6077 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-58.5 + pos: 37.5,6.5 parent: 2 - - uid: 6308 + - uid: 6086 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-62.5 + pos: -51.5,-37.5 parent: 2 - - uid: 6313 + - uid: 6087 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-59.5 + pos: 79.5,-36.5 parent: 2 - - uid: 6314 + - uid: 6096 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-65.5 + rot: -1.5707963267948966 rad + pos: -38.5,-54.5 parent: 2 - - uid: 6317 + - uid: 6100 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-66.5 + rot: -1.5707963267948966 rad + pos: -56.5,-49.5 parent: 2 - - uid: 6318 + - uid: 6107 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-66.5 + rot: -1.5707963267948966 rad + pos: -45.5,-42.5 parent: 2 - - uid: 6320 + - uid: 6145 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-66.5 + rot: -1.5707963267948966 rad + pos: -55.5,-42.5 parent: 2 - - uid: 6321 + - uid: 6150 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-8.5 + rot: -1.5707963267948966 rad + pos: -39.5,-42.5 parent: 2 - - uid: 6324 + - uid: 6152 components: - type: Transform - pos: 21.5,-51.5 + rot: -1.5707963267948966 rad + pos: -43.5,-37.5 parent: 2 - - uid: 6371 + - uid: 6160 components: - type: Transform - pos: 23.5,-72.5 + rot: -1.5707963267948966 rad + pos: -38.5,-45.5 parent: 2 - - uid: 6487 + - uid: 6161 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-8.5 + rot: -1.5707963267948966 rad + pos: -38.5,-46.5 parent: 2 - - uid: 6488 + - uid: 6165 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-8.5 + rot: -1.5707963267948966 rad + pos: -56.5,-47.5 parent: 2 - - uid: 6495 + - uid: 6166 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-8.5 + rot: -1.5707963267948966 rad + pos: -56.5,-46.5 parent: 2 - - uid: 6502 + - uid: 6167 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-8.5 + rot: -1.5707963267948966 rad + pos: -56.5,-45.5 parent: 2 - - uid: 6510 + - uid: 6170 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,0.5 + rot: -1.5707963267948966 rad + pos: -42.5,-55.5 parent: 2 - - uid: 6524 + - uid: 6173 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,12.5 + rot: -1.5707963267948966 rad + pos: -52.5,-48.5 parent: 2 - - uid: 6527 + - uid: 6174 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,10.5 + rot: -1.5707963267948966 rad + pos: -42.5,-49.5 parent: 2 - - uid: 6528 + - uid: 6212 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-15.5 + rot: -1.5707963267948966 rad + pos: -52.5,-55.5 parent: 2 - - uid: 6529 + - uid: 6214 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-0.5 + rot: 3.141592653589793 rad + pos: -52.5,-50.5 parent: 2 - - uid: 6542 + - uid: 6215 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,13.5 + rot: 3.141592653589793 rad + pos: -52.5,-51.5 parent: 2 - - uid: 6563 + - uid: 6218 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,5.5 + rot: 3.141592653589793 rad + pos: -42.5,-51.5 parent: 2 - - uid: 6623 + - uid: 6219 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,0.5 + rot: 3.141592653589793 rad + pos: -42.5,-52.5 parent: 2 - - uid: 6628 + - uid: 6221 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,7.5 + rot: -1.5707963267948966 rad + pos: -57.5,-54.5 parent: 2 - - uid: 6631 + - uid: 6222 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,9.5 + rot: -1.5707963267948966 rad + pos: -59.5,-54.5 parent: 2 - - uid: 6633 + - uid: 6223 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,11.5 + rot: -1.5707963267948966 rad + pos: -60.5,-57.5 parent: 2 - - uid: 6639 + - uid: 6224 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,13.5 + rot: -1.5707963267948966 rad + pos: -60.5,-55.5 parent: 2 - - uid: 6641 + - uid: 6225 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,13.5 + rot: -1.5707963267948966 rad + pos: -38.5,-49.5 parent: 2 - - uid: 6643 + - uid: 6227 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,9.5 + rot: 3.141592653589793 rad + pos: -39.5,-44.5 parent: 2 - - uid: 6647 + - uid: 6228 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,9.5 + rot: 3.141592653589793 rad + pos: -49.5,-44.5 parent: 2 - - uid: 6648 + - uid: 6241 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,11.5 + rot: -1.5707963267948966 rad + pos: -52.5,-56.5 parent: 2 - - uid: 6650 + - uid: 6246 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,13.5 + rot: -1.5707963267948966 rad + pos: -35.5,-54.5 parent: 2 - - uid: 6652 + - uid: 6247 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,13.5 + rot: -1.5707963267948966 rad + pos: -34.5,-56.5 parent: 2 - - uid: 6653 + - uid: 6251 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,16.5 + rot: -1.5707963267948966 rad + pos: -42.5,-57.5 parent: 2 - - uid: 6655 + - uid: 6254 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,16.5 + rot: -1.5707963267948966 rad + pos: -40.5,-57.5 parent: 2 - - uid: 6657 + - uid: 6255 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-11.5 + rot: -1.5707963267948966 rad + pos: -54.5,-57.5 parent: 2 - - uid: 6667 + - uid: 6258 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-13.5 + rot: -1.5707963267948966 rad + pos: -40.5,-59.5 parent: 2 - - uid: 6669 + - uid: 6259 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-14.5 + rot: -1.5707963267948966 rad + pos: -41.5,-59.5 parent: 2 - - uid: 6671 + - uid: 6261 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-15.5 + rot: -1.5707963267948966 rad + pos: -53.5,-59.5 parent: 2 - - uid: 6672 + - uid: 6265 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-15.5 + rot: -1.5707963267948966 rad + pos: -40.5,-64.5 parent: 2 - - uid: 6673 + - uid: 6267 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-15.5 + rot: -1.5707963267948966 rad + pos: -53.5,-64.5 parent: 2 - - uid: 6675 + - uid: 6268 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-40.5 + rot: -1.5707963267948966 rad + pos: -54.5,-64.5 parent: 2 - - uid: 6677 + - uid: 6287 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-24.5 + rot: -1.5707963267948966 rad + pos: -54.5,-66.5 parent: 2 - - uid: 6728 + - uid: 6289 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-22.5 + rot: -1.5707963267948966 rad + pos: -41.5,-66.5 parent: 2 - - uid: 6759 + - uid: 6295 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-24.5 + rot: -1.5707963267948966 rad + pos: 16.5,-54.5 parent: 2 - - uid: 6776 + - uid: 6298 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-13.5 + rot: -1.5707963267948966 rad + pos: -57.5,-66.5 parent: 2 - - uid: 6778 + - uid: 6300 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-11.5 + rot: -1.5707963267948966 rad + pos: -59.5,-66.5 parent: 2 - - uid: 6786 + - uid: 6303 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,17.5 + rot: -1.5707963267948966 rad + pos: -60.5,-64.5 parent: 2 - - uid: 6788 + - uid: 6305 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,19.5 + rot: -1.5707963267948966 rad + pos: -60.5,-62.5 parent: 2 - - uid: 6830 + - uid: 6307 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,20.5 + rot: -1.5707963267948966 rad + pos: -60.5,-59.5 parent: 2 - - uid: 6838 + - uid: 6309 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,20.5 + rot: -1.5707963267948966 rad + pos: -60.5,-60.5 parent: 2 - - uid: 6840 + - uid: 6310 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,19.5 + rot: -1.5707963267948966 rad + pos: -34.5,-58.5 + parent: 2 + - uid: 6311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-60.5 parent: 2 - - uid: 6842 + - uid: 6312 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,17.5 + rot: -1.5707963267948966 rad + pos: -34.5,-61.5 parent: 2 - - uid: 6844 + - uid: 6315 components: - type: Transform - pos: 9.5,-45.5 + rot: -1.5707963267948966 rad + pos: -34.5,-63.5 parent: 2 - - uid: 6846 + - uid: 6316 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,15.5 + rot: -1.5707963267948966 rad + pos: -34.5,-64.5 parent: 2 - - uid: 6847 + - uid: 6319 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,13.5 + rot: -1.5707963267948966 rad + pos: -35.5,-66.5 parent: 2 - - uid: 6850 + - uid: 6322 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-0.5 + rot: -1.5707963267948966 rad + pos: -38.5,-66.5 parent: 2 - - uid: 6852 + - uid: 6323 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,5.5 + rot: -1.5707963267948966 rad + pos: -39.5,-66.5 parent: 2 - - uid: 6854 + - uid: 6325 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,5.5 + rot: -1.5707963267948966 rad + pos: 16.5,-51.5 parent: 2 - - uid: 6858 + - uid: 6486 components: - type: Transform rot: 1.5707963267948966 rad - pos: 62.5,2.5 + pos: 45.5,-8.5 parent: 2 - - uid: 6860 + - uid: 6490 components: - type: Transform rot: 1.5707963267948966 rad - pos: 62.5,-0.5 + pos: 52.5,-8.5 parent: 2 - - uid: 6862 + - uid: 6494 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-0.5 + rot: -1.5707963267948966 rad + pos: 55.5,-8.5 parent: 2 - - uid: 6864 + - uid: 6503 components: - type: Transform rot: 1.5707963267948966 rad - pos: 64.5,-0.5 + pos: 53.5,-8.5 parent: 2 - - uid: 6868 + - uid: 6507 components: - type: Transform rot: 1.5707963267948966 rad - pos: 64.5,4.5 + pos: 48.5,0.5 parent: 2 - - uid: 6871 + - uid: 6511 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-2.5 + rot: -1.5707963267948966 rad + pos: 57.5,-8.5 parent: 2 - - uid: 6872 + - uid: 6512 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,21.5 + rot: 3.141592653589793 rad + pos: 48.5,-8.5 parent: 2 - - uid: 6877 + - uid: 6513 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,21.5 + rot: 3.141592653589793 rad + pos: 47.5,-8.5 parent: 2 - - uid: 6902 + - uid: 6518 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-37.5 + pos: 38.5,5.5 parent: 2 - - uid: 6934 + - uid: 6531 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,41.5 + rot: -1.5707963267948966 rad + pos: 56.5,-1.5 parent: 2 - - uid: 6935 + - uid: 6532 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,43.5 + rot: -1.5707963267948966 rad + pos: 56.5,-2.5 parent: 2 - - uid: 6941 + - uid: 6564 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,43.5 + rot: -1.5707963267948966 rad + pos: 60.5,-2.5 parent: 2 - - uid: 6950 + - uid: 6622 components: - type: Transform rot: 1.5707963267948966 rad - pos: 37.5,7.5 + pos: 57.5,5.5 parent: 2 - - uid: 6954 + - uid: 6629 components: - type: Transform rot: 1.5707963267948966 rad - pos: 37.5,8.5 + pos: 57.5,0.5 parent: 2 - - uid: 6956 + - uid: 6630 components: - type: Transform rot: 1.5707963267948966 rad - pos: 56.5,-10.5 + pos: 57.5,6.5 parent: 2 - - uid: 6963 + - uid: 6632 components: - type: Transform rot: 1.5707963267948966 rad - pos: 56.5,-12.5 + pos: 57.5,8.5 parent: 2 - - uid: 6964 + - uid: 6634 components: - type: Transform rot: 1.5707963267948966 rad - pos: 56.5,-14.5 + pos: 56.5,9.5 parent: 2 - - uid: 6979 + - uid: 6637 components: - type: Transform rot: 1.5707963267948966 rad - pos: 64.5,7.5 + pos: 55.5,9.5 parent: 2 - - uid: 6981 + - uid: 6640 components: - type: Transform rot: 1.5707963267948966 rad - pos: 63.5,7.5 + pos: 57.5,12.5 parent: 2 - - uid: 6984 + - uid: 6642 components: - type: Transform rot: 1.5707963267948966 rad - pos: 62.5,7.5 + pos: 55.5,13.5 parent: 2 - - uid: 6999 + - uid: 6644 components: - type: Transform rot: 1.5707963267948966 rad - pos: 62.5,8.5 + pos: 53.5,13.5 parent: 2 - - uid: 7000 + - uid: 6645 components: - type: Transform rot: 1.5707963267948966 rad - pos: 62.5,11.5 + pos: 56.5,13.5 parent: 2 - - uid: 7001 + - uid: 6646 components: - type: Transform rot: 1.5707963267948966 rad - pos: 64.5,11.5 + pos: 58.5,9.5 parent: 2 - - uid: 7006 + - uid: 6649 components: - type: Transform rot: 1.5707963267948966 rad - pos: 64.5,12.5 + pos: 60.5,10.5 parent: 2 - - uid: 7010 + - uid: 6651 components: - type: Transform rot: 1.5707963267948966 rad - pos: 64.5,18.5 + pos: 60.5,12.5 parent: 2 - - uid: 7012 + - uid: 6654 components: - type: Transform rot: 1.5707963267948966 rad - pos: 64.5,22.5 + pos: 58.5,13.5 parent: 2 - - uid: 7016 + - uid: 6656 components: - type: Transform rot: 1.5707963267948966 rad - pos: 62.5,-8.5 + pos: 54.5,16.5 parent: 2 - - uid: 7030 + - uid: 6658 components: - type: Transform rot: 1.5707963267948966 rad - pos: 60.5,-10.5 + pos: 56.5,16.5 parent: 2 - - uid: 7031 + - uid: 6659 components: - type: Transform rot: 1.5707963267948966 rad - pos: 59.5,-10.5 + pos: 56.5,15.5 parent: 2 - - uid: 7034 + - uid: 6670 components: - type: Transform rot: 1.5707963267948966 rad - pos: 62.5,-10.5 + pos: 47.5,-12.5 parent: 2 - - uid: 7068 + - uid: 6674 components: - type: Transform rot: 1.5707963267948966 rad - pos: 64.5,-10.5 + pos: 48.5,-15.5 parent: 2 - - uid: 7069 + - uid: 6676 components: - type: Transform rot: 1.5707963267948966 rad - pos: 65.5,-10.5 + pos: 50.5,-15.5 parent: 2 - - uid: 7070 + - uid: 6678 components: - type: Transform rot: 1.5707963267948966 rad - pos: 65.5,-7.5 + pos: 52.5,-15.5 parent: 2 - - uid: 7071 + - uid: 6679 components: - type: Transform rot: 1.5707963267948966 rad - pos: 65.5,-6.5 + pos: 53.5,-15.5 parent: 2 - - uid: 7072 + - uid: 6681 components: - type: Transform rot: 1.5707963267948966 rad - pos: -53.5,-37.5 + pos: 47.5,-9.5 parent: 2 - - uid: 7075 + - uid: 6748 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,-20.5 + rot: -1.5707963267948966 rad + pos: 62.5,-2.5 parent: 2 - - uid: 7076 + - uid: 6774 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,-21.5 + rot: 3.141592653589793 rad + pos: 51.5,-27.5 parent: 2 - - uid: 7078 + - uid: 6777 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-21.5 + pos: 51.5,-23.5 parent: 2 - - uid: 7083 + - uid: 6779 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-14.5 + pos: 52.5,-30.5 parent: 2 - - uid: 7085 + - uid: 6785 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,-14.5 + pos: 54.5,-14.5 parent: 2 - - uid: 7087 + - uid: 6787 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,-16.5 + pos: 54.5,-12.5 parent: 2 - - uid: 7088 + - uid: 6789 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-21.5 + pos: 54.5,-10.5 parent: 2 - - uid: 7090 + - uid: 6790 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-21.5 + pos: 54.5,-9.5 parent: 2 - - uid: 7093 + - uid: 6805 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-22.5 + rot: -1.5707963267948966 rad + pos: 58.5,-2.5 parent: 2 - - uid: 7107 + - uid: 6839 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-24.5 + pos: 56.5,18.5 parent: 2 - - uid: 7108 + - uid: 6841 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-25.5 + pos: 56.5,20.5 parent: 2 - - uid: 7112 + - uid: 6843 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-15.5 + pos: -15.5,-39.5 parent: 2 - - uid: 7114 + - uid: 6845 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-27.5 + pos: 63.5,-10.5 parent: 2 - - uid: 7115 + - uid: 6848 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-27.5 + pos: 62.5,18.5 parent: 2 - - uid: 7127 + - uid: 6849 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-29.5 + pos: 61.5,20.5 parent: 2 - - uid: 7132 + - uid: 6851 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-15.5 + pos: 62.5,16.5 parent: 2 - - uid: 7134 + - uid: 6853 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,-15.5 + pos: 62.5,14.5 parent: 2 - - uid: 7181 + - uid: 6855 components: - type: Transform - pos: 2.5,39.5 + pos: 61.5,13.5 parent: 2 - - uid: 7183 + - uid: 6857 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-15.5 + pos: 58.5,-0.5 parent: 2 - - uid: 7186 + - uid: 6859 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,-14.5 + pos: 59.5,5.5 parent: 2 - - uid: 7188 + - uid: 6861 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,-10.5 + pos: 61.5,5.5 parent: 2 - - uid: 7190 + - uid: 6863 components: - type: Transform rot: 1.5707963267948966 rad - pos: 73.5,-10.5 + pos: 63.5,2.5 parent: 2 - - uid: 7192 + - uid: 6869 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,-10.5 + pos: 61.5,-0.5 parent: 2 - - uid: 7196 + - uid: 6873 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,-8.5 + pos: 64.5,0.5 parent: 2 - - uid: 7198 + - uid: 6874 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,-6.5 + pos: 64.5,1.5 parent: 2 - - uid: 7199 + - uid: 6875 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,-6.5 + pos: 64.5,2.5 parent: 2 - - uid: 7201 + - uid: 6876 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-6.5 + pos: 64.5,3.5 parent: 2 - - uid: 7203 + - uid: 6878 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,-6.5 + pos: 64.5,5.5 parent: 2 - - uid: 7205 + - uid: 6879 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-6.5 + pos: 63.5,5.5 parent: 2 - - uid: 7207 + - uid: 6880 components: - type: Transform rot: 1.5707963267948966 rad - pos: 67.5,-19.5 + pos: 61.5,2.5 parent: 2 - - uid: 7208 + - uid: 6932 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-19.5 + pos: 57.5,22.5 parent: 2 - - uid: 7211 + - uid: 6933 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,-19.5 + pos: 61.5,22.5 parent: 2 - - uid: 7270 + - uid: 6942 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,-19.5 + pos: -40.5,-37.5 parent: 2 - - uid: 7278 + - uid: 6952 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,-21.5 + pos: -3.5,42.5 parent: 2 - - uid: 7279 + - uid: 6953 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,-22.5 + pos: 0.5,42.5 parent: 2 - - uid: 7280 + - uid: 6955 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,-24.5 + pos: 0.5,44.5 parent: 2 - - uid: 7282 + - uid: 6962 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,-24.5 + pos: -15.5,-41.5 parent: 2 - - uid: 7283 + - uid: 6970 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,-25.5 + rot: -1.5707963267948966 rad + pos: -49.5,-38.5 parent: 2 - - uid: 7286 + - uid: 6977 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,-26.5 + pos: 58.5,-10.5 parent: 2 - - uid: 7290 + - uid: 6978 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,-29.5 + pos: 57.5,-10.5 parent: 2 - - uid: 7291 + - uid: 6980 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,-30.5 + pos: 56.5,-11.5 parent: 2 - - uid: 7292 + - uid: 6982 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-28.5 + pos: 56.5,-13.5 parent: 2 - - uid: 7295 + - uid: 6996 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-29.5 + rot: -1.5707963267948966 rad + pos: 66.5,7.5 parent: 2 - - uid: 7298 + - uid: 6998 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-30.5 + rot: -1.5707963267948966 rad + pos: 65.5,7.5 parent: 2 - - uid: 7301 + - uid: 7009 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,-19.5 + rot: -1.5707963267948966 rad + pos: 63.5,11.5 parent: 2 - - uid: 7302 + - uid: 7020 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 77.5,-19.5 + rot: -1.5707963267948966 rad + pos: 63.5,22.5 parent: 2 - - uid: 7303 + - uid: 7021 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,-10.5 + rot: -1.5707963267948966 rad + pos: 63.5,23.5 parent: 2 - - uid: 7306 + - uid: 7022 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 76.5,-10.5 + rot: -1.5707963267948966 rad + pos: 63.5,24.5 parent: 2 - - uid: 7308 + - uid: 7028 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 79.5,-11.5 + rot: -1.5707963267948966 rad + pos: 60.5,-8.5 parent: 2 - - uid: 7318 + - uid: 7029 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,-11.5 + rot: -1.5707963267948966 rad + pos: 61.5,-8.5 parent: 2 - - uid: 7320 + - uid: 7066 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 79.5,-19.5 + pos: 61.5,-10.5 parent: 2 - - uid: 7325 + - uid: 7073 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,-19.5 + pos: 65.5,-9.5 parent: 2 - - uid: 7327 + - uid: 7074 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 83.5,-11.5 + pos: 65.5,-8.5 parent: 2 - - uid: 7328 + - uid: 7089 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-19.5 + rot: -1.5707963267948966 rad + pos: 60.5,-21.5 parent: 2 - - uid: 7330 + - uid: 7091 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,27.5 + rot: 3.141592653589793 rad + pos: 62.5,-18.5 parent: 2 - - uid: 7341 + - uid: 7094 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,-4.5 + rot: 3.141592653589793 rad + pos: 62.5,-15.5 parent: 2 - - uid: 7349 + - uid: 7095 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 74.5,-4.5 + rot: 3.141592653589793 rad + pos: 61.5,-15.5 parent: 2 - - uid: 7378 + - uid: 7101 components: - type: Transform - pos: 42.5,14.5 + rot: -1.5707963267948966 rad + pos: 62.5,-11.5 parent: 2 - - uid: 7390 + - uid: 7110 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 77.5,-4.5 + pos: 66.5,-19.5 parent: 2 - - uid: 7416 + - uid: 7113 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-50.5 + pos: 67.5,-23.5 parent: 2 - - uid: 7445 + - uid: 7116 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 86.5,-10.5 + pos: 67.5,-26.5 parent: 2 - - uid: 7446 + - uid: 7117 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 74.5,-33.5 + pos: 67.5,-27.5 parent: 2 - - uid: 7461 + - uid: 7128 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,-33.5 + pos: 60.5,-27.5 parent: 2 - - uid: 7462 + - uid: 7129 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,-32.5 + pos: 61.5,-27.5 parent: 2 - - uid: 7464 + - uid: 7131 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-31.5 + pos: 64.5,-27.5 parent: 2 - - uid: 7479 + - uid: 7133 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,-31.5 + pos: 65.5,-27.5 parent: 2 - - uid: 7503 + - uid: 7136 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,-31.5 + pos: 66.5,-11.5 parent: 2 - - uid: 7513 + - uid: 7137 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,-30.5 + pos: 66.5,-10.5 parent: 2 - - uid: 7514 + - uid: 7165 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,-28.5 + rot: 3.141592653589793 rad + pos: 55.5,-21.5 parent: 2 - - uid: 7519 + - uid: 7182 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,-27.5 + pos: 60.5,-29.5 parent: 2 - - uid: 7521 + - uid: 7185 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,-26.5 + pos: 63.5,-29.5 parent: 2 - - uid: 7525 + - uid: 7187 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,-24.5 + pos: 68.5,-15.5 parent: 2 - - uid: 7527 + - uid: 7189 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-33.5 + pos: 70.5,-15.5 parent: 2 - - uid: 7529 + - uid: 7191 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-33.5 + pos: 72.5,-15.5 parent: 2 - - uid: 7530 + - uid: 7195 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-33.5 + pos: 72.5,-11.5 parent: 2 - - uid: 7531 + - uid: 7197 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-30.5 + pos: 74.5,-10.5 parent: 2 - - uid: 7533 + - uid: 7200 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-29.5 + pos: 75.5,-9.5 parent: 2 - - uid: 7540 + - uid: 7202 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-32.5 + pos: 75.5,-7.5 parent: 2 - - uid: 7542 + - uid: 7204 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-38.5 + pos: 74.5,-6.5 parent: 2 - - uid: 7543 + - uid: 7206 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-39.5 + pos: 72.5,-6.5 parent: 2 - - uid: 7545 + - uid: 7209 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-37.5 + pos: 69.5,-6.5 parent: 2 - - uid: 7546 + - uid: 7212 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-35.5 + pos: 66.5,-6.5 parent: 2 - - uid: 7547 + - uid: 7269 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-39.5 + rot: 3.141592653589793 rad + pos: 68.5,-19.5 parent: 2 - - uid: 7553 + - uid: 7271 components: - type: Transform - pos: 54.5,-24.5 + rot: 3.141592653589793 rad + pos: 69.5,-19.5 parent: 2 - - uid: 7567 + - uid: 7281 components: - type: Transform - pos: 64.5,21.5 + rot: 3.141592653589793 rad + pos: 72.5,-20.5 parent: 2 - - uid: 7580 + - uid: 7284 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-39.5 + rot: 3.141592653589793 rad + pos: 72.5,-23.5 parent: 2 - - uid: 7587 + - uid: 7285 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-39.5 + rot: -1.5707963267948966 rad + pos: 71.5,-24.5 parent: 2 - - uid: 7590 + - uid: 7287 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-39.5 + rot: -1.5707963267948966 rad + pos: 70.5,-24.5 parent: 2 - - uid: 7593 + - uid: 7293 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-39.5 + rot: -1.5707963267948966 rad + pos: 72.5,-27.5 parent: 2 - - uid: 7595 + - uid: 7294 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-40.5 + rot: -1.5707963267948966 rad + pos: 72.5,-28.5 parent: 2 - - uid: 7596 + - uid: 7296 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-41.5 + rot: -1.5707963267948966 rad + pos: 72.5,-30.5 parent: 2 - - uid: 7598 + - uid: 7297 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-40.5 + rot: -1.5707963267948966 rad + pos: 71.5,-30.5 parent: 2 - - uid: 7599 + - uid: 7299 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-42.5 + rot: -1.5707963267948966 rad + pos: 69.5,-30.5 parent: 2 - - uid: 7601 + - uid: 7300 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-41.5 + rot: -1.5707963267948966 rad + pos: 68.5,-30.5 parent: 2 - - uid: 7631 + - uid: 7304 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-42.5 + rot: -1.5707963267948966 rad + pos: 73.5,-19.5 parent: 2 - - uid: 7632 + - uid: 7307 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,-50.5 + pos: 76.5,-19.5 parent: 2 - - uid: 7636 + - uid: 7309 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-41.5 + rot: -1.5707963267948966 rad + pos: 78.5,-19.5 parent: 2 - - uid: 7637 + - uid: 7312 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-44.5 + rot: -1.5707963267948966 rad + pos: 78.5,-15.5 parent: 2 - - uid: 7639 + - uid: 7317 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-45.5 + rot: -1.5707963267948966 rad + pos: 78.5,-11.5 parent: 2 - - uid: 7641 + - uid: 7319 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-46.5 + rot: -1.5707963267948966 rad + pos: 77.5,-10.5 parent: 2 - - uid: 7645 + - uid: 7321 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-47.5 + rot: -1.5707963267948966 rad + pos: 79.5,-15.5 parent: 2 - - uid: 7648 + - uid: 7322 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-47.5 + rot: -1.5707963267948966 rad + pos: 80.5,-15.5 parent: 2 - - uid: 7649 + - uid: 7323 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-44.5 + rot: -1.5707963267948966 rad + pos: 81.5,-15.5 parent: 2 - - uid: 7651 + - uid: 7324 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-45.5 + rot: -1.5707963267948966 rad + pos: 82.5,-15.5 parent: 2 - - uid: 7653 + - uid: 7326 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-45.5 + rot: -1.5707963267948966 rad + pos: 80.5,-11.5 parent: 2 - - uid: 7654 + - uid: 7329 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-46.5 + rot: -1.5707963267948966 rad + pos: 80.5,-19.5 parent: 2 - - uid: 7655 + - uid: 7331 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-47.5 + rot: -1.5707963267948966 rad + pos: 82.5,-19.5 parent: 2 - - uid: 7658 + - uid: 7338 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-49.5 + rot: -1.5707963267948966 rad + pos: 82.5,-11.5 parent: 2 - - uid: 7660 + - uid: 7339 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-48.5 + rot: -1.5707963267948966 rad + pos: 83.5,-15.5 parent: 2 - - uid: 7661 + - uid: 7340 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-49.5 + rot: -1.5707963267948966 rad + pos: 84.5,-15.5 parent: 2 - - uid: 7662 + - uid: 7342 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-48.5 + rot: -1.5707963267948966 rad + pos: 84.5,-11.5 parent: 2 - - uid: 7664 + - uid: 7350 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-49.5 + rot: -1.5707963267948966 rad + pos: 83.5,-19.5 parent: 2 - - uid: 7726 + - uid: 7460 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-41.5 + pos: 73.5,-4.5 parent: 2 - - uid: 7730 + - uid: 7463 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-41.5 + pos: 76.5,-4.5 parent: 2 - - uid: 7733 + - uid: 7478 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-49.5 + pos: 86.5,-9.5 parent: 2 - - uid: 7735 + - uid: 7504 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-41.5 + pos: 73.5,-33.5 parent: 2 - - uid: 7736 + - uid: 7516 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-45.5 + pos: 66.5,-28.5 parent: 2 - - uid: 7741 + - uid: 7517 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-45.5 + pos: 66.5,-29.5 parent: 2 - - uid: 7744 + - uid: 7518 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-36.5 + pos: 66.5,-30.5 parent: 2 - - uid: 7746 + - uid: 7520 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-50.5 + pos: 67.5,-31.5 parent: 2 - - uid: 7756 + - uid: 7522 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-34.5 + pos: 69.5,-31.5 parent: 2 - - uid: 7757 + - uid: 7523 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-36.5 + pos: 70.5,-31.5 parent: 2 - - uid: 7758 + - uid: 7524 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-37.5 + pos: 71.5,-31.5 parent: 2 - - uid: 7762 + - uid: 7526 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-34.5 + pos: 73.5,-31.5 parent: 2 - - uid: 7763 + - uid: 7528 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-47.5 + pos: 73.5,-29.5 parent: 2 - - uid: 7764 + - uid: 7532 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-49.5 + pos: 73.5,-25.5 parent: 2 - - uid: 7767 + - uid: 7534 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-44.5 + pos: 73.5,-23.5 parent: 2 - - uid: 7770 + - uid: 7544 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-50.5 + pos: 64.5,-31.5 parent: 2 - - uid: 7772 + - uid: 7562 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-50.5 + rot: 3.141592653589793 rad + pos: 55.5,-23.5 parent: 2 - - uid: 7782 + - uid: 7565 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-42.5 + pos: 64.5,19.5 parent: 2 - - uid: 7783 + - uid: 7568 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,-42.5 + pos: 65.5,18.5 parent: 2 - - uid: 7794 + - uid: 7574 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-50.5 + pos: 56.5,-15.5 parent: 2 - - uid: 7804 + - uid: 7577 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,-50.5 + pos: 21.5,-34.5 parent: 2 - - uid: 7806 + - uid: 7578 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-50.5 + pos: 18.5,-36.5 parent: 2 - - uid: 7816 + - uid: 7579 components: - type: Transform - pos: 18.5,-55.5 + pos: 18.5,-37.5 parent: 2 - - uid: 7817 + - uid: 7588 components: - type: Transform - pos: 18.5,-61.5 + rot: -1.5707963267948966 rad + pos: 31.5,-40.5 parent: 2 - - uid: 7818 + - uid: 7589 components: - type: Transform - pos: 22.5,-66.5 + pos: 27.5,-38.5 parent: 2 - - uid: 7819 + - uid: 7594 components: - type: Transform - pos: 23.5,-61.5 + pos: 26.5,-39.5 parent: 2 - - uid: 7820 + - uid: 7597 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-50.5 + pos: 23.5,-39.5 parent: 2 - - uid: 7822 + - uid: 7602 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-50.5 + pos: 18.5,-39.5 parent: 2 - - uid: 7824 + - uid: 7628 components: - type: Transform - pos: 25.5,-67.5 + pos: 27.5,-40.5 parent: 2 - - uid: 7826 + - uid: 7630 components: - type: Transform - pos: 14.5,-62.5 + rot: -1.5707963267948966 rad + pos: 30.5,-40.5 parent: 2 - - uid: 7827 + - uid: 7633 components: - type: Transform - pos: 17.5,-51.5 + rot: -1.5707963267948966 rad + pos: 6.5,-49.5 parent: 2 - - uid: 7828 + - uid: 7634 components: - type: Transform - pos: 17.5,-54.5 + rot: -1.5707963267948966 rad + pos: 25.5,-40.5 parent: 2 - - uid: 7831 + - uid: 7635 components: - type: Transform - pos: 13.5,-66.5 + rot: -1.5707963267948966 rad + pos: 24.5,-40.5 parent: 2 - - uid: 7833 + - uid: 7638 components: - type: Transform - pos: 21.5,-55.5 + rot: -1.5707963267948966 rad + pos: 23.5,-41.5 parent: 2 - - uid: 7834 + - uid: 7640 components: - type: Transform - pos: 20.5,-55.5 + rot: -1.5707963267948966 rad + pos: 23.5,-43.5 parent: 2 - - uid: 7835 + - uid: 7642 components: - type: Transform - pos: 18.5,-66.5 + rot: -1.5707963267948966 rad + pos: 30.5,-42.5 parent: 2 - - uid: 7845 + - uid: 7643 components: - type: Transform - pos: 12.5,-78.5 + rot: -1.5707963267948966 rad + pos: 30.5,-43.5 parent: 2 - - uid: 7846 + - uid: 7644 components: - type: Transform - pos: 11.5,-65.5 + rot: -1.5707963267948966 rad + pos: 30.5,-44.5 parent: 2 - - uid: 7848 + - uid: 7646 components: - type: Transform - pos: 15.5,-61.5 + rot: -1.5707963267948966 rad + pos: 31.5,-43.5 parent: 2 - - uid: 7849 + - uid: 7647 components: - type: Transform - pos: 17.5,-61.5 + rot: -1.5707963267948966 rad + pos: 22.5,-40.5 parent: 2 - - uid: 7855 + - uid: 7650 components: - type: Transform - pos: 16.5,-52.5 + rot: -1.5707963267948966 rad + pos: 31.5,-45.5 parent: 2 - - uid: 7856 + - uid: 7652 components: - type: Transform - pos: 16.5,-53.5 + rot: -1.5707963267948966 rad + pos: 30.5,-46.5 parent: 2 - - uid: 7858 + - uid: 7656 components: - type: Transform - pos: 25.5,-61.5 + rot: -1.5707963267948966 rad + pos: 22.5,-42.5 parent: 2 - - uid: 7859 + - uid: 7657 components: - type: Transform - pos: 23.5,-62.5 + rot: -1.5707963267948966 rad + pos: 22.5,-43.5 parent: 2 - - uid: 7861 + - uid: 7659 components: - type: Transform - pos: 16.5,-63.5 + rot: -1.5707963267948966 rad + pos: 23.5,-44.5 parent: 2 - - uid: 7862 + - uid: 7663 components: - type: Transform - pos: 24.5,-54.5 + rot: -1.5707963267948966 rad + pos: 22.5,-46.5 parent: 2 - - uid: 7866 + - uid: 7665 components: - type: Transform - pos: 22.5,-54.5 + rot: -1.5707963267948966 rad + pos: 23.5,-47.5 parent: 2 - - uid: 7869 + - uid: 7674 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-38.5 + rot: -1.5707963267948966 rad + pos: 24.5,-47.5 parent: 2 - - uid: 7871 + - uid: 7679 components: - type: Transform - pos: 23.5,-76.5 + rot: -1.5707963267948966 rad + pos: 29.5,-47.5 parent: 2 - - uid: 7872 + - uid: 7725 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-40.5 + pos: 29.5,-49.5 parent: 2 - - uid: 7873 + - uid: 7728 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-41.5 + pos: 31.5,-48.5 parent: 2 - - uid: 7874 + - uid: 7729 components: - type: Transform - pos: 22.5,-61.5 + pos: 30.5,-48.5 parent: 2 - - uid: 7875 + - uid: 7731 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-41.5 + pos: 22.5,-48.5 parent: 2 - - uid: 7878 + - uid: 7734 components: - type: Transform - pos: 16.5,-65.5 + pos: 24.5,-48.5 parent: 2 - - uid: 7881 + - uid: 7740 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-41.5 + pos: 17.5,-41.5 parent: 2 - - uid: 7883 + - uid: 7743 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-50.5 + pos: 20.5,-41.5 parent: 2 - - uid: 7888 + - uid: 7752 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-45.5 + pos: 13.5,-38.5 parent: 2 - - uid: 7893 + - uid: 7753 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-46.5 + pos: 16.5,-45.5 parent: 2 - - uid: 7894 + - uid: 7754 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-49.5 + pos: 20.5,-46.5 parent: 2 - - uid: 7896 + - uid: 7761 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-50.5 + pos: 17.5,-45.5 parent: 2 - - uid: 7898 + - uid: 7765 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-43.5 + pos: 4.5,-35.5 parent: 2 - - uid: 7907 + - uid: 7768 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-43.5 + pos: 4.5,-33.5 parent: 2 - - uid: 7914 + - uid: 7769 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-43.5 + pos: 13.5,-37.5 parent: 2 - - uid: 7962 + - uid: 7773 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-34.5 + pos: -6.5,-33.5 parent: 2 - - uid: 7965 + - uid: 7775 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-36.5 + pos: 7.5,-37.5 parent: 2 - - uid: 7966 + - uid: 7780 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-39.5 + pos: -8.5,-41.5 parent: 2 - - uid: 7968 + - uid: 7786 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-41.5 + pos: 4.5,-37.5 parent: 2 - - uid: 7972 + - uid: 7793 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-33.5 + rot: -1.5707963267948966 rad + pos: 20.5,-48.5 parent: 2 - - uid: 7973 + - uid: 7796 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-33.5 + pos: 15.5,-45.5 parent: 2 - - uid: 7995 + - uid: 7800 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-32.5 + rot: -1.5707963267948966 rad + pos: 22.5,-63.5 parent: 2 - - uid: 7998 + - uid: 7801 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-38.5 + pos: 15.5,-43.5 parent: 2 - - uid: 8001 + - uid: 7803 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-38.5 + pos: 15.5,-42.5 parent: 2 - - uid: 8023 + - uid: 7805 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-37.5 + rot: -1.5707963267948966 rad + pos: 22.5,-62.5 parent: 2 - - uid: 8024 + - uid: 7811 components: - type: Transform - pos: 26.5,-66.5 + pos: 26.5,-78.5 parent: 2 - - uid: 8025 + - uid: 7815 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-41.5 + pos: 27.5,-65.5 parent: 2 - - uid: 8026 + - uid: 7821 components: - type: Transform - pos: 25.5,-78.5 + pos: 15.5,-50.5 parent: 2 - - uid: 8027 + - uid: 7823 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-42.5 + pos: 24.5,-62.5 parent: 2 - - uid: 8030 + - uid: 7825 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-43.5 + pos: 13.5,-62.5 parent: 2 - - uid: 8031 + - uid: 7829 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-43.5 + rot: -1.5707963267948966 rad + pos: 17.5,-53.5 parent: 2 - - uid: 8035 + - uid: 7838 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-43.5 + pos: 13.5,-78.5 parent: 2 - - uid: 8036 + - uid: 7841 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-36.5 + rot: -1.5707963267948966 rad + pos: 20.5,-66.5 parent: 2 - - uid: 8039 + - uid: 7842 components: - type: Transform - pos: 24.5,-71.5 + pos: 25.5,-79.5 parent: 2 - - uid: 8047 + - uid: 7843 components: - type: Transform - pos: 24.5,-51.5 + pos: 11.5,-64.5 parent: 2 - - uid: 8048 + - uid: 7844 components: - type: Transform - pos: 14.5,-69.5 + pos: 24.5,-66.5 parent: 2 - - uid: 8053 + - uid: 7847 components: - type: Transform - pos: 15.5,-70.5 + pos: 12.5,-66.5 parent: 2 - - uid: 8059 + - uid: 7850 components: - type: Transform - pos: 24.5,-52.5 + pos: 17.5,-55.5 parent: 2 - - uid: 8065 + - uid: 7851 components: - type: Transform - pos: 18.5,-76.5 + pos: 13.5,-50.5 parent: 2 - - uid: 8079 + - uid: 7852 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-36.5 + pos: 24.5,-50.5 parent: 2 - - uid: 8120 + - uid: 7853 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-36.5 + pos: 17.5,-77.5 parent: 2 - - uid: 8121 + - uid: 7854 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-36.5 + pos: 15.5,-77.5 parent: 2 - - uid: 8123 + - uid: 7857 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-45.5 + pos: 21.5,-54.5 parent: 2 - - uid: 8124 + - uid: 7860 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-46.5 + pos: 24.5,-53.5 parent: 2 - - uid: 8126 + - uid: 7863 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,-49.5 + pos: 16.5,-66.5 parent: 2 - - uid: 8127 + - uid: 7865 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-47.5 + pos: 23.5,-54.5 parent: 2 - - uid: 8128 + - uid: 7879 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-48.5 + rot: -1.5707963267948966 rad + pos: 22.5,-65.5 parent: 2 - - uid: 8142 + - uid: 7880 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-39.5 + rot: -1.5707963267948966 rad + pos: 21.5,-66.5 parent: 2 - - uid: 8143 + - uid: 7882 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,9.5 + rot: -1.5707963267948966 rad + pos: 16.5,-62.5 parent: 2 - - uid: 8145 + - uid: 7884 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,9.5 + rot: -1.5707963267948966 rad + pos: 17.5,-52.5 parent: 2 - - uid: 8147 + - uid: 7885 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-42.5 + rot: -1.5707963267948966 rad + pos: 16.5,-61.5 parent: 2 - - uid: 8149 + - uid: 7886 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-41.5 + rot: -1.5707963267948966 rad + pos: 20.5,-61.5 parent: 2 - - uid: 8151 + - uid: 7889 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-42.5 + pos: 14.5,-61.5 parent: 2 - - uid: 8152 + - uid: 7891 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-42.5 + pos: 22.5,-49.5 parent: 2 - - uid: 8157 + - uid: 7892 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-51.5 + rot: 3.141592653589793 rad + pos: 7.5,-39.5 parent: 2 - - uid: 8182 + - uid: 7895 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-51.5 + pos: 10.5,-41.5 parent: 2 - - uid: 8183 + - uid: 7897 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-52.5 + pos: 12.5,-41.5 parent: 2 - - uid: 8200 + - uid: 7900 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-33.5 + rot: 3.141592653589793 rad + pos: 7.5,-41.5 parent: 2 - - uid: 8201 + - uid: 7903 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,11.5 + pos: 13.5,-40.5 parent: 2 - - uid: 8207 + - uid: 7947 components: - type: Transform rot: 1.5707963267948966 rad - pos: 66.5,10.5 + pos: 64.5,17.5 parent: 2 - - uid: 8208 + - uid: 7963 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,9.5 + rot: -1.5707963267948966 rad + pos: 10.5,-47.5 parent: 2 - - uid: 8520 + - uid: 7964 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,25.5 + rot: -1.5707963267948966 rad + pos: 10.5,-48.5 parent: 2 - - uid: 8521 + - uid: 7967 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,26.5 + rot: -1.5707963267948966 rad + pos: 11.5,-50.5 parent: 2 - - uid: 8522 + - uid: 7969 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,28.5 + rot: -1.5707963267948966 rad + pos: 10.5,-44.5 parent: 2 - - uid: 8884 + - uid: 7970 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,18.5 + rot: -1.5707963267948966 rad + pos: 11.5,-43.5 parent: 2 - - uid: 8974 + - uid: 7971 components: - type: Transform - pos: 44.5,-30.5 + rot: -1.5707963267948966 rad + pos: 12.5,-43.5 parent: 2 - - uid: 9096 + - uid: 7990 components: - type: Transform - pos: 23.5,-73.5 + pos: 24.5,-61.5 parent: 2 - - uid: 9097 + - uid: 7997 components: - type: Transform - pos: 24.5,-75.5 + rot: 3.141592653589793 rad + pos: -2.5,-33.5 parent: 2 - - uid: 9105 + - uid: 8004 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,28.5 + pos: -2.5,-37.5 parent: 2 - - uid: 9112 + - uid: 8007 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,29.5 + rot: 3.141592653589793 rad + pos: -0.5,-41.5 parent: 2 - - uid: 9114 + - uid: 8012 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,31.5 + rot: -1.5707963267948966 rad + pos: 22.5,-55.5 parent: 2 - - uid: 9115 + - uid: 8013 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,31.5 + rot: 3.141592653589793 rad + pos: -0.5,-33.5 parent: 2 - - uid: 9124 + - uid: 8015 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,27.5 + pos: 25.5,-62.5 parent: 2 - - uid: 9125 + - uid: 8018 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,30.5 + rot: 3.141592653589793 rad + pos: 4.5,-38.5 parent: 2 - - uid: 9127 + - uid: 8019 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,30.5 + rot: 3.141592653589793 rad + pos: 3.5,-38.5 parent: 2 - - uid: 9128 + - uid: 8022 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 86.5,-8.5 + pos: 27.5,-66.5 parent: 2 - - uid: 9131 + - uid: 8040 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 83.5,-8.5 + pos: 15.5,-69.5 parent: 2 - - uid: 9133 + - uid: 8049 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 85.5,-8.5 + pos: 15.5,-67.5 parent: 2 - - uid: 9135 + - uid: 8050 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,33.5 + rot: 3.141592653589793 rad + pos: 22.5,-60.5 parent: 2 - - uid: 9137 + - uid: 8051 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,33.5 + pos: 24.5,-68.5 parent: 2 - - uid: 9139 + - uid: 8052 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,33.5 + pos: 24.5,-70.5 parent: 2 - - uid: 9143 + - uid: 8058 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,36.5 + rot: -1.5707963267948966 rad + pos: 17.5,-66.5 parent: 2 - - uid: 9144 + - uid: 8064 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,36.5 + pos: 23.5,-74.5 parent: 2 - - uid: 9146 + - uid: 8088 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,35.5 + pos: -4.5,-37.5 parent: 2 - - uid: 9148 + - uid: 8093 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-37.5 + pos: -5.5,-37.5 parent: 2 - - uid: 9153 + - uid: 8122 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-37.5 + pos: 4.5,-43.5 parent: 2 - - uid: 9156 + - uid: 8125 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-38.5 + pos: 7.5,-43.5 parent: 2 - - uid: 9157 + - uid: 8129 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,-20.5 + pos: 12.5,-36.5 parent: 2 - - uid: 9192 + - uid: 8131 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,-18.5 + pos: 10.5,-36.5 parent: 2 - - uid: 9193 + - uid: 8132 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -61.5,-18.5 + pos: 8.5,-36.5 parent: 2 - - uid: 9194 + - uid: 8140 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-19.5 + pos: 5.5,-44.5 parent: 2 - - uid: 9199 + - uid: 8141 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-38.5 + pos: 6.5,-44.5 parent: 2 - - uid: 9201 + - uid: 8144 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-38.5 + pos: 6.5,-46.5 parent: 2 - - uid: 9202 + - uid: 8146 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-38.5 + pos: 5.5,-47.5 parent: 2 - - uid: 9205 + - uid: 8155 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 79.5,-32.5 + pos: 5.5,-45.5 parent: 2 - - uid: 9207 + - uid: 8156 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-38.5 + pos: 14.5,-39.5 parent: 2 - - uid: 9208 + - uid: 8174 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,22.5 + rot: 3.141592653589793 rad + pos: 52.5,9.5 parent: 2 - - uid: 9211 + - uid: 8202 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-32.5 + pos: -2.5,-40.5 parent: 2 - - uid: 9216 + - uid: 8203 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,39.5 + pos: -3.5,-42.5 parent: 2 - - uid: 9217 + - uid: 8342 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,30.5 + rot: -1.5707963267948966 rad + pos: -49.5,-41.5 parent: 2 - - uid: 9218 + - uid: 8491 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,22.5 + rot: 3.141592653589793 rad + pos: -12.5,-41.5 parent: 2 - - uid: 10288 + - uid: 8519 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,20.5 + rot: -1.5707963267948966 rad + pos: -37.5,-51.5 parent: 2 - - uid: 10499 + - uid: 8523 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,-30.5 + rot: -1.5707963267948966 rad + pos: -35.5,-53.5 parent: 2 - - uid: 10633 + - uid: 8707 components: - type: Transform - pos: 13.5,-79.5 + rot: 3.141592653589793 rad + pos: 52.5,-27.5 parent: 2 - - uid: 10636 + - uid: 9095 components: - type: Transform - pos: 13.5,-61.5 + pos: 14.5,-67.5 parent: 2 - - uid: 10637 + - uid: 9098 components: - type: Transform - pos: 16.5,-77.5 + pos: 14.5,-74.5 parent: 2 - - uid: 10646 + - uid: 9100 components: - type: Transform - pos: 15.5,-71.5 + pos: 21.5,-77.5 parent: 2 - - uid: 10653 + - uid: 9101 components: - type: Transform - pos: 14.5,-75.5 + pos: 13.5,-67.5 parent: 2 - - uid: 11666 + - uid: 9106 components: - type: Transform rot: 1.5707963267948966 rad - pos: -30.5,39.5 + pos: 62.5,-33.5 parent: 2 - - uid: 12466 + - uid: 9107 components: - type: Transform rot: 1.5707963267948966 rad - pos: -30.5,35.5 - parent: 2 - - uid: 12670 - components: - - type: Transform - pos: 44.5,-28.5 - parent: 2 - - uid: 12811 - components: - - type: Transform - pos: 23.5,-69.5 + pos: 61.5,-33.5 parent: 2 - - uid: 12812 + - uid: 9113 components: - type: Transform - pos: 27.5,-64.5 + rot: 3.141592653589793 rad + pos: 66.5,11.5 parent: 2 - - uid: 12813 + - uid: 9116 components: - type: Transform - pos: 20.5,-60.5 + rot: 3.141592653589793 rad + pos: 66.5,8.5 parent: 2 - - uid: 12834 + - uid: 9123 components: - type: Transform - pos: 23.5,-77.5 + pos: -30.5,24.5 parent: 2 - - uid: 12837 + - uid: 9126 components: - type: Transform - pos: 20.5,-77.5 + pos: -30.5,27.5 parent: 2 - - uid: 12838 + - uid: 9129 components: - type: Transform - pos: 16.5,-76.5 + pos: -28.5,28.5 parent: 2 - - uid: 14192 + - uid: 9130 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,39.5 + pos: -27.5,28.5 parent: 2 - - uid: 14660 + - uid: 9132 components: - type: Transform - pos: -62.5,-33.5 + pos: -27.5,30.5 parent: 2 - - uid: 14674 + - uid: 9134 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,38.5 + pos: -26.5,31.5 parent: 2 - - uid: 14814 + - uid: 9136 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,26.5 + pos: -24.5,31.5 parent: 2 - - uid: 14954 + - uid: 9138 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,23.5 + pos: -27.5,25.5 parent: 2 - - uid: 15011 + - uid: 9141 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,39.5 + pos: -30.5,30.5 parent: 2 - - uid: 15013 + - uid: 9142 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,39.5 + pos: -31.5,30.5 parent: 2 - - uid: 15045 + - uid: 9145 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,25.5 + pos: 84.5,-8.5 parent: 2 - - uid: 15047 + - uid: 9152 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,35.5 + pos: -27.5,33.5 parent: 2 - - uid: 15052 + - uid: 9155 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,33.5 + pos: -24.5,33.5 parent: 2 - - uid: 15056 + - uid: 9191 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,33.5 + rot: 3.141592653589793 rad + pos: -21.5,36.5 parent: 2 - - uid: 15060 + - uid: 9195 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,36.5 + rot: 3.141592653589793 rad + pos: -23.5,34.5 parent: 2 - - uid: 15062 + - uid: 9206 components: - type: Transform rot: 1.5707963267948966 rad - pos: 71.5,0.5 + pos: -62.5,-19.5 parent: 2 - - uid: 15066 + - uid: 9209 components: - type: Transform rot: 1.5707963267948966 rad - pos: 71.5,6.5 + pos: -60.5,-18.5 parent: 2 - - uid: 15068 + - uid: 9210 components: - type: Transform rot: 1.5707963267948966 rad - pos: 71.5,7.5 + pos: -59.5,-18.5 parent: 2 - - uid: 15072 + - uid: 9215 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,7.5 + pos: -39.5,-37.5 parent: 2 - - uid: 15073 + - uid: 10638 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,7.5 + pos: 15.5,-68.5 parent: 2 - - uid: 15076 + - uid: 10640 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,-3.5 + pos: 22.5,-77.5 parent: 2 - - uid: 15078 + - uid: 10641 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,-3.5 + pos: 23.5,-67.5 parent: 2 - - uid: 15158 + - uid: 10643 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,22.5 + pos: 14.5,-76.5 parent: 2 - - uid: 15205 + - uid: 10644 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,2.5 + rot: -1.5707963267948966 rad + pos: 16.5,-55.5 parent: 2 - - uid: 15207 + - uid: 10645 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-1.5 + pos: 23.5,-71.5 parent: 2 - - uid: 15216 + - uid: 10647 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,4.5 + pos: 14.5,-66.5 parent: 2 - - uid: 15218 + - uid: 10649 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-67.5 + pos: 14.5,-70.5 parent: 2 - - uid: 15220 + - uid: 10652 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-70.5 + pos: 25.5,-66.5 parent: 2 - - uid: 15223 + - uid: 11665 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-69.5 + pos: 76.5,-32.5 parent: 2 - - uid: 15224 + - uid: 12255 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-68.5 + pos: 43.5,19.5 parent: 2 - - uid: 15246 + - uid: 12462 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,38.5 + pos: 54.5,-28.5 parent: 2 - - uid: 15247 + - uid: 12832 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,42.5 + pos: 11.5,-52.5 parent: 2 - - uid: 15248 + - uid: 12833 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,42.5 + pos: 17.5,-76.5 parent: 2 - - uid: 15249 + - uid: 12835 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,42.5 + pos: 15.5,-74.5 parent: 2 - - uid: 15591 + - uid: 12836 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,40.5 + pos: 15.5,-72.5 parent: 2 - - uid: 15623 + - uid: 12839 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,38.5 + pos: 20.5,-76.5 parent: 2 - - uid: 15624 + - uid: 13730 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,18.5 + pos: 77.5,-32.5 parent: 2 - - uid: 15846 + - uid: 14199 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,18.5 + pos: 63.5,27.5 parent: 2 - - uid: 15849 + - uid: 14632 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,17.5 + pos: -37.5,-42.5 parent: 2 - - uid: 15851 + - uid: 14672 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,16.5 + pos: -61.5,-33.5 parent: 2 - - uid: 15858 + - uid: 14956 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-45.5 + rot: -1.5707963267948966 rad + pos: -36.5,30.5 parent: 2 - - uid: 15874 + - uid: 14959 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-44.5 + rot: -1.5707963267948966 rad + pos: -39.5,30.5 parent: 2 - - uid: 15877 + - uid: 14960 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-44.5 + rot: -1.5707963267948966 rad + pos: -40.5,30.5 parent: 2 - - uid: 15878 + - uid: 15010 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,22.5 + rot: -1.5707963267948966 rad + pos: -38.5,23.5 parent: 2 - - uid: 15888 + - uid: 15012 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,28.5 + rot: -1.5707963267948966 rad + pos: -38.5,21.5 parent: 2 - - uid: 15941 + - uid: 15039 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,28.5 + pos: -24.5,39.5 parent: 2 - - uid: 15944 + - uid: 15044 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,26.5 + pos: -29.5,39.5 parent: 2 - - uid: 15945 + - uid: 15048 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,25.5 + pos: -30.5,34.5 parent: 2 - - uid: 15995 + - uid: 15049 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,28.5 + pos: -30.5,33.5 parent: 2 - - uid: 16024 + - uid: 15051 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,28.5 + pos: -20.5,38.5 parent: 2 - - uid: 16027 + - uid: 15067 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,26.5 + rot: -1.5707963267948966 rad + pos: -32.5,39.5 parent: 2 - - uid: 16056 + - uid: 15069 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,25.5 + rot: -1.5707963267948966 rad + pos: -34.5,39.5 parent: 2 - - uid: 16060 + - uid: 15070 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,-36.5 + rot: -1.5707963267948966 rad + pos: -34.5,38.5 parent: 2 - - uid: 16061 + - uid: 15074 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,-32.5 + rot: -1.5707963267948966 rad + pos: -34.5,34.5 parent: 2 - - uid: 16073 + - uid: 15075 components: - type: Transform - pos: 55.5,-22.5 + rot: -1.5707963267948966 rad + pos: -34.5,33.5 parent: 2 - - uid: 16087 + - uid: 15077 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-32.5 + rot: -1.5707963267948966 rad + pos: -32.5,33.5 parent: 2 - - uid: 16088 + - uid: 15079 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-30.5 + rot: -1.5707963267948966 rad + pos: -30.5,38.5 parent: 2 - - uid: 16092 + - uid: 15082 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-23.5 + pos: 18.5,24.5 parent: 2 - - uid: 16093 + - uid: 15197 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-43.5 + pos: 71.5,-3.5 parent: 2 - - uid: 16094 + - uid: 15200 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 79.5,-4.5 + pos: 71.5,-0.5 parent: 2 - - uid: 16096 + - uid: 15208 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 83.5,-4.5 + pos: 71.5,3.5 parent: 2 - - uid: 16098 + - uid: 15217 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 83.5,-6.5 + pos: 70.5,7.5 parent: 2 - - uid: 16100 + - uid: 15219 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,25.5 + pos: 68.5,7.5 parent: 2 - - uid: 16101 + - uid: 15244 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,25.5 + pos: 67.5,22.5 parent: 2 - - uid: 16153 + - uid: 15245 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,25.5 + pos: 66.5,22.5 parent: 2 - - uid: 16160 + - uid: 15397 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,22.5 + pos: 21.5,-39.5 parent: 2 - - uid: 16165 + - uid: 15590 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,27.5 + pos: 7.5,-45.5 parent: 2 - - uid: 16169 + - uid: 15599 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,26.5 + pos: 43.5,17.5 parent: 2 - - uid: 16171 + - uid: 15847 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-46.5 + rot: -1.5707963267948966 rad + pos: -52.5,-70.5 parent: 2 - - uid: 16178 + - uid: 15848 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-46.5 + rot: -1.5707963267948966 rad + pos: -42.5,-69.5 parent: 2 - - uid: 16179 + - uid: 15850 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-46.5 + rot: -1.5707963267948966 rad + pos: -52.5,-68.5 parent: 2 - - uid: 16309 + - uid: 15859 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-46.5 + rot: -1.5707963267948966 rad + pos: -42.5,-67.5 parent: 2 - - uid: 16347 + - uid: 15876 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-33.5 + pos: -17.5,41.5 parent: 2 - - uid: 16348 + - uid: 15883 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-36.5 + pos: -11.5,42.5 parent: 2 - - uid: 16351 + - uid: 15885 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-37.5 + pos: -10.5,41.5 parent: 2 - - uid: 16374 + - uid: 15942 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,-37.5 + pos: -43.5,18.5 parent: 2 - - uid: 16389 + - uid: 15946 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,-37.5 + pos: -44.5,15.5 parent: 2 - - uid: 16427 + - uid: 16002 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -68.5,-27.5 + pos: -21.5,-45.5 parent: 2 - - uid: 16431 + - uid: 16004 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -68.5,-25.5 + pos: -19.5,-45.5 parent: 2 - - uid: 16432 + - uid: 16023 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -68.5,-23.5 + pos: -23.5,-44.5 parent: 2 - - uid: 16433 + - uid: 16025 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -68.5,-22.5 + pos: -20.5,-45.5 parent: 2 - - uid: 16434 + - uid: 16090 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -66.5,-22.5 + pos: 63.5,28.5 parent: 2 - - uid: 16435 + - uid: 16091 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,29.5 + pos: 60.5,28.5 parent: 2 - - uid: 16452 + - uid: 16095 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,32.5 + pos: 58.5,28.5 parent: 2 - - uid: 16455 + - uid: 16099 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,33.5 + pos: 55.5,27.5 parent: 2 - - uid: 16456 + - uid: 16154 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,-18.5 + pos: 71.5,-36.5 parent: 2 - - uid: 16459 + - uid: 16167 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,22.5 + pos: -37.5,-46.5 parent: 2 - - uid: 16461 + - uid: 16170 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,22.5 + pos: 84.5,-31.5 parent: 2 - - uid: 16484 + - uid: 16177 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,21.5 + pos: 84.5,-24.5 parent: 2 - - uid: 16485 + - uid: 16262 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,20.5 + pos: 20.5,-39.5 parent: 2 - - uid: 16487 + - uid: 16308 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-33.5 + pos: 78.5,-4.5 parent: 2 - - uid: 16489 + - uid: 16312 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,39.5 + pos: 80.5,-4.5 parent: 2 - - uid: 16491 + - uid: 16314 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,42.5 + pos: 83.5,-5.5 parent: 2 - - uid: 16492 + - uid: 16316 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,43.5 + pos: 83.5,-7.5 parent: 2 - - uid: 16493 + - uid: 16337 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,43.5 + pos: 53.5,25.5 parent: 2 - - uid: 16509 + - uid: 16343 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,43.5 + pos: 54.5,25.5 parent: 2 - - uid: 16512 + - uid: 16346 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 86.5,-23.5 + pos: 49.5,25.5 parent: 2 - - uid: 16513 + - uid: 16390 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,38.5 + pos: 17.5,26.5 parent: 2 - - uid: 16517 + - uid: 16423 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,36.5 + pos: -26.5,-44.5 parent: 2 - - uid: 16519 + - uid: 16429 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,33.5 + pos: 16.5,28.5 parent: 2 - - uid: 16521 + - uid: 16430 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 93.5,-11.5 + pos: -31.5,-46.5 parent: 2 - - uid: 16522 + - uid: 16457 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 93.5,-10.5 + pos: -59.5,-37.5 parent: 2 - - uid: 16523 + - uid: 16458 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-40.5 + pos: -58.5,-37.5 parent: 2 - - uid: 16552 + - uid: 16460 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,55.5 + pos: -56.5,-37.5 parent: 2 - - uid: 16566 + - uid: 16462 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,56.5 + pos: -54.5,-37.5 parent: 2 - - uid: 16569 + - uid: 16488 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,55.5 + pos: -68.5,-26.5 parent: 2 - - uid: 16571 + - uid: 16490 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,51.5 + pos: -68.5,-24.5 parent: 2 - - uid: 16573 + - uid: 16494 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,50.5 + pos: -65.5,-22.5 parent: 2 - - uid: 16575 + - uid: 16495 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,51.5 + pos: -67.5,-22.5 parent: 2 - - uid: 16614 + - uid: 16510 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,24.5 + pos: 16.5,30.5 parent: 2 - - uid: 16621 + - uid: 16511 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-34.5 + pos: 16.5,31.5 parent: 2 - - uid: 16623 + - uid: 16518 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-29.5 + pos: 48.5,22.5 parent: 2 - - uid: 16625 + - uid: 16520 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-27.5 + pos: 46.5,22.5 parent: 2 - - uid: 16660 + - uid: 16570 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-43.5 + rot: 3.141592653589793 rad + pos: 10.5,43.5 parent: 2 - - uid: 16730 + - uid: 16572 components: - type: Transform - pos: 15.5,-66.5 + rot: 3.141592653589793 rad + pos: 8.5,43.5 parent: 2 - - uid: 16754 + - uid: 16574 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,38.5 + rot: 3.141592653589793 rad + pos: 6.5,43.5 parent: 2 - - uid: 16755 + - uid: 16604 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,38.5 + rot: -1.5707963267948966 rad + pos: 50.5,-43.5 parent: 2 - - uid: 16782 + - uid: 16613 components: - type: Transform - pos: 63.5,-37.5 + pos: 85.5,-23.5 parent: 2 - - uid: 16787 + - uid: 16622 components: - type: Transform - pos: 61.5,-37.5 + pos: 17.5,37.5 parent: 2 - - uid: 16827 + - uid: 16624 components: - type: Transform - pos: 15.5,-76.5 + pos: 17.5,35.5 parent: 2 - - uid: 16834 + - uid: 16626 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,43.5 + pos: 17.5,34.5 parent: 2 - - uid: 16847 + - uid: 16713 components: - type: Transform - pos: 65.5,-37.5 + pos: 22.5,-75.5 parent: 2 - - uid: 16853 + - uid: 16734 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,43.5 + pos: 23.5,-70.5 parent: 2 - - uid: 16855 + - uid: 16773 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,43.5 + rot: -1.5707963267948966 rad + pos: 56.5,-42.5 parent: 2 - - uid: 16857 + - uid: 16774 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,43.5 + pos: 55.5,-42.5 parent: 2 - - uid: 16858 + - uid: 16775 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,40.5 + pos: 55.5,-41.5 parent: 2 - - uid: 16860 + - uid: 16790 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,41.5 + pos: 62.5,-37.5 parent: 2 - - uid: 16861 + - uid: 16794 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-36.5 + pos: 66.5,-37.5 parent: 2 - - uid: 16913 + - uid: 16801 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-34.5 + rot: -1.5707963267948966 rad + pos: 49.5,-40.5 parent: 2 - - uid: 17238 + - uid: 16813 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 79.5,-35.5 + pos: 43.5,-57.5 parent: 2 - - uid: 17328 + - uid: 16822 components: - type: Transform rot: 1.5707963267948966 rad - pos: 81.5,-36.5 + pos: 54.5,-26.5 parent: 2 - - uid: 17362 + - uid: 16828 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,18.5 + pos: 30.5,-52.5 parent: 2 - - uid: 17434 + - uid: 16852 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-48.5 + pos: 5.5,56.5 parent: 2 - - uid: 17558 + - uid: 16854 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-3.5 + pos: 6.5,55.5 parent: 2 - - uid: 18472 + - uid: 16856 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-5.5 + pos: -5.5,55.5 parent: 2 - - uid: 18473 + - uid: 16859 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-6.5 + pos: -9.5,51.5 parent: 2 - - uid: 19807 + - uid: 16862 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,22.5 + pos: -6.5,51.5 parent: 2 - - uid: 19809 + - uid: 17018 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,21.5 + pos: 24.5,-67.5 parent: 2 - - uid: 20302 + - uid: 17020 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,22.5 + pos: 24.5,-74.5 parent: 2 - - uid: 20304 + - uid: 17070 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,24.5 + pos: 39.5,-52.5 parent: 2 - - uid: 20309 + - uid: 17071 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,25.5 + pos: 49.5,-56.5 parent: 2 - - uid: 20310 + - uid: 17072 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,25.5 + pos: 55.5,-48.5 parent: 2 - - uid: 20331 + - uid: 17073 components: - type: Transform - pos: 14.5,-72.5 + pos: 61.5,-56.5 parent: 2 - - uid: 20358 + - uid: 17074 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,24.5 + pos: 64.5,-48.5 parent: 2 - - uid: 20359 + - uid: 17197 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,24.5 + pos: 66.5,-35.5 parent: 2 - - uid: 20361 + - uid: 17202 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-45.5 + pos: 64.5,-49.5 parent: 2 - - uid: 20363 + - uid: 17209 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 88.5,-10.5 + pos: 67.5,-48.5 parent: 2 - - uid: 20365 + - uid: 17210 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 90.5,-10.5 + pos: 65.5,-48.5 parent: 2 - - uid: 20366 + - uid: 17211 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 92.5,-10.5 + pos: 66.5,-48.5 parent: 2 - - uid: 20399 + - uid: 17232 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 93.5,-17.5 + pos: 64.5,-37.5 parent: 2 - - uid: 20401 + - uid: 17247 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 93.5,-18.5 + pos: 67.5,-49.5 parent: 2 - - uid: 20404 + - uid: 17327 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 93.5,-19.5 + rot: -1.5707963267948966 rad + pos: 56.5,-38.5 parent: 2 - - uid: 20414 + - uid: 17354 components: - type: Transform rot: 1.5707963267948966 rad - pos: 93.5,-20.5 + pos: 54.5,-29.5 parent: 2 - - uid: 20530 + - uid: 18469 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 92.5,-21.5 + rot: -1.5707963267948966 rad + pos: 63.5,-6.5 parent: 2 - - uid: 20532 + - uid: 18470 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 90.5,-21.5 + rot: -1.5707963267948966 rad + pos: 62.5,-7.5 parent: 2 - - uid: 20534 + - uid: 18475 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 88.5,-21.5 + rot: -1.5707963267948966 rad + pos: 62.5,-4.5 parent: 2 - - uid: 20535 + - uid: 18579 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 90.5,-22.5 + pos: 15.5,-75.5 parent: 2 - - uid: 20537 + - uid: 19151 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 89.5,-23.5 + pos: 19.5,-76.5 parent: 2 - - uid: 20538 + - uid: 20088 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 88.5,-23.5 + pos: 16.5,-75.5 parent: 2 - - uid: 20539 + - uid: 20089 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-39.5 + pos: 23.5,-75.5 parent: 2 - - uid: 20540 + - uid: 20097 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-44.5 + pos: 22.5,-76.5 parent: 2 - - uid: 20795 + - uid: 20201 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-48.5 + pos: 19.5,-77.5 parent: 2 - - uid: 20804 + - uid: 20303 components: - type: Transform - pos: 14.5,-68.5 + pos: 15.5,38.5 parent: 2 - - uid: 20880 + - uid: 20356 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-48.5 + rot: 3.141592653589793 rad + pos: 12.5,39.5 parent: 2 - - uid: 20882 + - uid: 20357 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-48.5 + rot: 3.141592653589793 rad + pos: 12.5,42.5 parent: 2 - - uid: 20908 + - uid: 20360 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-39.5 + rot: 3.141592653589793 rad + pos: 14.5,43.5 parent: 2 - - uid: 20909 + - uid: 20362 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,7.5 + rot: 3.141592653589793 rad + pos: 16.5,43.5 parent: 2 - - uid: 21401 + - uid: 20364 components: - type: Transform - pos: 15.5,-73.5 + rot: 3.141592653589793 rad + pos: 17.5,42.5 parent: 2 - - uid: 21462 + - uid: 20367 components: - type: Transform - pos: 24.5,-69.5 + rot: 3.141592653589793 rad + pos: 17.5,39.5 parent: 2 - - uid: 21523 + - uid: 20398 components: - type: Transform - pos: 21.5,-76.5 + pos: 83.5,-36.5 parent: 2 - - uid: 21524 + - uid: 20400 components: - type: Transform - pos: 18.5,-77.5 + pos: 84.5,-35.5 parent: 2 - - uid: 21527 + - uid: 20402 components: - type: Transform - pos: 23.5,-68.5 + pos: 84.5,-33.5 parent: 2 - - uid: 21647 + - uid: 20405 components: - type: Transform - pos: 42.5,17.5 + pos: 79.5,-34.5 parent: 2 - - uid: 21969 + - uid: 20406 components: - type: Transform - pos: -68.5,-33.5 + pos: 79.5,-33.5 parent: 2 - - uid: 21981 + - uid: 20529 components: - type: Transform - pos: -68.5,-29.5 + pos: -41.5,22.5 parent: 2 - - uid: 22007 + - uid: 20531 components: - type: Transform - pos: 22.5,-59.5 + pos: -42.5,21.5 parent: 2 - - uid: 22017 + - uid: 20533 components: - type: Transform - pos: 23.5,-66.5 + pos: -44.5,22.5 parent: 2 -- proto: WallShuttle - entities: - - uid: 21142 + - uid: 20536 components: - type: Transform - pos: 6.5,3.5 - parent: 21128 - - uid: 21143 + pos: -44.5,24.5 + parent: 2 + - uid: 20879 components: - type: Transform - pos: 6.5,2.5 - parent: 21128 - - uid: 21144 + pos: 87.5,-10.5 + parent: 2 + - uid: 20883 components: - type: Transform - pos: 6.5,1.5 - parent: 21128 - - uid: 21145 + pos: 89.5,-10.5 + parent: 2 + - uid: 20889 components: - type: Transform - pos: 6.5,0.5 - parent: 21128 - - uid: 21146 + pos: 91.5,-10.5 + parent: 2 + - uid: 20902 components: - type: Transform - pos: 6.5,-0.5 - parent: 21128 - - uid: 21147 + pos: 93.5,-16.5 + parent: 2 + - uid: 20924 components: - type: Transform - pos: 6.5,-1.5 - parent: 21128 - - uid: 21148 + rot: 3.141592653589793 rad + pos: 93.5,-21.5 + parent: 2 + - uid: 20925 components: - type: Transform - pos: 6.5,-2.5 - parent: 21128 - - uid: 21149 + rot: 3.141592653589793 rad + pos: 91.5,-21.5 + parent: 2 + - uid: 20930 components: - type: Transform - pos: 6.5,-4.5 - parent: 21128 - - uid: 21150 + rot: 3.141592653589793 rad + pos: 87.5,-21.5 + parent: 2 + - uid: 20932 components: - type: Transform - pos: 8.5,-6.5 - parent: 21128 - - uid: 21151 + rot: 3.141592653589793 rad + pos: 90.5,-23.5 + parent: 2 + - uid: 20935 components: - type: Transform - pos: 9.5,-6.5 - parent: 21128 - - uid: 21152 + rot: 3.141592653589793 rad + pos: 87.5,-23.5 + parent: 2 + - uid: 21398 components: - type: Transform - pos: 10.5,-6.5 - parent: 21128 - - uid: 21153 + pos: -21.5,-48.5 + parent: 2 + - uid: 21453 components: - type: Transform - pos: 10.5,-5.5 - parent: 21128 - - uid: 21154 + pos: -64.5,-33.5 + parent: 2 + - uid: 21460 components: - type: Transform - pos: 7.5,-0.5 - parent: 21128 - - uid: 21155 + pos: 24.5,-76.5 + parent: 2 + - uid: 21461 components: - type: Transform - pos: 4.5,-0.5 - parent: 21128 - - uid: 21156 + pos: 14.5,-71.5 + parent: 2 + - uid: 21463 components: - type: Transform - pos: 4.5,-2.5 - parent: 21128 - - uid: 21157 + pos: 15.5,-62.5 + parent: 2 + - uid: 21525 components: - type: Transform - pos: 4.5,-4.5 - parent: 21128 - - uid: 21158 + pos: 24.5,-72.5 + parent: 2 + - uid: 21526 components: - type: Transform - pos: 4.5,-5.5 - parent: 21128 - - uid: 21159 + pos: 24.5,-73.5 + parent: 2 + - uid: 21528 components: - type: Transform - pos: 4.5,-6.5 - parent: 21128 - - uid: 21160 + pos: 11.5,-66.5 + parent: 2 + - uid: 21587 components: - type: Transform - pos: 4.5,-7.5 - parent: 21128 - - uid: 21161 + rot: -1.5707963267948966 rad + pos: 7.5,-49.5 + parent: 2 + - uid: 21588 components: - type: Transform - pos: 4.5,-8.5 - parent: 21128 - - uid: 21162 + rot: -1.5707963267948966 rad + pos: 8.5,-50.5 + parent: 2 + - uid: 21589 components: - type: Transform - pos: 3.5,-8.5 - parent: 21128 - - uid: 21163 + rot: -1.5707963267948966 rad + pos: 9.5,-49.5 + parent: 2 + - uid: 21671 components: - type: Transform - pos: 3.5,-9.5 - parent: 21128 - - uid: 21164 + rot: 1.5707963267948966 rad + pos: 66.5,18.5 + parent: 2 + - uid: 21748 components: - type: Transform - pos: 2.5,-9.5 - parent: 21128 - - uid: 21165 + pos: 42.5,16.5 + parent: 2 + - uid: 22006 components: - type: Transform - pos: 1.5,-9.5 - parent: 21128 - - uid: 21166 + rot: 3.141592653589793 rad + pos: 20.5,-59.5 + parent: 2 + - uid: 22038 components: - type: Transform - pos: 0.5,-9.5 - parent: 21128 - - uid: 21167 + pos: 20.5,-71.5 + parent: 2 + - uid: 22041 components: - type: Transform - pos: 0.5,-8.5 - parent: 21128 - - uid: 21168 + pos: 18.5,-71.5 + parent: 2 + - uid: 22042 components: - type: Transform - pos: -0.5,-8.5 - parent: 21128 - - uid: 21169 + pos: 20.5,-74.5 + parent: 2 + - uid: 22043 components: - type: Transform - pos: -0.5,-7.5 - parent: 21128 - - uid: 21170 + pos: 18.5,-74.5 + parent: 2 + - uid: 22044 components: - type: Transform - pos: -0.5,-6.5 - parent: 21128 - - uid: 21171 + pos: 19.5,-74.5 + parent: 2 + - uid: 22174 components: - type: Transform - pos: -0.5,-5.5 - parent: 21128 - - uid: 21172 + pos: 18.5,-73.5 + parent: 2 + - uid: 22177 components: - type: Transform - pos: -0.5,-1.5 - parent: 21128 - - uid: 21173 + pos: 20.5,-73.5 + parent: 2 + - uid: 22448 components: - type: Transform - pos: -0.5,-0.5 - parent: 21128 - - uid: 21174 + pos: -63.5,-33.5 + parent: 2 +- proto: WallReinforcedRust + entities: + - uid: 597 components: - type: Transform - pos: 10.5,3.5 - parent: 21128 - - uid: 21175 + pos: 14.5,-73.5 + parent: 2 + - uid: 2330 components: - type: Transform - pos: 10.5,1.5 - parent: 21128 -- proto: WallSolid - entities: - - uid: 2702 + rot: 1.5707963267948966 rad + pos: -38.5,-42.5 + parent: 2 + - uid: 2368 components: - type: Transform - pos: -41.5,3.5 + rot: 1.5707963267948966 rad + pos: 51.5,-42.5 parent: 2 - - uid: 2703 + - uid: 2370 components: - type: Transform - pos: 16.5,17.5 + rot: 1.5707963267948966 rad + pos: 55.5,-43.5 parent: 2 - - uid: 2705 + - uid: 2372 components: - type: Transform - pos: -18.5,10.5 + rot: 1.5707963267948966 rad + pos: 50.5,-41.5 parent: 2 - - uid: 2707 + - uid: 2374 components: - type: Transform - pos: 15.5,-0.5 + rot: 1.5707963267948966 rad + pos: -10.5,11.5 parent: 2 - - uid: 2711 + - uid: 2376 components: - type: Transform - pos: 16.5,6.5 + rot: 1.5707963267948966 rad + pos: -7.5,11.5 parent: 2 - - uid: 2712 + - uid: 2379 components: - type: Transform - pos: 16.5,8.5 + rot: 1.5707963267948966 rad + pos: -5.5,11.5 parent: 2 - - uid: 2713 + - uid: 2384 components: - type: Transform - pos: 16.5,4.5 + rot: 1.5707963267948966 rad + pos: -0.5,11.5 parent: 2 - - uid: 2715 + - uid: 2385 components: - type: Transform - pos: 16.5,9.5 + rot: 1.5707963267948966 rad + pos: -2.5,11.5 parent: 2 - - uid: 2716 + - uid: 2387 components: - type: Transform - pos: 16.5,11.5 + rot: 1.5707963267948966 rad + pos: 1.5,11.5 parent: 2 - - uid: 2718 + - uid: 2390 components: - type: Transform - pos: 15.5,12.5 + rot: 1.5707963267948966 rad + pos: 5.5,11.5 parent: 2 - - uid: 2719 + - uid: 2392 components: - type: Transform - pos: 16.5,10.5 + rot: 1.5707963267948966 rad + pos: 8.5,11.5 parent: 2 - - uid: 2722 + - uid: 2394 components: - type: Transform - pos: 14.5,15.5 + rot: 1.5707963267948966 rad + pos: -10.5,-9.5 parent: 2 - - uid: 2724 + - uid: 2397 components: - type: Transform - pos: 12.5,15.5 + rot: 1.5707963267948966 rad + pos: 11.5,11.5 parent: 2 - - uid: 2725 + - uid: 2399 components: - type: Transform - pos: 11.5,15.5 + rot: 1.5707963267948966 rad + pos: 11.5,9.5 parent: 2 - - uid: 2733 + - uid: 2402 components: - type: Transform - pos: 9.5,15.5 + rot: 1.5707963267948966 rad + pos: 11.5,7.5 parent: 2 - - uid: 2743 + - uid: 2404 components: - type: Transform - pos: 3.5,15.5 + rot: 1.5707963267948966 rad + pos: 11.5,4.5 parent: 2 - - uid: 2744 + - uid: 2407 components: - type: Transform - pos: 2.5,15.5 + rot: 1.5707963267948966 rad + pos: 11.5,2.5 parent: 2 - - uid: 2746 + - uid: 2410 components: - type: Transform - pos: 0.5,15.5 + rot: 1.5707963267948966 rad + pos: 11.5,-0.5 parent: 2 - - uid: 2747 + - uid: 2412 components: - type: Transform - pos: -5.5,15.5 + rot: 1.5707963267948966 rad + pos: 11.5,-2.5 parent: 2 - - uid: 2748 + - uid: 2413 components: - type: Transform - pos: -6.5,15.5 + rot: 1.5707963267948966 rad + pos: 11.5,-5.5 parent: 2 - - uid: 2750 + - uid: 2416 components: - type: Transform - pos: -8.5,15.5 + rot: 1.5707963267948966 rad + pos: 11.5,-8.5 parent: 2 - - uid: 2751 + - uid: 2418 components: - type: Transform - pos: -10.5,15.5 + rot: 1.5707963267948966 rad + pos: 11.5,-10.5 parent: 2 - - uid: 2752 + - uid: 2420 components: - type: Transform - pos: -11.5,15.5 + rot: 1.5707963267948966 rad + pos: 10.5,-10.5 parent: 2 - - uid: 2754 + - uid: 2424 components: - type: Transform - pos: -13.5,15.5 + rot: 1.5707963267948966 rad + pos: 7.5,-10.5 parent: 2 - - uid: 2756 + - uid: 2426 components: - type: Transform - pos: -14.5,14.5 + rot: 1.5707963267948966 rad + pos: 5.5,-10.5 parent: 2 - - uid: 2758 + - uid: 2427 components: - type: Transform - pos: -14.5,12.5 + rot: 1.5707963267948966 rad + pos: 3.5,-10.5 parent: 2 - - uid: 2826 + - uid: 2429 components: - type: Transform - pos: 10.5,-34.5 + rot: 1.5707963267948966 rad + pos: -3.5,-10.5 parent: 2 - - uid: 2830 + - uid: 2430 components: - type: Transform - pos: -16.5,-12.5 + rot: 1.5707963267948966 rad + pos: -5.5,-11.5 parent: 2 - - uid: 2831 + - uid: 2433 components: - type: Transform - pos: -16.5,-15.5 + rot: 1.5707963267948966 rad + pos: -5.5,-10.5 parent: 2 - - uid: 2832 + - uid: 2435 components: - type: Transform - pos: -16.5,-16.5 + rot: 1.5707963267948966 rad + pos: -8.5,-10.5 parent: 2 - - uid: 2835 + - uid: 2436 components: - type: Transform - pos: -16.5,-19.5 + rot: 1.5707963267948966 rad + pos: -9.5,-10.5 parent: 2 - - uid: 2836 + - uid: 2437 components: - type: Transform - pos: -16.5,-20.5 + rot: 1.5707963267948966 rad + pos: -10.5,-7.5 parent: 2 - - uid: 2868 + - uid: 2439 components: - type: Transform - pos: -15.5,-21.5 + rot: 1.5707963267948966 rad + pos: -10.5,-6.5 parent: 2 - - uid: 2869 + - uid: 2440 components: - type: Transform - pos: -13.5,-21.5 + rot: 1.5707963267948966 rad + pos: -10.5,-4.5 parent: 2 - - uid: 2873 + - uid: 2442 components: - type: Transform - pos: -12.5,-22.5 + rot: 1.5707963267948966 rad + pos: -10.5,-2.5 parent: 2 - - uid: 2874 + - uid: 2443 components: - type: Transform - pos: -12.5,-23.5 + rot: 1.5707963267948966 rad + pos: -10.5,4.5 parent: 2 - - uid: 2875 + - uid: 2448 components: - type: Transform - pos: -12.5,-24.5 + rot: 1.5707963267948966 rad + pos: -10.5,3.5 parent: 2 - - uid: 2877 + - uid: 2449 components: - type: Transform - pos: -12.5,-26.5 + rot: 1.5707963267948966 rad + pos: -10.5,9.5 parent: 2 - - uid: 2879 + - uid: 2450 components: - type: Transform - pos: -12.5,-28.5 + rot: 1.5707963267948966 rad + pos: -10.5,7.5 parent: 2 - - uid: 2880 + - uid: 2452 components: - type: Transform - pos: 27.5,-0.5 + rot: 1.5707963267948966 rad + pos: 3.5,-12.5 parent: 2 - - uid: 2884 + - uid: 2457 components: - type: Transform - pos: 24.5,0.5 + rot: 1.5707963267948966 rad + pos: -2.5,-12.5 parent: 2 - - uid: 2885 + - uid: 2458 components: - type: Transform - pos: 23.5,0.5 + rot: 1.5707963267948966 rad + pos: -2.5,-15.5 parent: 2 - - uid: 2886 + - uid: 2459 components: - type: Transform - pos: 22.5,0.5 + rot: 1.5707963267948966 rad + pos: 3.5,-15.5 parent: 2 - - uid: 2888 + - uid: 2461 components: - type: Transform - pos: 20.5,0.5 + rot: 1.5707963267948966 rad + pos: 3.5,-18.5 parent: 2 - - uid: 2892 + - uid: 2463 components: - type: Transform - pos: 18.5,0.5 + rot: 1.5707963267948966 rad + pos: -12.5,-0.5 parent: 2 - - uid: 2894 + - uid: 2466 components: - type: Transform - pos: 16.5,0.5 + rot: 1.5707963267948966 rad + pos: 7.5,-11.5 parent: 2 - - uid: 2895 + - uid: 2467 components: - type: Transform - pos: -15.5,-5.5 + rot: 1.5707963267948966 rad + pos: 7.5,-13.5 parent: 2 - - uid: 2896 + - uid: 2468 components: - type: Transform - pos: 16.5,1.5 + rot: 1.5707963267948966 rad + pos: 7.5,-15.5 parent: 2 - - uid: 2898 + - uid: 2472 components: - type: Transform - pos: -56.5,-22.5 + rot: 1.5707963267948966 rad + pos: 5.5,-16.5 parent: 2 - - uid: 2899 + - uid: 2473 components: - type: Transform - pos: -18.5,-5.5 + rot: 1.5707963267948966 rad + pos: 4.5,-16.5 parent: 2 - - uid: 2900 + - uid: 2474 components: - type: Transform - pos: -17.5,-5.5 + rot: 1.5707963267948966 rad + pos: 9.5,-12.5 parent: 2 - - uid: 2903 + - uid: 2476 components: - type: Transform - pos: -16.5,8.5 + rot: 1.5707963267948966 rad + pos: 13.5,-12.5 parent: 2 - - uid: 2905 + - uid: 2479 components: - type: Transform - pos: -17.5,8.5 + rot: 1.5707963267948966 rad + pos: 13.5,-11.5 parent: 2 - - uid: 2906 + - uid: 2481 components: - type: Transform - pos: -18.5,7.5 + rot: 1.5707963267948966 rad + pos: 13.5,-10.5 parent: 2 - - uid: 2910 + - uid: 2483 components: - type: Transform - pos: -16.5,4.5 + rot: 1.5707963267948966 rad + pos: 13.5,-8.5 parent: 2 - - uid: 2911 + - uid: 2485 components: - type: Transform - pos: -17.5,4.5 + rot: 1.5707963267948966 rad + pos: 13.5,-5.5 parent: 2 - - uid: 2913 + - uid: 2489 components: - type: Transform - pos: -18.5,5.5 + rot: 1.5707963267948966 rad + pos: 13.5,-3.5 parent: 2 - - uid: 2915 + - uid: 2492 components: - type: Transform - pos: -35.5,-7.5 + rot: 1.5707963267948966 rad + pos: 13.5,-0.5 parent: 2 - - uid: 2917 + - uid: 2495 components: - type: Transform - pos: -21.5,-5.5 + rot: 1.5707963267948966 rad + pos: 13.5,2.5 parent: 2 - - uid: 2918 + - uid: 2496 components: - type: Transform - pos: -17.5,12.5 + rot: 1.5707963267948966 rad + pos: 13.5,5.5 parent: 2 - - uid: 2919 + - uid: 2500 components: - type: Transform - pos: -17.5,16.5 + rot: 1.5707963267948966 rad + pos: 13.5,7.5 parent: 2 - - uid: 2921 + - uid: 2503 components: - type: Transform - pos: -17.5,18.5 + rot: 1.5707963267948966 rad + pos: 13.5,11.5 parent: 2 - - uid: 2925 + - uid: 2505 components: - type: Transform - pos: -16.5,18.5 + rot: 1.5707963267948966 rad + pos: 13.5,13.5 parent: 2 - - uid: 2926 + - uid: 2508 components: - type: Transform - pos: -11.5,18.5 + rot: 1.5707963267948966 rad + pos: 11.5,13.5 parent: 2 - - uid: 2927 + - uid: 2510 components: - type: Transform - pos: -13.5,18.5 + rot: 1.5707963267948966 rad + pos: 8.5,13.5 parent: 2 - - uid: 2928 + - uid: 2512 components: - type: Transform - pos: -10.5,18.5 + rot: 1.5707963267948966 rad + pos: 6.5,13.5 parent: 2 - - uid: 2931 + - uid: 2516 components: - type: Transform - pos: -9.5,18.5 + rot: 1.5707963267948966 rad + pos: 3.5,13.5 parent: 2 - - uid: 2960 + - uid: 2518 components: - type: Transform - pos: -7.5,18.5 + rot: 1.5707963267948966 rad + pos: 1.5,13.5 parent: 2 - - uid: 2961 + - uid: 2521 components: - type: Transform - pos: -4.5,18.5 + rot: 1.5707963267948966 rad + pos: -1.5,13.5 parent: 2 - - uid: 2962 + - uid: 2524 components: - type: Transform - pos: -2.5,18.5 + rot: 1.5707963267948966 rad + pos: -4.5,13.5 parent: 2 - - uid: 2963 + - uid: 2527 components: - type: Transform - pos: -5.5,18.5 + rot: 1.5707963267948966 rad + pos: -6.5,13.5 parent: 2 - - uid: 2964 + - uid: 2529 components: - type: Transform - pos: -1.5,18.5 + rot: 1.5707963267948966 rad + pos: -9.5,13.5 parent: 2 - - uid: 2966 + - uid: 2531 components: - type: Transform - pos: -3.5,18.5 + rot: 1.5707963267948966 rad + pos: -12.5,13.5 parent: 2 - - uid: 2967 + - uid: 2533 components: - type: Transform - pos: 0.5,18.5 + rot: 1.5707963267948966 rad + pos: -12.5,10.5 parent: 2 - - uid: 2968 + - uid: 2534 components: - type: Transform - pos: 1.5,18.5 + rot: 1.5707963267948966 rad + pos: -12.5,8.5 parent: 2 - - uid: 2969 + - uid: 2535 components: - type: Transform - pos: 3.5,18.5 + rot: 1.5707963267948966 rad + pos: -12.5,6.5 parent: 2 - - uid: 2971 + - uid: 2538 components: - type: Transform - pos: 2.5,18.5 + rot: 1.5707963267948966 rad + pos: -12.5,4.5 parent: 2 - - uid: 2972 + - uid: 2540 components: - type: Transform - pos: 5.5,18.5 + rot: 1.5707963267948966 rad + pos: -12.5,3.5 parent: 2 - - uid: 2991 + - uid: 2542 components: - type: Transform - pos: 13.5,18.5 + rot: 1.5707963267948966 rad + pos: -10.5,-0.5 parent: 2 - - uid: 3023 + - uid: 2545 components: - type: Transform - pos: -33.5,-7.5 + rot: 1.5707963267948966 rad + pos: -12.5,-3.5 parent: 2 - - uid: 3027 + - uid: 2546 components: - type: Transform - pos: 16.5,-34.5 + rot: 1.5707963267948966 rad + pos: -12.5,-5.5 parent: 2 - - uid: 3037 + - uid: 2548 components: - type: Transform - pos: 14.5,-34.5 + rot: 1.5707963267948966 rad + pos: -12.5,-7.5 parent: 2 - - uid: 3040 + - uid: 2549 components: - type: Transform - pos: 9.5,-34.5 + rot: 1.5707963267948966 rad + pos: -12.5,-11.5 parent: 2 - - uid: 3042 + - uid: 2551 components: - type: Transform - pos: 7.5,-34.5 + rot: 1.5707963267948966 rad + pos: -12.5,-9.5 parent: 2 - - uid: 3043 + - uid: 2553 components: - type: Transform - pos: 13.5,-34.5 + rot: 1.5707963267948966 rad + pos: -12.5,-12.5 parent: 2 - - uid: 3044 + - uid: 2554 components: - type: Transform - pos: 6.5,-34.5 + rot: 1.5707963267948966 rad + pos: -10.5,-12.5 parent: 2 - - uid: 3045 + - uid: 2556 components: - type: Transform - pos: 6.5,-33.5 + rot: 1.5707963267948966 rad + pos: -8.5,-12.5 parent: 2 - - uid: 3050 + - uid: 2557 components: - type: Transform - pos: -8.5,-32.5 + rot: 1.5707963267948966 rad + pos: -7.5,-12.5 parent: 2 - - uid: 3051 + - uid: 2559 components: - type: Transform - pos: -9.5,-32.5 + rot: 1.5707963267948966 rad + pos: -7.5,-11.5 parent: 2 - - uid: 3060 + - uid: 2560 components: - type: Transform - pos: -11.5,-32.5 + rot: 1.5707963267948966 rad + pos: -10.5,-19.5 parent: 2 - - uid: 3061 + - uid: 2562 components: - type: Transform - pos: -12.5,-32.5 + rot: 1.5707963267948966 rad + pos: -11.5,-19.5 parent: 2 - - uid: 3062 + - uid: 2565 components: - type: Transform - pos: 44.5,-14.5 + rot: 1.5707963267948966 rad + pos: -14.5,-12.5 parent: 2 - - uid: 3063 + - uid: 2568 components: - type: Transform - pos: 45.5,-17.5 + rot: 1.5707963267948966 rad + pos: -14.5,-13.5 parent: 2 - - uid: 3064 + - uid: 2569 components: - type: Transform - pos: 44.5,-17.5 + rot: 1.5707963267948966 rad + pos: -14.5,-15.5 parent: 2 - - uid: 3065 + - uid: 2571 components: - type: Transform - pos: 47.5,-17.5 + rot: 1.5707963267948966 rad + pos: -14.5,-17.5 parent: 2 - - uid: 3066 + - uid: 2572 components: - type: Transform - pos: 46.5,-17.5 + rot: 1.5707963267948966 rad + pos: -10.5,-13.5 parent: 2 - - uid: 3068 + - uid: 2575 components: - type: Transform - pos: 44.5,-15.5 + rot: 1.5707963267948966 rad + pos: -10.5,-17.5 parent: 2 - - uid: 3069 + - uid: 2581 components: - type: Transform - pos: -19.5,-5.5 + rot: 1.5707963267948966 rad + pos: -14.5,-19.5 parent: 2 - - uid: 3070 + - uid: 2582 components: - type: Transform - pos: -21.5,-8.5 + rot: 1.5707963267948966 rad + pos: -2.5,-17.5 parent: 2 - - uid: 3073 + - uid: 2583 components: - type: Transform - pos: -17.5,15.5 + rot: 1.5707963267948966 rad + pos: -2.5,-19.5 parent: 2 - - uid: 3074 + - uid: 2586 components: - type: Transform - pos: -23.5,16.5 + rot: 1.5707963267948966 rad + pos: -10.5,-23.5 parent: 2 - - uid: 3076 + - uid: 2587 components: - type: Transform - pos: -16.5,10.5 + rot: 1.5707963267948966 rad + pos: -10.5,-21.5 parent: 2 - - uid: 3078 + - uid: 2589 components: - type: Transform - pos: -15.5,15.5 + rot: 1.5707963267948966 rad + pos: -8.5,-24.5 parent: 2 - - uid: 3081 + - uid: 2590 components: - type: Transform - pos: -17.5,14.5 + rot: 1.5707963267948966 rad + pos: -4.5,-24.5 parent: 2 - - uid: 3083 + - uid: 2591 components: - type: Transform - pos: 44.5,-13.5 + rot: 1.5707963267948966 rad + pos: -3.5,-24.5 parent: 2 - - uid: 3084 + - uid: 2593 components: - type: Transform - pos: -16.5,-7.5 + rot: 1.5707963267948966 rad + pos: -8.5,-25.5 parent: 2 - - uid: 3085 + - uid: 2595 components: - type: Transform - pos: -17.5,-7.5 + rot: 1.5707963267948966 rad + pos: -10.5,-25.5 parent: 2 - - uid: 3088 + - uid: 2597 components: - type: Transform - pos: -19.5,-7.5 + rot: 1.5707963267948966 rad + pos: -10.5,-26.5 parent: 2 - - uid: 3089 + - uid: 2599 components: - type: Transform - pos: -21.5,-7.5 + rot: 1.5707963267948966 rad + pos: -10.5,-28.5 parent: 2 - - uid: 3090 + - uid: 2601 components: - type: Transform - pos: -21.5,-9.5 + rot: 1.5707963267948966 rad + pos: -8.5,-28.5 parent: 2 - - uid: 3092 + - uid: 2603 components: - type: Transform - pos: -16.5,-10.5 + rot: 1.5707963267948966 rad + pos: -3.5,-26.5 parent: 2 - - uid: 3093 + - uid: 2604 components: - type: Transform - pos: -15.5,-9.5 + rot: 1.5707963267948966 rad + pos: -3.5,-28.5 parent: 2 - - uid: 3094 + - uid: 2606 components: - type: Transform - pos: -15.5,-8.5 + rot: 1.5707963267948966 rad + pos: 1.5,-24.5 parent: 2 - - uid: 3113 + - uid: 2609 components: - type: Transform - pos: -16.5,-22.5 + rot: 1.5707963267948966 rad + pos: 3.5,-24.5 parent: 2 - - uid: 3115 + - uid: 2611 components: - type: Transform - pos: -16.5,-23.5 + rot: 1.5707963267948966 rad + pos: 4.5,-24.5 parent: 2 - - uid: 3116 + - uid: 2612 components: - type: Transform - pos: -16.5,-24.5 + rot: 1.5707963267948966 rad + pos: 4.5,-26.5 parent: 2 - - uid: 3118 + - uid: 2617 components: - type: Transform - pos: -18.5,-24.5 + rot: 1.5707963267948966 rad + pos: 1.5,-25.5 parent: 2 - - uid: 3126 + - uid: 2618 components: - type: Transform - pos: -21.5,-24.5 + rot: 1.5707963267948966 rad + pos: 1.5,-28.5 parent: 2 - - uid: 3129 + - uid: 2622 components: - type: Transform - pos: -19.5,-28.5 + rot: 1.5707963267948966 rad + pos: 3.5,-28.5 parent: 2 - - uid: 3131 + - uid: 2624 components: - type: Transform - pos: -13.5,-32.5 + rot: 1.5707963267948966 rad + pos: 3.5,-20.5 parent: 2 - - uid: 3133 + - uid: 2625 components: - type: Transform - pos: -15.5,-32.5 + rot: 1.5707963267948966 rad + pos: 3.5,-22.5 parent: 2 - - uid: 3134 + - uid: 2627 components: - type: Transform - pos: -17.5,-32.5 + rot: 1.5707963267948966 rad + pos: 10.5,-26.5 parent: 2 - - uid: 3135 + - uid: 2630 components: - type: Transform - pos: -18.5,-32.5 + rot: 1.5707963267948966 rad + pos: 9.5,-18.5 parent: 2 - - uid: 3136 + - uid: 2632 components: - type: Transform - pos: -19.5,-32.5 + rot: 1.5707963267948966 rad + pos: 10.5,-19.5 parent: 2 - - uid: 3140 + - uid: 2635 components: - type: Transform - pos: -26.5,-8.5 + rot: 1.5707963267948966 rad + pos: 11.5,-20.5 parent: 2 - - uid: 3141 + - uid: 2638 components: - type: Transform - pos: -25.5,-7.5 + rot: 1.5707963267948966 rad + pos: 9.5,-16.5 parent: 2 - - uid: 3144 + - uid: 2639 components: - type: Transform - pos: -26.5,-11.5 + rot: 1.5707963267948966 rad + pos: 9.5,-19.5 parent: 2 - - uid: 3146 + - uid: 2640 components: - type: Transform - pos: -29.5,-7.5 + rot: 1.5707963267948966 rad + pos: 6.5,-25.5 parent: 2 - - uid: 3147 + - uid: 2642 components: - type: Transform - pos: -32.5,-7.5 + rot: 1.5707963267948966 rad + pos: 9.5,-25.5 parent: 2 - - uid: 3149 + - uid: 2645 components: - type: Transform - pos: -30.5,-7.5 + rot: 1.5707963267948966 rad + pos: 12.5,-19.5 parent: 2 - - uid: 3150 + - uid: 2647 components: - type: Transform - pos: -26.5,-17.5 + rot: 1.5707963267948966 rad + pos: 10.5,-28.5 parent: 2 - - uid: 3152 + - uid: 2649 components: - type: Transform - pos: -26.5,-18.5 + rot: 1.5707963267948966 rad + pos: 10.5,-23.5 parent: 2 - - uid: 3153 + - uid: 2651 components: - type: Transform - pos: -26.5,-20.5 + rot: 1.5707963267948966 rad + pos: 18.5,-25.5 parent: 2 - - uid: 3156 + - uid: 2652 components: - type: Transform - pos: -27.5,-7.5 + rot: 1.5707963267948966 rad + pos: 18.5,-27.5 parent: 2 - - uid: 3165 + - uid: 2655 components: - type: Transform - pos: -25.5,-32.5 + rot: 1.5707963267948966 rad + pos: 18.5,-30.5 parent: 2 - - uid: 3166 + - uid: 2656 components: - type: Transform - pos: -29.5,-35.5 + rot: 1.5707963267948966 rad + pos: 16.5,-23.5 parent: 2 - - uid: 3167 + - uid: 2658 components: - type: Transform - pos: -26.5,-33.5 + rot: 1.5707963267948966 rad + pos: 12.5,-23.5 parent: 2 - - uid: 3168 + - uid: 2661 components: - type: Transform - pos: -25.5,-5.5 + rot: 1.5707963267948966 rad + pos: 18.5,-23.5 parent: 2 - - uid: 3169 + - uid: 2662 components: - type: Transform - pos: -26.5,-5.5 + rot: 1.5707963267948966 rad + pos: 17.5,-30.5 parent: 2 - - uid: 3170 + - uid: 2663 components: - type: Transform - pos: -27.5,22.5 + rot: 1.5707963267948966 rad + pos: 11.5,-30.5 parent: 2 - - uid: 3172 + - uid: 2667 components: - type: Transform - pos: -27.5,20.5 + rot: 1.5707963267948966 rad + pos: 16.5,-21.5 parent: 2 - - uid: 3173 + - uid: 2668 components: - type: Transform - pos: -27.5,18.5 + rot: 1.5707963267948966 rad + pos: 16.5,-20.5 parent: 2 - - uid: 3174 + - uid: 2670 components: - type: Transform - pos: -27.5,17.5 + rot: 1.5707963267948966 rad + pos: 16.5,-19.5 parent: 2 - - uid: 3194 + - uid: 2672 components: - type: Transform - pos: -27.5,16.5 + rot: 1.5707963267948966 rad + pos: 9.5,-14.5 parent: 2 - - uid: 3195 + - uid: 2673 components: - type: Transform - pos: -27.5,15.5 + rot: 1.5707963267948966 rad + pos: 10.5,-14.5 parent: 2 - - uid: 3198 + - uid: 2676 components: - type: Transform - pos: -24.5,22.5 + rot: 1.5707963267948966 rad + pos: 12.5,-14.5 parent: 2 - - uid: 3199 + - uid: 2678 components: - type: Transform - pos: -23.5,22.5 + rot: 1.5707963267948966 rad + pos: 14.5,-14.5 parent: 2 - - uid: 3200 + - uid: 2679 components: - type: Transform - pos: -25.5,22.5 + rot: 1.5707963267948966 rad + pos: 15.5,-9.5 parent: 2 - - uid: 3203 + - uid: 2685 components: - type: Transform - pos: -20.5,22.5 + rot: 1.5707963267948966 rad + pos: 15.5,-6.5 parent: 2 - - uid: 3204 + - uid: 2697 components: - type: Transform - pos: -18.5,22.5 + rot: 1.5707963267948966 rad + pos: 15.5,-4.5 parent: 2 - - uid: 3208 + - uid: 2728 components: - type: Transform - pos: 17.5,22.5 + rot: 1.5707963267948966 rad + pos: 15.5,-3.5 parent: 2 - - uid: 3210 + - uid: 2729 components: - type: Transform - pos: 15.5,22.5 + rot: 1.5707963267948966 rad + pos: 15.5,-1.5 parent: 2 - - uid: 3212 + - uid: 2734 components: - type: Transform - pos: 13.5,22.5 + rot: 1.5707963267948966 rad + pos: -2.5,-39.5 parent: 2 - - uid: 3213 + - uid: 2760 components: - type: Transform - pos: 12.5,22.5 + rot: 1.5707963267948966 rad + pos: 18.5,-19.5 parent: 2 - - uid: 3216 + - uid: 2762 components: - type: Transform - pos: 9.5,22.5 + rot: 1.5707963267948966 rad + pos: 22.5,-19.5 parent: 2 - - uid: 3218 + - uid: 2763 components: - type: Transform - pos: 8.5,23.5 + rot: 1.5707963267948966 rad + pos: -1.5,-28.5 parent: 2 - - uid: 3222 + - uid: 2764 components: - type: Transform - pos: -28.5,-5.5 + rot: 1.5707963267948966 rad + pos: -11.5,-0.5 parent: 2 - - uid: 3223 + - uid: 2765 components: - type: Transform - pos: -29.5,-5.5 + rot: 1.5707963267948966 rad + pos: 22.5,-20.5 parent: 2 - - uid: 3224 + - uid: 2768 components: - type: Transform - pos: -30.5,-5.5 + rot: 1.5707963267948966 rad + pos: 22.5,-22.5 parent: 2 - - uid: 3225 + - uid: 2769 components: - type: Transform - pos: -31.5,-5.5 + rot: 1.5707963267948966 rad + pos: 22.5,-23.5 parent: 2 - - uid: 3229 + - uid: 2771 components: - type: Transform - pos: -35.5,-5.5 + rot: 1.5707963267948966 rad + pos: 23.5,-19.5 parent: 2 - - uid: 3231 + - uid: 2773 components: - type: Transform - pos: -38.5,-5.5 + rot: 1.5707963267948966 rad + pos: 26.5,-19.5 parent: 2 - - uid: 3232 + - uid: 2775 components: - type: Transform - pos: -39.5,-5.5 + rot: 1.5707963267948966 rad + pos: 26.5,-18.5 parent: 2 - - uid: 3234 + - uid: 2776 components: - type: Transform - pos: -40.5,-4.5 + rot: 1.5707963267948966 rad + pos: 28.5,-5.5 parent: 2 - - uid: 3235 + - uid: 2778 components: - type: Transform - pos: -40.5,-3.5 + rot: 1.5707963267948966 rad + pos: 17.5,-5.5 parent: 2 - - uid: 3236 + - uid: 2782 components: - type: Transform - pos: -28.5,10.5 + rot: 1.5707963267948966 rad + pos: 24.5,-22.5 parent: 2 - - uid: 3239 + - uid: 2783 components: - type: Transform - pos: -30.5,10.5 + rot: 1.5707963267948966 rad + pos: 24.5,-21.5 parent: 2 - - uid: 3240 + - uid: 2785 components: - type: Transform - pos: -31.5,10.5 + rot: 1.5707963267948966 rad + pos: 32.5,-9.5 parent: 2 - - uid: 3241 + - uid: 2787 components: - type: Transform - pos: -32.5,10.5 + rot: 1.5707963267948966 rad + pos: 27.5,-14.5 parent: 2 - - uid: 3242 + - uid: 2789 components: - type: Transform - pos: -33.5,10.5 + rot: 1.5707963267948966 rad + pos: 28.5,-14.5 parent: 2 - - uid: 3244 + - uid: 2794 components: - type: Transform - pos: -35.5,10.5 + rot: 1.5707963267948966 rad + pos: 30.5,-14.5 parent: 2 - - uid: 3245 + - uid: 2796 components: - type: Transform - pos: -36.5,10.5 + rot: 1.5707963267948966 rad + pos: 17.5,-3.5 parent: 2 - - uid: 3246 + - uid: 2797 components: - type: Transform - pos: -38.5,10.5 + rot: 1.5707963267948966 rad + pos: 17.5,-1.5 parent: 2 - - uid: 3247 + - uid: 2799 components: - type: Transform - pos: -39.5,10.5 + rot: 1.5707963267948966 rad + pos: 19.5,-3.5 parent: 2 - - uid: 3254 + - uid: 2801 components: - type: Transform - pos: -40.5,7.5 + rot: 1.5707963267948966 rad + pos: 19.5,-5.5 parent: 2 - - uid: 3255 + - uid: 2803 components: - type: Transform - pos: -40.5,6.5 + rot: 1.5707963267948966 rad + pos: 20.5,-1.5 parent: 2 - - uid: 3258 + - uid: 2805 components: - type: Transform - pos: -40.5,3.5 + rot: 1.5707963267948966 rad + pos: 21.5,-2.5 parent: 2 - - uid: 3259 + - uid: 2806 components: - type: Transform - pos: -40.5,-0.5 + rot: 1.5707963267948966 rad + pos: 21.5,-4.5 parent: 2 - - uid: 3260 + - uid: 2808 components: - type: Transform - pos: -40.5,-2.5 + rot: 1.5707963267948966 rad + pos: 22.5,-1.5 parent: 2 - - uid: 3262 + - uid: 2809 components: - type: Transform - pos: -31.5,8.5 + rot: 1.5707963267948966 rad + pos: 23.5,-2.5 parent: 2 - - uid: 3263 + - uid: 2810 components: - type: Transform - pos: -33.5,8.5 + rot: 1.5707963267948966 rad + pos: 23.5,-3.5 parent: 2 - - uid: 3264 + - uid: 2811 components: - type: Transform - pos: -30.5,8.5 + rot: 1.5707963267948966 rad + pos: 23.5,-5.5 parent: 2 - - uid: 3266 + - uid: 2813 components: - type: Transform - pos: -28.5,8.5 + rot: 1.5707963267948966 rad + pos: 24.5,-1.5 parent: 2 - - uid: 3267 + - uid: 2815 components: - type: Transform - pos: -27.5,8.5 + rot: 1.5707963267948966 rad + pos: 25.5,-1.5 parent: 2 - - uid: 3268 + - uid: 2817 components: - type: Transform - pos: -38.5,8.5 + rot: 1.5707963267948966 rad + pos: 25.5,-2.5 parent: 2 - - uid: 3269 + - uid: 2818 components: - type: Transform - pos: -39.5,8.5 + rot: 1.5707963267948966 rad + pos: 25.5,-4.5 parent: 2 - - uid: 3273 + - uid: 2820 components: - type: Transform - pos: -32.5,8.5 + rot: 1.5707963267948966 rad + pos: 26.5,-1.5 parent: 2 - - uid: 3274 + - uid: 2824 components: - type: Transform - pos: -37.5,8.5 + rot: 1.5707963267948966 rad + pos: 27.5,-2.5 parent: 2 - - uid: 3275 + - uid: 2837 components: - type: Transform - pos: -36.5,8.5 + rot: 1.5707963267948966 rad + pos: 27.5,-3.5 parent: 2 - - uid: 3276 + - uid: 2840 components: - type: Transform - pos: -35.5,12.5 + rot: 1.5707963267948966 rad + pos: 27.5,-5.5 parent: 2 - - uid: 3278 + - uid: 2841 components: - type: Transform - pos: -35.5,11.5 + rot: 1.5707963267948966 rad + pos: 27.5,-17.5 parent: 2 - - uid: 3296 + - uid: 2843 components: - type: Transform - pos: -35.5,15.5 + rot: 1.5707963267948966 rad + pos: 30.5,-17.5 parent: 2 - - uid: 3298 + - uid: 2845 components: - type: Transform - pos: -35.5,16.5 + rot: 1.5707963267948966 rad + pos: 31.5,-5.5 parent: 2 - - uid: 3302 + - uid: 2850 components: - type: Transform - pos: -34.5,18.5 + rot: 1.5707963267948966 rad + pos: 32.5,-5.5 parent: 2 - - uid: 3303 + - uid: 2855 components: - type: Transform - pos: -33.5,18.5 + rot: 1.5707963267948966 rad + pos: 33.5,-6.5 parent: 2 - - uid: 3305 + - uid: 2857 components: - type: Transform - pos: -32.5,18.5 + rot: 1.5707963267948966 rad + pos: 33.5,-8.5 parent: 2 - - uid: 3308 + - uid: 2858 components: - type: Transform - pos: -30.5,18.5 + rot: 1.5707963267948966 rad + pos: 32.5,-17.5 parent: 2 - - uid: 3313 + - uid: 2860 components: - type: Transform - pos: -36.5,15.5 + rot: 1.5707963267948966 rad + pos: 36.5,-12.5 parent: 2 - - uid: 3314 + - uid: 2861 components: - type: Transform - pos: -37.5,15.5 + rot: 1.5707963267948966 rad + pos: 36.5,-10.5 parent: 2 - - uid: 3315 + - uid: 2863 components: - type: Transform - pos: -38.5,15.5 + rot: 1.5707963267948966 rad + pos: 36.5,-9.5 parent: 2 - - uid: 3316 + - uid: 2865 components: - type: Transform - pos: -39.5,15.5 + rot: 1.5707963267948966 rad + pos: 34.5,-9.5 parent: 2 - - uid: 3318 + - uid: 2872 components: - type: Transform - pos: -39.5,13.5 + rot: 1.5707963267948966 rad + pos: 34.5,-17.5 parent: 2 - - uid: 3319 + - uid: 2889 components: - type: Transform - pos: -39.5,12.5 + rot: 1.5707963267948966 rad + pos: 36.5,-17.5 parent: 2 - - uid: 3321 + - uid: 2934 components: - type: Transform - pos: -42.5,9.5 + rot: 1.5707963267948966 rad + pos: 36.5,-15.5 parent: 2 - - uid: 3322 + - uid: 2937 components: - type: Transform - pos: -41.5,10.5 + rot: 1.5707963267948966 rad + pos: 15.5,-13.5 parent: 2 - - uid: 3325 + - uid: 2939 components: - type: Transform - pos: -41.5,13.5 + rot: 1.5707963267948966 rad + pos: 2.5,-18.5 parent: 2 - - uid: 3326 + - uid: 2941 components: - type: Transform - pos: -29.5,20.5 + rot: 1.5707963267948966 rad + pos: 39.5,-17.5 parent: 2 - - uid: 3328 + - uid: 2943 components: - type: Transform - pos: -13.5,17.5 + rot: 1.5707963267948966 rad + pos: 38.5,-21.5 parent: 2 - - uid: 3330 + - uid: 2944 components: - type: Transform - pos: -43.5,7.5 + rot: 1.5707963267948966 rad + pos: 36.5,-21.5 parent: 2 - - uid: 3331 + - uid: 2945 components: - type: Transform - pos: -43.5,8.5 + rot: 1.5707963267948966 rad + pos: 34.5,-21.5 parent: 2 - - uid: 3333 + - uid: 2947 components: - type: Transform - pos: -43.5,-4.5 + rot: 1.5707963267948966 rad + pos: 30.5,-22.5 parent: 2 - - uid: 3334 + - uid: 2949 components: - type: Transform - pos: -51.5,-5.5 + rot: 1.5707963267948966 rad + pos: 30.5,-23.5 parent: 2 - - uid: 3335 + - uid: 2951 components: - type: Transform - pos: 18.5,15.5 + rot: 1.5707963267948966 rad + pos: 30.5,-24.5 parent: 2 - - uid: 3336 + - uid: 2952 components: - type: Transform - pos: 18.5,16.5 + rot: 1.5707963267948966 rad + pos: 30.5,-26.5 parent: 2 - - uid: 3337 + - uid: 2954 components: - type: Transform - pos: -36.5,-7.5 + rot: 1.5707963267948966 rad + pos: 22.5,-27.5 parent: 2 - - uid: 3340 + - uid: 2958 components: - type: Transform - pos: -40.5,-7.5 + rot: 1.5707963267948966 rad + pos: 22.5,-29.5 parent: 2 - - uid: 3341 + - uid: 2973 components: - type: Transform - pos: -38.5,-7.5 + rot: 1.5707963267948966 rad + pos: 22.5,-30.5 parent: 2 - - uid: 3342 + - uid: 2981 components: - type: Transform - pos: -27.5,-11.5 + rot: 1.5707963267948966 rad + pos: 22.5,-33.5 parent: 2 - - uid: 3344 + - uid: 2993 components: - type: Transform - pos: -30.5,-11.5 + rot: 1.5707963267948966 rad + pos: 18.5,-34.5 parent: 2 - - uid: 3345 + - uid: 2996 components: - type: Transform - pos: -30.5,-10.5 + rot: 1.5707963267948966 rad + pos: 4.5,-32.5 parent: 2 - - uid: 3347 + - uid: 2997 components: - type: Transform - pos: -30.5,-8.5 + rot: 1.5707963267948966 rad + pos: -2.5,-32.5 parent: 2 - - uid: 3349 + - uid: 2998 components: - type: Transform - pos: -34.5,-8.5 + rot: 1.5707963267948966 rad + pos: 34.5,-22.5 parent: 2 - - uid: 3350 + - uid: 2999 components: - type: Transform - pos: -34.5,-10.5 + rot: 1.5707963267948966 rad + pos: 31.5,-26.5 parent: 2 - - uid: 3351 + - uid: 3002 components: - type: Transform - pos: -35.5,-11.5 + rot: 1.5707963267948966 rad + pos: 34.5,-25.5 parent: 2 - - uid: 3352 + - uid: 3005 components: - type: Transform - pos: -37.5,-11.5 + rot: 1.5707963267948966 rad + pos: 38.5,-22.5 parent: 2 - - uid: 3354 + - uid: 3007 components: - type: Transform - pos: -38.5,-10.5 + rot: 1.5707963267948966 rad + pos: 38.5,-23.5 parent: 2 - - uid: 3355 + - uid: 3008 components: - type: Transform - pos: -38.5,-9.5 + rot: 1.5707963267948966 rad + pos: 38.5,-26.5 parent: 2 - - uid: 3356 + - uid: 3010 components: - type: Transform - pos: -38.5,-8.5 + rot: 1.5707963267948966 rad + pos: 37.5,-27.5 parent: 2 - - uid: 3358 + - uid: 3011 components: - type: Transform - pos: -41.5,-8.5 + rot: 1.5707963267948966 rad + pos: 34.5,-27.5 parent: 2 - - uid: 3359 + - uid: 3012 components: - type: Transform - pos: -41.5,-9.5 + rot: 1.5707963267948966 rad + pos: 38.5,-25.5 parent: 2 - - uid: 3360 + - uid: 3013 components: - type: Transform - pos: -41.5,-10.5 + rot: 1.5707963267948966 rad + pos: 46.5,-22.5 parent: 2 - - uid: 3361 + - uid: 3014 components: - type: Transform - pos: -41.5,-11.5 + rot: 1.5707963267948966 rad + pos: 46.5,-21.5 parent: 2 - - uid: 3363 + - uid: 3015 components: - type: Transform - pos: -39.5,-11.5 + rot: 1.5707963267948966 rad + pos: 45.5,-22.5 parent: 2 - - uid: 3364 + - uid: 3017 components: - type: Transform - pos: -39.5,-12.5 + rot: 1.5707963267948966 rad + pos: 46.5,-24.5 parent: 2 - - uid: 3366 + - uid: 3019 components: - type: Transform - pos: -39.5,-14.5 + rot: 1.5707963267948966 rad + pos: 46.5,-25.5 parent: 2 - - uid: 3367 + - uid: 3021 components: - type: Transform - pos: -39.5,-16.5 + rot: 1.5707963267948966 rad + pos: 46.5,-26.5 parent: 2 - - uid: 3369 + - uid: 3029 components: - type: Transform - pos: -34.5,-16.5 + rot: 1.5707963267948966 rad + pos: 44.5,-26.5 parent: 2 - - uid: 3371 + - uid: 3030 components: - type: Transform - pos: -36.5,-16.5 + rot: 1.5707963267948966 rad + pos: 42.5,-26.5 parent: 2 - - uid: 3374 + - uid: 3031 components: - type: Transform - pos: -40.5,-17.5 + rot: 1.5707963267948966 rad + pos: 40.5,-26.5 parent: 2 - - uid: 3378 + - uid: 3032 components: - type: Transform - pos: -40.5,-19.5 + rot: 1.5707963267948966 rad + pos: 50.5,-22.5 parent: 2 - - uid: 3379 + - uid: 3034 components: - type: Transform - pos: -40.5,-20.5 + rot: 1.5707963267948966 rad + pos: 49.5,-22.5 parent: 2 - - uid: 3381 + - uid: 3035 components: - type: Transform - pos: -35.5,-17.5 + rot: 1.5707963267948966 rad + pos: 50.5,-23.5 parent: 2 - - uid: 3383 + - uid: 3048 components: - type: Transform - pos: -35.5,-19.5 + rot: 1.5707963267948966 rad + pos: 50.5,-24.5 parent: 2 - - uid: 3385 + - uid: 3049 components: - type: Transform - pos: -27.5,-21.5 + rot: 1.5707963267948966 rad + pos: 50.5,-26.5 parent: 2 - - uid: 3386 + - uid: 3054 components: - type: Transform - pos: -29.5,-21.5 + rot: 1.5707963267948966 rad + pos: 49.5,-26.5 parent: 2 - - uid: 3387 + - uid: 3056 components: - type: Transform - pos: -32.5,-21.5 + rot: 1.5707963267948966 rad + pos: 4.5,-40.5 parent: 2 - - uid: 3389 + - uid: 3057 components: - type: Transform - pos: -33.5,-21.5 + rot: 1.5707963267948966 rad + pos: -6.5,-32.5 parent: 2 - - uid: 3390 + - uid: 3058 components: - type: Transform - pos: -35.5,-21.5 + rot: 1.5707963267948966 rad + pos: 40.5,-16.5 parent: 2 - - uid: 3393 + - uid: 3158 components: - type: Transform - pos: -37.5,-21.5 + rot: 1.5707963267948966 rad + pos: 40.5,-14.5 parent: 2 - - uid: 3394 + - uid: 3175 components: - type: Transform - pos: -39.5,-21.5 + rot: 1.5707963267948966 rad + pos: 40.5,-13.5 parent: 2 - - uid: 3395 + - uid: 3177 components: - type: Transform - pos: -43.5,-5.5 + rot: 1.5707963267948966 rad + pos: 38.5,-13.5 parent: 2 - - uid: 3397 + - uid: 3178 components: - type: Transform - pos: -43.5,-7.5 + rot: 1.5707963267948966 rad + pos: -16.5,22.5 parent: 2 - - uid: 3398 + - uid: 3180 components: - type: Transform - pos: -43.5,-8.5 + rot: 1.5707963267948966 rad + pos: 6.5,22.5 parent: 2 - - uid: 3399 + - uid: 3183 components: - type: Transform - pos: -43.5,-9.5 + rot: 1.5707963267948966 rad + pos: 4.5,22.5 parent: 2 - - uid: 3400 + - uid: 3288 components: - type: Transform - pos: -51.5,-12.5 + rot: 1.5707963267948966 rad + pos: 3.5,22.5 parent: 2 - - uid: 3401 + - uid: 3289 components: - type: Transform - pos: -43.5,-13.5 + rot: 1.5707963267948966 rad + pos: 1.5,22.5 parent: 2 - - uid: 3404 + - uid: 3294 components: - type: Transform - pos: -42.5,-16.5 + rot: 1.5707963267948966 rad + pos: -4.5,22.5 parent: 2 - - uid: 3405 + - uid: 3424 components: - type: Transform - pos: -42.5,-14.5 + rot: 1.5707963267948966 rad + pos: -37.5,18.5 parent: 2 - - uid: 3407 + - uid: 3452 components: - type: Transform - pos: -42.5,-18.5 + rot: 1.5707963267948966 rad + pos: -37.5,20.5 parent: 2 - - uid: 3409 + - uid: 3454 components: - type: Transform - pos: -42.5,-20.5 + rot: 1.5707963267948966 rad + pos: -38.5,18.5 parent: 2 - - uid: 3412 + - uid: 3562 components: - type: Transform - pos: -40.5,-23.5 + rot: 1.5707963267948966 rad + pos: -36.5,-38.5 parent: 2 - - uid: 3414 + - uid: 3563 components: - type: Transform - pos: -42.5,-22.5 + rot: 1.5707963267948966 rad + pos: -36.5,-36.5 parent: 2 - - uid: 3415 + - uid: 3566 components: - type: Transform - pos: -41.5,-23.5 + rot: 1.5707963267948966 rad + pos: -41.5,18.5 parent: 2 - - uid: 3416 + - uid: 3576 components: - type: Transform - pos: -38.5,-23.5 + rot: 1.5707963267948966 rad + pos: -57.5,7.5 parent: 2 - - uid: 3417 + - uid: 3577 components: - type: Transform - pos: -37.5,-23.5 + rot: 1.5707963267948966 rad + pos: -56.5,7.5 parent: 2 - - uid: 3419 + - uid: 3614 components: - type: Transform - pos: -34.5,-23.5 + rot: 1.5707963267948966 rad + pos: -54.5,8.5 parent: 2 - - uid: 3420 + - uid: 3657 components: - type: Transform - pos: -33.5,-23.5 + rot: 1.5707963267948966 rad + pos: -57.5,-4.5 parent: 2 - - uid: 3422 + - uid: 3660 components: - type: Transform - pos: -30.5,-23.5 + rot: 1.5707963267948966 rad + pos: -55.5,-4.5 parent: 2 - - uid: 3423 + - uid: 3661 components: - type: Transform - pos: -29.5,-23.5 + rot: 1.5707963267948966 rad + pos: -52.5,8.5 parent: 2 - - uid: 3425 + - uid: 3662 components: - type: Transform - pos: -27.5,-23.5 + rot: 1.5707963267948966 rad + pos: -55.5,10.5 parent: 2 - - uid: 3427 + - uid: 3664 components: - type: Transform - pos: -35.5,-23.5 + rot: 1.5707963267948966 rad + pos: -53.5,11.5 parent: 2 - - uid: 3428 + - uid: 3667 components: - type: Transform - pos: -31.5,-23.5 + rot: 1.5707963267948966 rad + pos: -52.5,11.5 parent: 2 - - uid: 3429 + - uid: 3668 components: - type: Transform - pos: -26.5,-34.5 + rot: 1.5707963267948966 rad + pos: -51.5,11.5 parent: 2 - - uid: 3430 + - uid: 3671 components: - type: Transform - pos: -27.5,-34.5 + rot: 1.5707963267948966 rad + pos: -51.5,9.5 parent: 2 - - uid: 3432 + - uid: 3746 components: - type: Transform - pos: -29.5,-34.5 + rot: 1.5707963267948966 rad + pos: -51.5,14.5 parent: 2 - - uid: 3435 + - uid: 3749 components: - type: Transform - pos: -32.5,-34.5 + rot: 1.5707963267948966 rad + pos: -50.5,14.5 parent: 2 - - uid: 3436 + - uid: 3762 components: - type: Transform - pos: -33.5,-34.5 + rot: 1.5707963267948966 rad + pos: -44.5,14.5 parent: 2 - - uid: 3437 + - uid: 3765 components: - type: Transform - pos: -35.5,-34.5 + rot: 1.5707963267948966 rad + pos: -55.5,-6.5 parent: 2 - - uid: 3438 + - uid: 3791 components: - type: Transform - pos: -36.5,-34.5 + rot: 1.5707963267948966 rad + pos: -55.5,-9.5 parent: 2 - - uid: 3440 + - uid: 3792 components: - type: Transform - pos: -38.5,-34.5 + rot: 1.5707963267948966 rad + pos: -55.5,-12.5 parent: 2 - - uid: 3441 + - uid: 3794 components: - type: Transform - pos: -41.5,-32.5 + rot: 1.5707963267948966 rad + pos: -55.5,-15.5 parent: 2 - - uid: 3442 + - uid: 3854 components: - type: Transform - pos: -41.5,-33.5 + rot: 1.5707963267948966 rad + pos: -55.5,-16.5 parent: 2 - - uid: 3444 + - uid: 3855 components: - type: Transform - pos: -40.5,-34.5 + rot: 1.5707963267948966 rad + pos: -55.5,-18.5 parent: 2 - - uid: 3446 + - uid: 3914 components: - type: Transform - pos: -29.5,-37.5 + rot: 1.5707963267948966 rad + pos: -55.5,-20.5 parent: 2 - - uid: 3447 + - uid: 3920 components: - type: Transform - pos: -29.5,-38.5 + rot: 1.5707963267948966 rad + pos: -55.5,-19.5 parent: 2 - - uid: 3449 + - uid: 3923 components: - type: Transform - pos: -26.5,-40.5 + pos: 36.5,-31.5 parent: 2 - - uid: 3455 + - uid: 3924 components: - type: Transform - pos: -28.5,-40.5 + rot: 1.5707963267948966 rad + pos: 50.5,-27.5 parent: 2 - - uid: 3457 + - uid: 3926 components: - type: Transform - pos: -20.5,-40.5 + rot: 1.5707963267948966 rad + pos: 34.5,-31.5 parent: 2 - - uid: 3458 + - uid: 3928 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,20.5 + rot: 1.5707963267948966 rad + pos: 38.5,-31.5 parent: 2 - - uid: 3567 + - uid: 3934 components: - type: Transform - pos: -22.5,-40.5 + rot: 1.5707963267948966 rad + pos: 46.5,-29.5 parent: 2 - - uid: 3581 + - uid: 3936 components: - type: Transform - pos: -18.5,-40.5 + rot: 1.5707963267948966 rad + pos: 46.5,-30.5 parent: 2 - - uid: 3685 + - uid: 3937 components: - type: Transform - pos: -17.5,-39.5 + rot: 1.5707963267948966 rad + pos: 45.5,-31.5 parent: 2 - - uid: 3686 + - uid: 3938 components: - type: Transform - pos: -17.5,-38.5 + rot: 1.5707963267948966 rad + pos: 43.5,-31.5 parent: 2 - - uid: 3688 + - uid: 3941 components: - type: Transform - pos: -17.5,-36.5 + rot: 1.5707963267948966 rad + pos: 42.5,-31.5 parent: 2 - - uid: 3689 + - uid: 3942 components: - type: Transform - pos: -17.5,-35.5 + rot: 1.5707963267948966 rad + pos: 40.5,-31.5 parent: 2 - - uid: 3690 + - uid: 3943 components: - type: Transform - pos: -17.5,-34.5 + rot: 1.5707963267948966 rad + pos: 50.5,-29.5 parent: 2 - - uid: 3693 + - uid: 3944 components: - type: Transform - pos: -31.5,-40.5 + rot: 1.5707963267948966 rad + pos: 50.5,-30.5 parent: 2 - - uid: 3694 + - uid: 3949 components: - type: Transform - pos: -32.5,-40.5 + rot: 1.5707963267948966 rad + pos: 50.5,-31.5 parent: 2 - - uid: 3751 + - uid: 3954 components: - type: Transform - pos: -34.5,-36.5 + rot: 1.5707963267948966 rad + pos: 50.5,-32.5 parent: 2 - - uid: 3757 + - uid: 3956 components: - type: Transform - pos: -33.5,-36.5 + rot: 1.5707963267948966 rad + pos: 50.5,-37.5 parent: 2 - - uid: 3758 + - uid: 3969 components: - type: Transform - pos: -34.5,-40.5 + rot: 1.5707963267948966 rad + pos: 30.5,-32.5 parent: 2 - - uid: 3759 + - uid: 3972 components: - type: Transform - pos: -34.5,-39.5 + rot: 1.5707963267948966 rad + pos: 30.5,-34.5 parent: 2 - - uid: 3764 + - uid: 3973 components: - type: Transform - pos: -34.5,-38.5 + rot: 1.5707963267948966 rad + pos: 49.5,-39.5 parent: 2 - - uid: 3770 + - uid: 4018 components: - type: Transform - pos: -45.5,-9.5 + rot: 1.5707963267948966 rad + pos: 30.5,-37.5 parent: 2 - - uid: 3772 + - uid: 4019 components: - type: Transform - pos: -46.5,-9.5 + rot: 1.5707963267948966 rad + pos: 31.5,-39.5 parent: 2 - - uid: 3776 + - uid: 4138 components: - type: Transform - pos: -47.5,-9.5 + rot: 1.5707963267948966 rad + pos: 46.5,-32.5 parent: 2 - - uid: 3778 + - uid: 4141 components: - type: Transform - pos: -48.5,-9.5 + rot: 1.5707963267948966 rad + pos: 34.5,-32.5 parent: 2 - - uid: 3801 + - uid: 4183 components: - type: Transform - pos: -50.5,-9.5 + rot: 1.5707963267948966 rad + pos: 25.5,-34.5 parent: 2 - - uid: 3809 + - uid: 4192 components: - type: Transform - pos: -51.5,-9.5 + rot: 1.5707963267948966 rad + pos: 28.5,-34.5 parent: 2 - - uid: 3838 + - uid: 4197 components: - type: Transform - pos: -51.5,-8.5 + rot: 1.5707963267948966 rad + pos: 22.5,22.5 parent: 2 - - uid: 3840 + - uid: 4201 components: - type: Transform - pos: -51.5,-6.5 + rot: 1.5707963267948966 rad + pos: 22.5,8.5 parent: 2 - - uid: 3842 + - uid: 4244 components: - type: Transform - pos: -50.5,-11.5 + rot: 1.5707963267948966 rad + pos: 22.5,6.5 parent: 2 - - uid: 3845 + - uid: 4266 components: - type: Transform - pos: -48.5,-11.5 + rot: 1.5707963267948966 rad + pos: 44.5,-8.5 parent: 2 - - uid: 3850 + - uid: 4269 components: - type: Transform - pos: -46.5,-13.5 + rot: 1.5707963267948966 rad + pos: 34.5,5.5 parent: 2 - - uid: 3852 + - uid: 4273 components: - type: Transform - pos: 18.5,13.5 + rot: 1.5707963267948966 rad + pos: 31.5,5.5 parent: 2 - - uid: 4065 + - uid: 4314 components: - type: Transform - pos: 18.5,12.5 + rot: 1.5707963267948966 rad + pos: 28.5,5.5 parent: 2 - - uid: 4066 + - uid: 4315 components: - type: Transform - pos: -46.5,-16.5 + rot: 1.5707963267948966 rad + pos: 51.5,-21.5 parent: 2 - - uid: 4177 + - uid: 4317 components: - type: Transform - pos: -46.5,-18.5 + rot: 1.5707963267948966 rad + pos: 61.5,-2.5 parent: 2 - - uid: 4179 + - uid: 4441 components: - type: Transform - pos: -51.5,-18.5 + rot: 1.5707963267948966 rad + pos: 59.5,-2.5 parent: 2 - - uid: 4180 + - uid: 4450 components: - type: Transform - pos: -45.5,-12.5 + rot: 1.5707963267948966 rad + pos: 39.5,5.5 parent: 2 - - uid: 4185 + - uid: 4474 components: - type: Transform - pos: -51.5,-15.5 + rot: 1.5707963267948966 rad + pos: -64.5,-29.5 parent: 2 - - uid: 4203 + - uid: 4482 components: - type: Transform - pos: -51.5,-32.5 + rot: 1.5707963267948966 rad + pos: -64.5,-22.5 parent: 2 - - uid: 4205 + - uid: 4483 components: - type: Transform - pos: -52.5,-31.5 + rot: 1.5707963267948966 rad + pos: -64.5,-21.5 parent: 2 - - uid: 4206 + - uid: 4486 components: - type: Transform - pos: -52.5,-30.5 + rot: 1.5707963267948966 rad + pos: -61.5,-21.5 parent: 2 - - uid: 4207 + - uid: 4489 components: - type: Transform - pos: -52.5,-29.5 + rot: 1.5707963267948966 rad + pos: -59.5,-20.5 parent: 2 - - uid: 4208 + - uid: 4491 components: - type: Transform - pos: -52.5,-28.5 + rot: 1.5707963267948966 rad + pos: -57.5,-20.5 parent: 2 - - uid: 4210 + - uid: 4660 components: - type: Transform - pos: -52.5,-26.5 + rot: 1.5707963267948966 rad + pos: -35.5,-46.5 parent: 2 - - uid: 4212 + - uid: 4663 components: - type: Transform - pos: -52.5,-23.5 + rot: 1.5707963267948966 rad + pos: -4.5,25.5 parent: 2 - - uid: 4220 + - uid: 4664 components: - type: Transform - pos: -52.5,-22.5 + rot: 1.5707963267948966 rad + pos: -4.5,26.5 parent: 2 - - uid: 4223 + - uid: 4668 components: - type: Transform - pos: -43.5,-12.5 + rot: 1.5707963267948966 rad + pos: -3.5,26.5 parent: 2 - - uid: 4229 + - uid: 4670 components: - type: Transform - pos: 50.5,-17.5 + rot: 1.5707963267948966 rad + pos: -10.5,32.5 parent: 2 - - uid: 4233 + - uid: 4672 components: - type: Transform - pos: 49.5,-17.5 + rot: 1.5707963267948966 rad + pos: 0.5,26.5 parent: 2 - - uid: 4238 + - uid: 4674 components: - type: Transform - pos: 18.5,17.5 + rot: 1.5707963267948966 rad + pos: -3.5,35.5 parent: 2 - - uid: 4242 + - uid: 4677 components: - type: Transform - pos: 18.5,10.5 + rot: 1.5707963267948966 rad + pos: -8.5,25.5 parent: 2 - - uid: 4243 + - uid: 4679 components: - type: Transform - pos: 18.5,9.5 + rot: 1.5707963267948966 rad + pos: -8.5,23.5 parent: 2 - - uid: 4289 + - uid: 4680 components: - type: Transform - pos: 18.5,7.5 + rot: 1.5707963267948966 rad + pos: -3.5,30.5 parent: 2 - - uid: 4290 + - uid: 4684 components: - type: Transform - pos: 18.5,6.5 + rot: 1.5707963267948966 rad + pos: -12.5,25.5 parent: 2 - - uid: 4297 + - uid: 4686 components: - type: Transform - pos: 18.5,5.5 + rot: 1.5707963267948966 rad + pos: -12.5,23.5 parent: 2 - - uid: 4299 + - uid: 4691 components: - type: Transform - pos: 18.5,3.5 + rot: 1.5707963267948966 rad + pos: -16.5,25.5 parent: 2 - - uid: 4300 + - uid: 4692 components: - type: Transform - pos: 18.5,2.5 + rot: 1.5707963267948966 rad + pos: -16.5,24.5 parent: 2 - - uid: 4301 + - uid: 4707 components: - type: Transform - pos: 18.5,1.5 + rot: 1.5707963267948966 rad + pos: -10.5,31.5 parent: 2 - - uid: 4303 + - uid: 4708 components: - type: Transform - pos: 39.5,1.5 + rot: 1.5707963267948966 rad + pos: -10.5,34.5 parent: 2 - - uid: 4308 + - uid: 4713 components: - type: Transform - pos: 40.5,0.5 + rot: 1.5707963267948966 rad + pos: 1.5,36.5 parent: 2 - - uid: 4350 + - uid: 4714 components: - type: Transform - pos: 40.5,-6.5 + rot: 1.5707963267948966 rad + pos: 0.5,27.5 parent: 2 - - uid: 4413 + - uid: 4715 components: - type: Transform - pos: 40.5,-8.5 + rot: 1.5707963267948966 rad + pos: 1.5,35.5 parent: 2 - - uid: 4433 + - uid: 4722 components: - type: Transform - pos: 40.5,-9.5 + rot: 1.5707963267948966 rad + pos: 6.5,27.5 parent: 2 - - uid: 4435 + - uid: 4724 components: - type: Transform - pos: 40.5,-11.5 + rot: 1.5707963267948966 rad + pos: 6.5,24.5 parent: 2 - - uid: 4436 + - uid: 4741 components: - type: Transform - pos: 39.5,-11.5 + rot: 1.5707963267948966 rad + pos: 10.5,28.5 parent: 2 - - uid: 4438 + - uid: 4743 components: - type: Transform - pos: 44.5,-11.5 + rot: 1.5707963267948966 rad + pos: 7.5,29.5 parent: 2 - - uid: 4440 + - uid: 4748 components: - type: Transform - pos: 44.5,-9.5 + rot: 1.5707963267948966 rad + pos: 6.5,29.5 parent: 2 - - uid: 4448 + - uid: 4757 components: - type: Transform - pos: 61.5,7.5 + rot: 1.5707963267948966 rad + pos: -0.5,26.5 parent: 2 - - uid: 4449 + - uid: 4771 components: - type: Transform - pos: 37.5,-5.5 + rot: 1.5707963267948966 rad + pos: -20.5,33.5 parent: 2 - - uid: 4451 + - uid: 4773 components: - type: Transform - pos: 39.5,-5.5 + rot: 1.5707963267948966 rad + pos: -15.5,30.5 parent: 2 - - uid: 4452 + - uid: 4775 components: - type: Transform - pos: -15.5,-33.5 + rot: 1.5707963267948966 rad + pos: -14.5,30.5 parent: 2 - - uid: 4453 + - uid: 4786 components: - type: Transform - pos: 51.5,-17.5 + rot: 1.5707963267948966 rad + pos: -16.5,29.5 parent: 2 - - uid: 4454 + - uid: 4790 components: - type: Transform - pos: 40.5,-4.5 + rot: 1.5707963267948966 rad + pos: 1.5,29.5 parent: 2 - - uid: 4457 + - uid: 4806 components: - type: Transform - pos: -57.5,-23.5 + rot: 1.5707963267948966 rad + pos: -11.5,25.5 parent: 2 - - uid: 4459 + - uid: 4811 components: - type: Transform - pos: -57.5,-25.5 + rot: 1.5707963267948966 rad + pos: -29.5,24.5 parent: 2 - - uid: 4468 + - uid: 4814 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,20.5 + rot: 1.5707963267948966 rad + pos: -26.5,24.5 parent: 2 - - uid: 4471 + - uid: 4816 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,20.5 + rot: 1.5707963267948966 rad + pos: -24.5,24.5 parent: 2 - - uid: 4731 + - uid: 4817 components: - type: Transform - pos: -53.5,-30.5 + rot: 1.5707963267948966 rad + pos: -23.5,24.5 parent: 2 - - uid: 4736 + - uid: 4818 components: - type: Transform - pos: -55.5,-30.5 + rot: 1.5707963267948966 rad + pos: -23.5,25.5 parent: 2 - - uid: 4780 + - uid: 4821 components: - type: Transform - pos: -57.5,-30.5 + rot: 1.5707963267948966 rad + pos: -19.5,24.5 parent: 2 - - uid: 4793 + - uid: 4823 components: - type: Transform - pos: -57.5,-29.5 + rot: 1.5707963267948966 rad + pos: -18.5,30.5 parent: 2 - - uid: 4808 + - uid: 4826 components: - type: Transform - pos: -58.5,-23.5 + rot: 1.5707963267948966 rad + pos: -20.5,30.5 parent: 2 - - uid: 4815 + - uid: 4827 components: - type: Transform - pos: -60.5,-23.5 + rot: 1.5707963267948966 rad + pos: -21.5,30.5 parent: 2 - - uid: 4836 + - uid: 4830 components: - type: Transform - pos: -62.5,-24.5 + rot: 1.5707963267948966 rad + pos: -21.5,27.5 parent: 2 - - uid: 4859 + - uid: 4831 components: - type: Transform - pos: -62.5,-25.5 + rot: 1.5707963267948966 rad + pos: -21.5,26.5 parent: 2 - - uid: 4861 + - uid: 4832 components: - type: Transform - pos: -62.5,-26.5 + rot: 1.5707963267948966 rad + pos: -21.5,25.5 parent: 2 - - uid: 4898 + - uid: 4837 components: - type: Transform - pos: -62.5,-28.5 + rot: 1.5707963267948966 rad + pos: -23.5,29.5 parent: 2 - - uid: 4901 + - uid: 4839 components: - type: Transform - pos: -61.5,-29.5 + rot: 1.5707963267948966 rad + pos: -5.5,35.5 parent: 2 - - uid: 4902 + - uid: 4840 components: - type: Transform - pos: -60.5,-29.5 + rot: 1.5707963267948966 rad + pos: -6.5,35.5 parent: 2 - - uid: 4904 + - uid: 4842 components: - type: Transform - pos: -58.5,-29.5 + rot: 1.5707963267948966 rad + pos: -8.5,35.5 parent: 2 - - uid: 4916 + - uid: 4844 components: - type: Transform - pos: -47.5,-11.5 + rot: 1.5707963267948966 rad + pos: -10.5,35.5 parent: 2 - - uid: 4921 + - uid: 4847 components: - type: Transform - pos: 8.5,24.5 + rot: 1.5707963267948966 rad + pos: -15.5,33.5 parent: 2 - - uid: 4922 + - uid: 4850 components: - type: Transform - pos: 10.5,25.5 + rot: 1.5707963267948966 rad + pos: -12.5,35.5 parent: 2 - - uid: 5024 + - uid: 4852 components: - type: Transform - pos: -41.5,15.5 + rot: 1.5707963267948966 rad + pos: -13.5,35.5 parent: 2 - - uid: 5044 + - uid: 4854 components: - type: Transform - pos: -41.5,17.5 + rot: 1.5707963267948966 rad + pos: -18.5,32.5 parent: 2 - - uid: 5129 + - uid: 4858 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,14.5 + rot: 1.5707963267948966 rad + pos: -23.5,31.5 parent: 2 - - uid: 5130 + - uid: 4863 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,37.5 + rot: 1.5707963267948966 rad + pos: -18.5,31.5 parent: 2 - - uid: 5133 + - uid: 4864 components: - type: Transform - pos: -3.5,36.5 + rot: 1.5707963267948966 rad + pos: -15.5,34.5 parent: 2 - - uid: 5207 + - uid: 4866 components: - type: Transform - pos: 0.5,38.5 + rot: 1.5707963267948966 rad + pos: -17.5,34.5 parent: 2 - - uid: 5435 + - uid: 4867 components: - type: Transform - pos: 9.5,25.5 + rot: 1.5707963267948966 rad + pos: -18.5,34.5 parent: 2 - - uid: 5438 + - uid: 4881 components: - type: Transform - pos: 12.5,26.5 + rot: 1.5707963267948966 rad + pos: -7.5,25.5 parent: 2 - - uid: 5652 + - uid: 4883 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,16.5 + rot: 1.5707963267948966 rad + pos: -20.5,35.5 parent: 2 - - uid: 5766 + - uid: 4886 components: - type: Transform - pos: 12.5,25.5 + rot: 1.5707963267948966 rad + pos: -64.5,-32.5 parent: 2 - - uid: 5781 + - uid: 4888 components: - type: Transform - pos: -21.5,-42.5 + rot: 1.5707963267948966 rad + pos: -17.5,37.5 parent: 2 - - uid: 5782 + - uid: 4896 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,37.5 + rot: 1.5707963267948966 rad + pos: 8.5,31.5 parent: 2 - - uid: 5790 + - uid: 4897 components: - type: Transform - pos: -54.5,-32.5 + rot: 1.5707963267948966 rad + pos: 8.5,30.5 parent: 2 - - uid: 5792 + - uid: 4899 components: - type: Transform - pos: -56.5,-32.5 + rot: 1.5707963267948966 rad + pos: 10.5,30.5 parent: 2 - - uid: 5798 + - uid: 4908 components: - type: Transform - pos: -27.5,-42.5 + rot: 1.5707963267948966 rad + pos: 3.5,34.5 parent: 2 - - uid: 5799 + - uid: 4909 components: - type: Transform - pos: -28.5,-42.5 + rot: 1.5707963267948966 rad + pos: 6.5,34.5 parent: 2 - - uid: 5800 + - uid: 4910 components: - type: Transform rot: 1.5707963267948966 rad - pos: -33.5,-42.5 + pos: 5.5,34.5 parent: 2 - - uid: 5808 + - uid: 4911 components: - type: Transform - pos: -31.5,-42.5 + rot: 1.5707963267948966 rad + pos: 7.5,34.5 parent: 2 - - uid: 5950 + - uid: 4912 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,16.5 + rot: 1.5707963267948966 rad + pos: 8.5,34.5 parent: 2 - - uid: 6050 + - uid: 4913 components: - type: Transform - pos: -64.5,-23.5 + rot: 1.5707963267948966 rad + pos: 1.5,34.5 parent: 2 - - uid: 6064 + - uid: 4927 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,38.5 + rot: 1.5707963267948966 rad + pos: -28.5,33.5 parent: 2 - - uid: 6080 + - uid: 4937 components: - type: Transform - pos: -49.5,-33.5 + rot: 1.5707963267948966 rad + pos: 10.5,38.5 parent: 2 - - uid: 6082 + - uid: 4939 components: - type: Transform - pos: -50.5,-35.5 + rot: 1.5707963267948966 rad + pos: 3.5,36.5 parent: 2 - - uid: 6085 + - uid: 4941 components: - type: Transform - pos: -45.5,-33.5 + rot: 1.5707963267948966 rad + pos: 5.5,36.5 parent: 2 - - uid: 6095 + - uid: 4943 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,38.5 + rot: 1.5707963267948966 rad + pos: 7.5,36.5 parent: 2 - - uid: 6098 + - uid: 4944 components: - type: Transform - pos: -45.5,-34.5 + rot: 1.5707963267948966 rad + pos: 9.5,36.5 parent: 2 - - uid: 6127 + - uid: 4953 components: - type: Transform - pos: -50.5,-33.5 + rot: 1.5707963267948966 rad + pos: 8.5,27.5 parent: 2 - - uid: 6158 + - uid: 4955 components: - type: Transform - pos: -44.5,-32.5 + rot: 1.5707963267948966 rad + pos: 10.5,27.5 parent: 2 - - uid: 6484 + - uid: 4968 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,14.5 + rot: 1.5707963267948966 rad + pos: 2.5,29.5 parent: 2 - - uid: 6485 + - uid: 4974 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,12.5 + rot: 1.5707963267948966 rad + pos: 1.5,32.5 parent: 2 - - uid: 6489 + - uid: 4975 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,10.5 + rot: 1.5707963267948966 rad + pos: 0.5,32.5 parent: 2 - - uid: 6493 + - uid: 4976 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,17.5 + rot: 1.5707963267948966 rad + pos: 0.5,34.5 parent: 2 - - uid: 6496 + - uid: 5002 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,22.5 + rot: 1.5707963267948966 rad + pos: -9.5,37.5 parent: 2 - - uid: 6498 + - uid: 5004 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,11.5 + rot: 1.5707963267948966 rad + pos: -7.5,37.5 parent: 2 - - uid: 6499 + - uid: 5005 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,24.5 + rot: 1.5707963267948966 rad + pos: 4.5,40.5 parent: 2 - - uid: 6500 + - uid: 5008 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,24.5 + rot: 1.5707963267948966 rad + pos: 0.5,39.5 parent: 2 - - uid: 6525 + - uid: 5011 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-2.5 + rot: 1.5707963267948966 rad + pos: -3.5,39.5 parent: 2 - - uid: 6544 + - uid: 5012 components: - type: Transform - pos: -15.5,-36.5 + rot: 1.5707963267948966 rad + pos: -2.5,39.5 parent: 2 - - uid: 6553 + - uid: 5113 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-5.5 + rot: 1.5707963267948966 rad + pos: -1.5,44.5 parent: 2 - - uid: 6571 + - uid: 5125 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,0.5 + rot: 1.5707963267948966 rad + pos: 4.5,43.5 parent: 2 - - uid: 6618 + - uid: 5126 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,-2.5 + rot: 1.5707963267948966 rad + pos: 4.5,42.5 parent: 2 - - uid: 6619 + - uid: 5136 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-5.5 + rot: 1.5707963267948966 rad + pos: -7.5,43.5 parent: 2 - - uid: 6620 + - uid: 5137 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-5.5 + rot: 1.5707963267948966 rad + pos: -7.5,44.5 parent: 2 - - uid: 6624 + - uid: 5140 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-6.5 + rot: 1.5707963267948966 rad + pos: -7.5,46.5 parent: 2 - - uid: 6627 + - uid: 5142 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-5.5 + rot: 1.5707963267948966 rad + pos: -7.5,48.5 parent: 2 - - uid: 6635 + - uid: 5143 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-2.5 + rot: 1.5707963267948966 rad + pos: 4.5,45.5 parent: 2 - - uid: 6802 + - uid: 5145 components: - type: Transform - pos: -19.5,16.5 + rot: 1.5707963267948966 rad + pos: 4.5,47.5 parent: 2 - - uid: 6899 + - uid: 5176 components: - type: Transform - pos: -20.5,16.5 + rot: 1.5707963267948966 rad + pos: -7.5,49.5 parent: 2 - - uid: 6936 + - uid: 5177 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,28.5 + rot: 1.5707963267948966 rad + pos: -6.5,49.5 parent: 2 - - uid: 6943 + - uid: 5178 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,31.5 + rot: 1.5707963267948966 rad + pos: -5.5,49.5 parent: 2 - - uid: 6958 + - uid: 5184 components: - type: Transform - pos: 1.5,41.5 + rot: 1.5707963267948966 rad + pos: -4.5,50.5 parent: 2 - - uid: 6973 + - uid: 5186 components: - type: Transform - pos: -44.5,-35.5 + rot: 1.5707963267948966 rad + pos: -4.5,52.5 parent: 2 - - uid: 6975 + - uid: 5187 components: - type: Transform - pos: 45.5,-11.5 + rot: 1.5707963267948966 rad + pos: -4.5,53.5 parent: 2 - - uid: 6986 + - uid: 5188 components: - type: Transform - pos: 54.5,-17.5 + rot: 1.5707963267948966 rad + pos: -3.5,54.5 parent: 2 - - uid: 6987 + - uid: 5191 components: - type: Transform - pos: 3.5,41.5 + rot: 1.5707963267948966 rad + pos: 3.5,53.5 parent: 2 - - uid: 6989 + - uid: 5192 components: - type: Transform - pos: -6.5,41.5 + rot: 1.5707963267948966 rad + pos: 4.5,53.5 parent: 2 - - uid: 6990 + - uid: 5194 components: - type: Transform - pos: -6.5,44.5 + rot: 1.5707963267948966 rad + pos: 4.5,50.5 parent: 2 - - uid: 6991 + - uid: 5195 components: - type: Transform - pos: 1.5,49.5 + rot: 1.5707963267948966 rad + pos: 4.5,49.5 parent: 2 - - uid: 6993 + - uid: 5282 components: - type: Transform - pos: 3.5,49.5 + rot: 1.5707963267948966 rad + pos: -7.5,39.5 parent: 2 - - uid: 7005 + - uid: 5284 components: - type: Transform - pos: 45.5,-13.5 + rot: 1.5707963267948966 rad + pos: -5.5,39.5 parent: 2 - - uid: 7014 + - uid: 5295 components: - type: Transform - pos: 12.5,34.5 + rot: 1.5707963267948966 rad + pos: 39.5,6.5 parent: 2 - - uid: 7024 + - uid: 5378 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,36.5 + pos: 10.5,33.5 parent: 2 - - uid: 7027 + - uid: 5423 components: - type: Transform - pos: 52.5,-17.5 + rot: 1.5707963267948966 rad + pos: 23.5,16.5 parent: 2 - - uid: 7184 + - uid: 5433 components: - type: Transform - pos: 55.5,-17.5 + rot: 1.5707963267948966 rad + pos: 10.5,35.5 parent: 2 - - uid: 7229 + - uid: 5451 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,0.5 + rot: 1.5707963267948966 rad + pos: 24.5,9.5 parent: 2 - - uid: 7444 + - uid: 5455 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-5.5 + rot: 1.5707963267948966 rad + pos: -44.5,-37.5 parent: 2 - - uid: 7456 + - uid: 5470 components: - type: Transform - pos: 58.5,24.5 + rot: 1.5707963267948966 rad + pos: 32.5,16.5 parent: 2 - - uid: 7465 + - uid: 5477 components: - type: Transform - pos: 62.5,24.5 + rot: 1.5707963267948966 rad + pos: 32.5,23.5 parent: 2 - - uid: 7469 + - uid: 5485 components: - type: Transform - pos: 49.5,19.5 + rot: 1.5707963267948966 rad + pos: 34.5,16.5 parent: 2 - - uid: 7471 + - uid: 5490 components: - type: Transform - pos: 48.5,19.5 + rot: 1.5707963267948966 rad + pos: 35.5,7.5 parent: 2 - - uid: 7473 + - uid: 5494 components: - type: Transform - pos: 66.5,-1.5 + rot: 1.5707963267948966 rad + pos: 32.5,11.5 parent: 2 - - uid: 7481 + - uid: 5496 components: - type: Transform - rot: 3.141592653589793 rad - pos: 86.5,-14.5 + rot: 1.5707963267948966 rad + pos: 34.5,11.5 parent: 2 - - uid: 7484 + - uid: 5497 components: - type: Transform - rot: 3.141592653589793 rad - pos: 86.5,-16.5 + rot: 1.5707963267948966 rad + pos: 32.5,12.5 parent: 2 - - uid: 7489 + - uid: 5498 components: - type: Transform - rot: 3.141592653589793 rad - pos: 86.5,-17.5 + rot: 1.5707963267948966 rad + pos: 36.5,16.5 parent: 2 - - uid: 7495 + - uid: 5504 components: - type: Transform - pos: -53.5,-34.5 + rot: 1.5707963267948966 rad + pos: 37.5,21.5 parent: 2 - - uid: 7496 + - uid: 5506 components: - type: Transform - pos: 54.5,21.5 + rot: 1.5707963267948966 rad + pos: 37.5,23.5 parent: 2 - - uid: 7497 + - uid: 5508 components: - type: Transform - pos: 66.5,2.5 + rot: 1.5707963267948966 rad + pos: 22.5,24.5 parent: 2 - - uid: 7499 + - uid: 5513 components: - type: Transform - pos: 55.5,22.5 + rot: 1.5707963267948966 rad + pos: -56.5,-51.5 parent: 2 - - uid: 7501 + - uid: 5617 components: - type: Transform - pos: 54.5,19.5 + rot: 1.5707963267948966 rad + pos: 24.5,27.5 parent: 2 - - uid: 7502 + - uid: 5630 components: - type: Transform - pos: -53.5,-35.5 + rot: 1.5707963267948966 rad + pos: 38.5,14.5 parent: 2 - - uid: 7506 + - uid: 5631 components: - type: Transform - pos: 55.5,24.5 + rot: 1.5707963267948966 rad + pos: 38.5,13.5 parent: 2 - - uid: 7512 + - uid: 5633 components: - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,-8.5 + rot: 1.5707963267948966 rad + pos: 38.5,11.5 parent: 2 - - uid: 7515 + - uid: 5635 components: - type: Transform - pos: 66.5,4.5 + rot: 1.5707963267948966 rad + pos: 36.5,11.5 parent: 2 - - uid: 7537 + - uid: 5664 components: - type: Transform - rot: 3.141592653589793 rad - pos: 80.5,-8.5 + rot: 1.5707963267948966 rad + pos: 40.5,19.5 parent: 2 - - uid: 7539 + - uid: 5665 components: - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,-23.5 + rot: 1.5707963267948966 rad + pos: 40.5,16.5 parent: 2 - - uid: 7750 + - uid: 5666 components: - type: Transform - pos: 56.5,-17.5 + rot: 1.5707963267948966 rad + pos: 39.5,16.5 parent: 2 - - uid: 7906 + - uid: 5667 components: - type: Transform - pos: -9.5,-35.5 + rot: 1.5707963267948966 rad + pos: 40.5,17.5 parent: 2 - - uid: 7910 + - uid: 5742 components: - type: Transform - pos: -14.5,-35.5 + rot: 1.5707963267948966 rad + pos: 42.5,19.5 parent: 2 - - uid: 7920 + - uid: 5789 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,-37.5 + pos: 0.5,41.5 parent: 2 - - uid: 7931 + - uid: 5795 components: - type: Transform - pos: -12.5,-35.5 + rot: 1.5707963267948966 rad + pos: -36.5,-46.5 parent: 2 - - uid: 7950 + - uid: 5803 components: - type: Transform - pos: -8.5,-38.5 + rot: 1.5707963267948966 rad + pos: -16.5,-42.5 parent: 2 - - uid: 7994 + - uid: 5804 components: - type: Transform - pos: -8.5,-40.5 + rot: 1.5707963267948966 rad + pos: -15.5,-42.5 parent: 2 - - uid: 8173 + - uid: 5811 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,5.5 + rot: 1.5707963267948966 rad + pos: 54.5,-42.5 parent: 2 - - uid: 8176 + - uid: 5812 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,5.5 + rot: 1.5707963267948966 rad + pos: 53.5,-36.5 parent: 2 - - uid: 8178 + - uid: 5813 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,5.5 + rot: 1.5707963267948966 rad + pos: 53.5,-35.5 parent: 2 - - uid: 8179 + - uid: 5815 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,4.5 + rot: 1.5707963267948966 rad + pos: 53.5,-27.5 parent: 2 - - uid: 8180 + - uid: 5816 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,3.5 + rot: 1.5707963267948966 rad + pos: 53.5,-32.5 parent: 2 - - uid: 8181 + - uid: 5818 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,1.5 + rot: 1.5707963267948966 rad + pos: 53.5,-30.5 parent: 2 - - uid: 8223 + - uid: 5819 components: - type: Transform - pos: 16.5,24.5 + rot: 1.5707963267948966 rad + pos: -56.5,-44.5 parent: 2 - - uid: 8226 + - uid: 5822 components: - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,-21.5 + rot: 1.5707963267948966 rad + pos: 56.5,-36.5 parent: 2 - - uid: 8227 + - uid: 5825 components: - type: Transform - pos: 15.5,27.5 + rot: 1.5707963267948966 rad + pos: 59.5,-36.5 parent: 2 - - uid: 8229 + - uid: 5828 components: - type: Transform - pos: 13.5,27.5 + rot: 1.5707963267948966 rad + pos: 59.5,-33.5 parent: 2 - - uid: 8231 + - uid: 5830 components: - type: Transform - pos: 66.5,-4.5 + rot: 1.5707963267948966 rad + pos: 59.5,-31.5 parent: 2 - - uid: 8233 + - uid: 5831 components: - type: Transform - pos: 17.5,24.5 + rot: 1.5707963267948966 rad + pos: 59.5,-30.5 parent: 2 - - uid: 8234 + - uid: 5833 components: - type: Transform - rot: 3.141592653589793 rad - pos: 80.5,-21.5 + rot: 1.5707963267948966 rad + pos: 57.5,-30.5 parent: 2 - - uid: 8245 + - uid: 5835 components: - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,-21.5 + rot: 1.5707963267948966 rad + pos: 55.5,-30.5 parent: 2 - - uid: 9147 + - uid: 5836 components: - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,-21.5 + rot: 1.5707963267948966 rad + pos: 54.5,-30.5 parent: 2 - - uid: 9154 + - uid: 5838 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,27.5 + rot: 1.5707963267948966 rad + pos: 57.5,-31.5 parent: 2 - - uid: 10988 + - uid: 5843 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,26.5 + rot: 1.5707963267948966 rad + pos: 60.5,-31.5 parent: 2 - - uid: 11059 + - uid: 5845 components: - type: Transform - pos: -34.5,-4.5 + rot: 1.5707963267948966 rad + pos: 60.5,-33.5 parent: 2 - - uid: 11655 + - uid: 5846 components: - type: Transform - pos: 68.5,-4.5 + rot: 1.5707963267948966 rad + pos: 60.5,-34.5 parent: 2 - - uid: 11656 + - uid: 5847 components: - type: Transform - pos: 71.5,-4.5 + rot: 1.5707963267948966 rad + pos: 60.5,-35.5 parent: 2 - - uid: 12571 + - uid: 5850 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,24.5 + rot: 1.5707963267948966 rad + pos: 59.5,-37.5 parent: 2 - - uid: 12603 + - uid: 5852 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,22.5 + rot: 1.5707963267948966 rad + pos: 57.5,-37.5 parent: 2 - - uid: 13177 + - uid: 5854 components: - type: Transform - pos: -34.5,-1.5 + rot: 1.5707963267948966 rad + pos: 55.5,-37.5 parent: 2 - - uid: 13745 + - uid: 5855 components: - type: Transform - pos: -15.5,17.5 + rot: 1.5707963267948966 rad + pos: 54.5,-37.5 parent: 2 - - uid: 13983 + - uid: 5860 components: - type: Transform - pos: -42.5,-32.5 + rot: 1.5707963267948966 rad + pos: 53.5,-25.5 parent: 2 - - uid: 14402 + - uid: 5867 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,18.5 + rot: 1.5707963267948966 rad + pos: 58.5,-24.5 parent: 2 - - uid: 14695 + - uid: 5868 components: - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,-30.5 + rot: 1.5707963267948966 rad + pos: 59.5,-24.5 parent: 2 - - uid: 14704 + - uid: 5870 components: - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,-27.5 + rot: 1.5707963267948966 rad + pos: 59.5,-26.5 parent: 2 - - uid: 14862 + - uid: 5871 components: - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,-22.5 + rot: 1.5707963267948966 rad + pos: 59.5,-27.5 parent: 2 - - uid: 14870 + - uid: 5873 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,18.5 + rot: 1.5707963267948966 rad + pos: 56.5,-39.5 parent: 2 - - uid: 15165 + - uid: 5876 components: - type: Transform rot: 1.5707963267948966 rad - pos: -37.5,-5.5 + pos: 56.5,-41.5 parent: 2 - - uid: 15173 + - uid: 5882 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,18.5 + rot: 1.5707963267948966 rad + pos: 54.5,-25.5 parent: 2 - - uid: 15201 + - uid: 5887 components: - type: Transform - pos: 70.5,-0.5 + rot: 1.5707963267948966 rad + pos: -56.5,-53.5 parent: 2 - - uid: 15203 + - uid: 5888 components: - type: Transform - pos: 67.5,-0.5 + rot: 1.5707963267948966 rad + pos: -38.5,-50.5 parent: 2 - - uid: 15210 + - uid: 5892 components: - type: Transform - pos: 70.5,3.5 + rot: 1.5707963267948966 rad + pos: 52.5,-43.5 parent: 2 - - uid: 15213 + - uid: 5918 components: - type: Transform - pos: 67.5,3.5 + rot: 1.5707963267948966 rad + pos: 39.5,8.5 parent: 2 - - uid: 16085 + - uid: 5951 components: - type: Transform - pos: 59.5,26.5 + rot: 1.5707963267948966 rad + pos: 40.5,10.5 parent: 2 - - uid: 16150 + - uid: 5956 components: - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,-28.5 + rot: 1.5707963267948966 rad + pos: 40.5,11.5 parent: 2 - - uid: 16164 + - uid: 5957 components: - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,-8.5 + rot: 1.5707963267948966 rad + pos: 40.5,12.5 parent: 2 - - uid: 16186 + - uid: 5958 components: - type: Transform - pos: 51.5,19.5 + rot: 1.5707963267948966 rad + pos: -64.5,-20.5 parent: 2 - - uid: 16187 + - uid: 5961 components: - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,-30.5 + rot: 1.5707963267948966 rad + pos: 40.5,14.5 parent: 2 - - uid: 16188 + - uid: 5962 components: - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,-30.5 + rot: 1.5707963267948966 rad + pos: 12.5,38.5 parent: 2 - - uid: 16190 + - uid: 5972 components: - type: Transform - pos: 81.5,-26.5 + rot: 1.5707963267948966 rad + pos: 41.5,10.5 parent: 2 - - uid: 16345 + - uid: 5989 components: - type: Transform rot: 1.5707963267948966 rad - pos: -33.5,-43.5 + pos: 47.5,10.5 parent: 2 - - uid: 16350 + - uid: 5995 components: - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,-30.5 + rot: 1.5707963267948966 rad + pos: 48.5,10.5 parent: 2 - - uid: 16353 + - uid: 5999 components: - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,-30.5 + rot: 1.5707963267948966 rad + pos: 45.5,17.5 parent: 2 - - uid: 16379 + - uid: 6001 components: - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,-23.5 + rot: 1.5707963267948966 rad + pos: 46.5,17.5 parent: 2 - - uid: 16380 + - uid: 6002 components: - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,-22.5 + rot: 1.5707963267948966 rad + pos: 48.5,17.5 parent: 2 - - uid: 16384 + - uid: 6004 components: - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,-29.5 + rot: 1.5707963267948966 rad + pos: 48.5,16.5 parent: 2 - - uid: 16388 + - uid: 6005 components: - type: Transform - pos: 49.5,20.5 + rot: 1.5707963267948966 rad + pos: 48.5,14.5 parent: 2 - - uid: 16514 + - uid: 6007 components: - type: Transform - pos: 15.5,33.5 + rot: 1.5707963267948966 rad + pos: 48.5,12.5 parent: 2 - - uid: 16516 + - uid: 6009 components: - type: Transform - pos: 13.5,33.5 + rot: 1.5707963267948966 rad + pos: 51.5,16.5 parent: 2 - - uid: 17065 + - uid: 6044 components: - type: Transform - pos: -23.5,-42.5 + rot: 1.5707963267948966 rad + pos: 52.5,16.5 parent: 2 - - uid: 17066 + - uid: 6051 components: - type: Transform - pos: -25.5,-42.5 + rot: 1.5707963267948966 rad + pos: 52.5,15.5 parent: 2 - - uid: 20110 + - uid: 6052 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,-37.5 + pos: 45.5,19.5 parent: 2 - - uid: 20297 + - uid: 6053 components: - type: Transform - pos: 85.5,-21.5 + rot: 1.5707963267948966 rad + pos: -45.5,-38.5 parent: 2 - - uid: 20300 + - uid: 6076 components: - type: Transform - pos: 84.5,-22.5 + rot: 1.5707963267948966 rad + pos: 37.5,5.5 parent: 2 - - uid: 20791 + - uid: 6078 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,15.5 + rot: 1.5707963267948966 rad + pos: -50.5,-37.5 parent: 2 - - uid: 20907 + - uid: 6079 components: - type: Transform rot: 1.5707963267948966 rad - pos: -15.5,-38.5 + pos: -49.5,-37.5 parent: 2 - - uid: 20923 + - uid: 6081 components: - type: Transform rot: 1.5707963267948966 rad - pos: -32.5,-42.5 + pos: -45.5,-41.5 parent: 2 - - uid: 21035 + - uid: 6097 components: - type: Transform - pos: 81.5,-32.5 + rot: 1.5707963267948966 rad + pos: -45.5,-43.5 parent: 2 - - uid: 21042 + - uid: 6108 components: - type: Transform - pos: 80.5,-32.5 + rot: 1.5707963267948966 rad + pos: -49.5,-43.5 parent: 2 - - uid: 21940 + - uid: 6110 components: - type: Transform - pos: -29.5,-4.5 + rot: 1.5707963267948966 rad + pos: -49.5,-42.5 parent: 2 -- proto: WallSolidRust - entities: - - uid: 757 + - uid: 6111 components: - type: Transform - pos: -27.5,-43.5 + rot: 1.5707963267948966 rad + pos: -55.5,-43.5 parent: 2 - - uid: 766 + - uid: 6144 components: - type: Transform - pos: -25.5,-41.5 + rot: 1.5707963267948966 rad + pos: -38.5,-53.5 parent: 2 - - uid: 2704 + - uid: 6146 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,10.5 + pos: -38.5,-44.5 parent: 2 - - uid: 2706 + - uid: 6147 components: - type: Transform rot: 1.5707963267948966 rad - pos: 14.5,17.5 + pos: -39.5,-43.5 parent: 2 - - uid: 2708 + - uid: 6149 components: - type: Transform rot: 1.5707963267948966 rad - pos: 15.5,0.5 + pos: -42.5,-37.5 parent: 2 - - uid: 2709 + - uid: 6153 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,3.5 + pos: -19.5,37.5 parent: 2 - - uid: 2710 + - uid: 6154 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,5.5 + pos: -20.5,37.5 parent: 2 - - uid: 2714 + - uid: 6155 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,7.5 + pos: -37.5,-41.5 parent: 2 - - uid: 2717 + - uid: 6156 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,12.5 + pos: -39.5,-36.5 parent: 2 - - uid: 2720 + - uid: 6157 components: - type: Transform rot: 1.5707963267948966 rad - pos: 15.5,13.5 + pos: -37.5,-36.5 parent: 2 - - uid: 2721 + - uid: 6159 components: - type: Transform rot: 1.5707963267948966 rad - pos: 15.5,15.5 + pos: -38.5,-47.5 parent: 2 - - uid: 2723 + - uid: 6162 components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,15.5 + pos: -38.5,-48.5 parent: 2 - - uid: 2727 + - uid: 6163 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,15.5 + pos: -56.5,-48.5 parent: 2 - - uid: 2735 + - uid: 6164 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,15.5 + pos: -38.5,-55.5 parent: 2 - - uid: 2739 + - uid: 6168 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,15.5 + pos: -52.5,-57.5 parent: 2 - - uid: 2742 + - uid: 6169 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,15.5 + pos: -42.5,-54.5 parent: 2 - - uid: 2745 + - uid: 6171 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,15.5 + pos: -42.5,-48.5 parent: 2 - - uid: 2749 + - uid: 6172 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,15.5 + pos: -52.5,-49.5 parent: 2 - - uid: 2753 + - uid: 6175 components: - type: Transform rot: 1.5707963267948966 rad - pos: -12.5,15.5 + pos: -43.5,-49.5 parent: 2 - - uid: 2755 + - uid: 6176 components: - type: Transform rot: 1.5707963267948966 rad - pos: -14.5,15.5 + pos: -51.5,-49.5 parent: 2 - - uid: 2757 + - uid: 6177 components: - type: Transform rot: 1.5707963267948966 rad - pos: -14.5,13.5 + pos: -42.5,-50.5 parent: 2 - - uid: 2821 + - uid: 6202 components: - type: Transform rot: 1.5707963267948966 rad - pos: -14.5,10.5 + pos: -56.5,-55.5 parent: 2 - - uid: 2827 + - uid: 6210 components: - type: Transform rot: 1.5707963267948966 rad - pos: -13.5,-5.5 + pos: -56.5,-54.5 parent: 2 - - uid: 2829 + - uid: 6211 components: - type: Transform rot: 1.5707963267948966 rad - pos: -15.5,-10.5 + pos: -52.5,-54.5 parent: 2 - - uid: 2833 + - uid: 6213 components: - type: Transform rot: 1.5707963267948966 rad - pos: -16.5,-17.5 + pos: -52.5,-52.5 parent: 2 - - uid: 2834 + - uid: 6216 components: - type: Transform rot: 1.5707963267948966 rad - pos: -16.5,-18.5 + pos: -52.5,-53.5 parent: 2 - - uid: 2867 + - uid: 6217 components: - type: Transform rot: 1.5707963267948966 rad - pos: -16.5,-21.5 + pos: -42.5,-53.5 parent: 2 - - uid: 2870 + - uid: 6220 components: - type: Transform rot: 1.5707963267948966 rad - pos: -12.5,-21.5 + pos: -45.5,-44.5 parent: 2 - - uid: 2876 + - uid: 6226 components: - type: Transform rot: 1.5707963267948966 rad - pos: -12.5,-25.5 + pos: -55.5,-44.5 parent: 2 - - uid: 2878 + - uid: 6229 components: - type: Transform rot: 1.5707963267948966 rad - pos: -12.5,-27.5 + pos: -38.5,-51.5 parent: 2 - - uid: 2881 + - uid: 6239 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,0.5 + pos: -58.5,-54.5 parent: 2 - - uid: 2882 + - uid: 6240 components: - type: Transform rot: 1.5707963267948966 rad - pos: 26.5,0.5 + pos: -53.5,-57.5 parent: 2 - - uid: 2883 + - uid: 6242 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,0.5 + pos: -60.5,-54.5 parent: 2 - - uid: 2887 + - uid: 6243 components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,0.5 + pos: -37.5,-54.5 parent: 2 - - uid: 2891 + - uid: 6244 components: - type: Transform rot: 1.5707963267948966 rad - pos: 19.5,0.5 + pos: -36.5,-54.5 parent: 2 - - uid: 2893 + - uid: 6245 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,0.5 + pos: -34.5,-55.5 parent: 2 - - uid: 2897 + - uid: 6248 components: - type: Transform rot: 1.5707963267948966 rad - pos: -16.5,-5.5 + pos: -34.5,-54.5 parent: 2 - - uid: 2909 + - uid: 6249 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,6.5 + rot: 1.5707963267948966 rad + pos: -42.5,-56.5 parent: 2 - - uid: 2912 + - uid: 6250 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,8.5 + rot: 1.5707963267948966 rad + pos: -41.5,-57.5 parent: 2 - - uid: 2914 + - uid: 6252 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,-5.5 + pos: -52.5,-59.5 parent: 2 - - uid: 2916 + - uid: 6253 components: - type: Transform rot: 1.5707963267948966 rad - pos: -15.5,-7.5 + pos: -60.5,-56.5 parent: 2 - - uid: 2920 + - uid: 6256 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,17.5 + pos: -34.5,-57.5 parent: 2 - - uid: 2922 + - uid: 6257 components: - type: Transform rot: 1.5707963267948966 rad - pos: -15.5,18.5 + pos: -42.5,-59.5 parent: 2 - - uid: 2923 + - uid: 6260 components: - type: Transform rot: 1.5707963267948966 rad - pos: -16.5,-13.5 + pos: -54.5,-59.5 parent: 2 - - uid: 2924 + - uid: 6262 components: - type: Transform rot: 1.5707963267948966 rad - pos: -12.5,18.5 + pos: -42.5,-64.5 parent: 2 - - uid: 2929 + - uid: 6263 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,18.5 + pos: -41.5,-64.5 parent: 2 - - uid: 2930 + - uid: 6264 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,18.5 + pos: -52.5,-64.5 parent: 2 - - uid: 2965 + - uid: 6266 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,18.5 + pos: -52.5,-66.5 parent: 2 - - uid: 2970 + - uid: 6285 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,18.5 + pos: -53.5,-66.5 parent: 2 - - uid: 2988 + - uid: 6286 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,18.5 + rot: 1.5707963267948966 rad + pos: -42.5,-66.5 parent: 2 - - uid: 2990 + - uid: 6288 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,18.5 + pos: -40.5,-66.5 parent: 2 - - uid: 3024 + - uid: 6290 components: - type: Transform rot: 1.5707963267948966 rad - pos: -34.5,-7.5 + pos: -55.5,-66.5 parent: 2 - - uid: 3025 + - uid: 6296 components: - type: Transform rot: 1.5707963267948966 rad - pos: 14.5,18.5 + pos: -56.5,-66.5 parent: 2 - - uid: 3026 + - uid: 6297 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,-35.5 + pos: -58.5,-66.5 parent: 2 - - uid: 3036 + - uid: 6299 components: - type: Transform rot: 1.5707963267948966 rad - pos: 15.5,-34.5 + pos: -60.5,-66.5 parent: 2 - - uid: 3038 + - uid: 6301 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,-34.5 + pos: -60.5,-65.5 parent: 2 - - uid: 3039 + - uid: 6302 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,-34.5 + pos: -60.5,-63.5 parent: 2 - - uid: 3041 + - uid: 6304 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,-34.5 + pos: -60.5,-61.5 parent: 2 - - uid: 3046 + - uid: 6306 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,-32.5 + pos: -60.5,-58.5 parent: 2 - - uid: 3052 + - uid: 6308 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,-32.5 + pos: -34.5,-62.5 parent: 2 - - uid: 3067 + - uid: 6313 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,10.5 + pos: -34.5,-59.5 parent: 2 - - uid: 3071 + - uid: 6314 components: - type: Transform rot: 1.5707963267948966 rad - pos: -18.5,16.5 + pos: -34.5,-65.5 parent: 2 - - uid: 3072 + - uid: 6317 components: - type: Transform rot: 1.5707963267948966 rad - pos: -22.5,16.5 + pos: -34.5,-66.5 parent: 2 - - uid: 3075 + - uid: 6318 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,15.5 + pos: -36.5,-66.5 parent: 2 - - uid: 3077 + - uid: 6320 components: - type: Transform rot: 1.5707963267948966 rad - pos: -15.5,10.5 + pos: -37.5,-66.5 parent: 2 - - uid: 3079 + - uid: 6321 components: - type: Transform rot: 1.5707963267948966 rad - pos: -16.5,15.5 + pos: 46.5,-8.5 parent: 2 - - uid: 3080 + - uid: 6324 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,13.5 + pos: 21.5,-51.5 parent: 2 - - uid: 3082 + - uid: 6371 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-16.5 + pos: 23.5,-72.5 parent: 2 - - uid: 3086 + - uid: 6487 components: - type: Transform rot: 1.5707963267948966 rad - pos: -18.5,-7.5 + pos: 58.5,-8.5 parent: 2 - - uid: 3087 + - uid: 6488 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,-7.5 + pos: 56.5,-8.5 parent: 2 - - uid: 3117 + - uid: 6495 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,-24.5 + pos: 54.5,-8.5 parent: 2 - - uid: 3119 + - uid: 6502 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,-24.5 + pos: 50.5,-8.5 parent: 2 - - uid: 3120 + - uid: 6510 components: - type: Transform rot: 1.5707963267948966 rad - pos: -19.5,-24.5 + pos: 56.5,0.5 parent: 2 - - uid: 3125 + - uid: 6524 components: - type: Transform rot: 1.5707963267948966 rad - pos: -22.5,-24.5 + pos: 52.5,12.5 parent: 2 - - uid: 3127 + - uid: 6527 components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,-28.5 + pos: 62.5,10.5 parent: 2 - - uid: 3128 + - uid: 6528 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,-28.5 + pos: 54.5,-15.5 parent: 2 - - uid: 3130 + - uid: 6529 components: - type: Transform rot: 1.5707963267948966 rad - pos: -18.5,-28.5 + pos: 56.5,-0.5 parent: 2 - - uid: 3132 + - uid: 6542 components: - type: Transform rot: 1.5707963267948966 rad - pos: -14.5,-32.5 + pos: 52.5,13.5 parent: 2 - - uid: 3137 + - uid: 6563 components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,-32.5 + pos: 58.5,5.5 parent: 2 - - uid: 3138 + - uid: 6623 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,-32.5 + pos: 58.5,0.5 parent: 2 - - uid: 3139 + - uid: 6628 components: - type: Transform rot: 1.5707963267948966 rad - pos: -26.5,-7.5 + pos: 57.5,7.5 parent: 2 - - uid: 3142 + - uid: 6631 components: - type: Transform rot: 1.5707963267948966 rad - pos: -26.5,-9.5 + pos: 57.5,9.5 parent: 2 - - uid: 3143 + - uid: 6633 components: - type: Transform rot: 1.5707963267948966 rad - pos: -26.5,-10.5 + pos: 57.5,11.5 parent: 2 - - uid: 3145 + - uid: 6639 components: - type: Transform rot: 1.5707963267948966 rad - pos: -31.5,-7.5 + pos: 57.5,13.5 parent: 2 - - uid: 3148 + - uid: 6641 components: - type: Transform rot: 1.5707963267948966 rad - pos: -26.5,-16.5 + pos: 54.5,13.5 parent: 2 - - uid: 3151 + - uid: 6643 components: - type: Transform rot: 1.5707963267948966 rad - pos: -26.5,-19.5 + pos: 59.5,9.5 parent: 2 - - uid: 3154 + - uid: 6647 components: - type: Transform rot: 1.5707963267948966 rad - pos: -26.5,-21.5 + pos: 60.5,9.5 parent: 2 - - uid: 3157 + - uid: 6648 components: - type: Transform rot: 1.5707963267948966 rad - pos: -26.5,-23.5 + pos: 60.5,11.5 parent: 2 - - uid: 3163 + - uid: 6650 components: - type: Transform rot: 1.5707963267948966 rad - pos: -29.5,-36.5 + pos: 60.5,13.5 parent: 2 - - uid: 3164 + - uid: 6652 components: - type: Transform rot: 1.5707963267948966 rad - pos: -26.5,-32.5 + pos: 59.5,13.5 parent: 2 - - uid: 3171 + - uid: 6653 components: - type: Transform rot: 1.5707963267948966 rad - pos: -27.5,21.5 + pos: 53.5,16.5 parent: 2 - - uid: 3196 + - uid: 6655 components: - type: Transform rot: 1.5707963267948966 rad - pos: -27.5,10.5 + pos: 55.5,16.5 parent: 2 - - uid: 3197 + - uid: 6657 components: - type: Transform rot: 1.5707963267948966 rad - pos: -26.5,22.5 + pos: 47.5,-11.5 parent: 2 - - uid: 3201 + - uid: 6667 components: - type: Transform rot: 1.5707963267948966 rad - pos: -22.5,22.5 + pos: 47.5,-13.5 parent: 2 - - uid: 3202 + - uid: 6669 components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,22.5 + pos: 47.5,-14.5 parent: 2 - - uid: 3205 + - uid: 6671 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,22.5 + pos: 47.5,-15.5 parent: 2 - - uid: 3209 + - uid: 6672 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,22.5 + pos: 49.5,-15.5 parent: 2 - - uid: 3214 + - uid: 6673 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,22.5 + pos: 51.5,-15.5 parent: 2 - - uid: 3215 + - uid: 6675 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,22.5 + pos: -15.5,-40.5 parent: 2 - - uid: 3217 + - uid: 6677 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,22.5 + pos: 60.5,-24.5 parent: 2 - - uid: 3219 + - uid: 6728 components: - type: Transform rot: 1.5707963267948966 rad - pos: -27.5,-5.5 + pos: 51.5,-22.5 parent: 2 - - uid: 3220 + - uid: 6759 components: - type: Transform rot: 1.5707963267948966 rad - pos: -28.5,-7.5 + pos: 51.5,-24.5 parent: 2 - - uid: 3221 + - uid: 6776 components: - type: Transform rot: 1.5707963267948966 rad - pos: -34.5,-11.5 + pos: 54.5,-13.5 parent: 2 - - uid: 3226 + - uid: 6778 components: - type: Transform rot: 1.5707963267948966 rad - pos: -32.5,-5.5 + pos: 54.5,-11.5 parent: 2 - - uid: 3230 + - uid: 6786 components: - type: Transform rot: 1.5707963267948966 rad - pos: -36.5,-5.5 + pos: 56.5,17.5 parent: 2 - - uid: 3233 + - uid: 6788 components: - type: Transform rot: 1.5707963267948966 rad - pos: -40.5,-5.5 + pos: 56.5,19.5 parent: 2 - - uid: 3238 + - uid: 6830 components: - type: Transform rot: 1.5707963267948966 rad - pos: -29.5,10.5 + pos: 57.5,20.5 parent: 2 - - uid: 3243 + - uid: 6838 components: - type: Transform rot: 1.5707963267948966 rad - pos: -34.5,10.5 + pos: 62.5,20.5 parent: 2 - - uid: 3248 + - uid: 6840 components: - type: Transform rot: 1.5707963267948966 rad - pos: -42.5,10.5 + pos: 62.5,19.5 parent: 2 - - uid: 3252 + - uid: 6842 components: - type: Transform rot: 1.5707963267948966 rad - pos: -42.5,8.5 + pos: 62.5,17.5 parent: 2 - - uid: 3261 + - uid: 6844 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-1.5 + pos: 9.5,-45.5 parent: 2 - - uid: 3277 + - uid: 6846 components: - type: Transform rot: 1.5707963267948966 rad - pos: -35.5,13.5 + pos: 62.5,15.5 parent: 2 - - uid: 3299 + - uid: 6847 components: - type: Transform rot: 1.5707963267948966 rad - pos: -35.5,17.5 + pos: 62.5,13.5 parent: 2 - - uid: 3300 + - uid: 6850 components: - type: Transform rot: 1.5707963267948966 rad - pos: -35.5,18.5 + pos: 59.5,-0.5 parent: 2 - - uid: 3307 + - uid: 6852 components: - type: Transform rot: 1.5707963267948966 rad - pos: -31.5,18.5 + pos: 60.5,5.5 parent: 2 - - uid: 3311 + - uid: 6854 components: - type: Transform rot: 1.5707963267948966 rad - pos: -29.5,18.5 + pos: 62.5,5.5 parent: 2 - - uid: 3312 + - uid: 6858 components: - type: Transform rot: 1.5707963267948966 rad - pos: -28.5,18.5 + pos: 62.5,2.5 parent: 2 - - uid: 3317 + - uid: 6860 components: - type: Transform rot: 1.5707963267948966 rad - pos: -39.5,14.5 + pos: 62.5,-0.5 parent: 2 - - uid: 3320 + - uid: 6862 components: - type: Transform rot: 1.5707963267948966 rad - pos: -39.5,11.5 + pos: 63.5,-0.5 parent: 2 - - uid: 3327 + - uid: 6864 components: - type: Transform rot: 1.5707963267948966 rad - pos: -28.5,20.5 + pos: 64.5,-0.5 parent: 2 - - uid: 3332 + - uid: 6868 components: - type: Transform rot: 1.5707963267948966 rad - pos: -42.5,-5.5 + pos: 64.5,4.5 parent: 2 - - uid: 3338 + - uid: 6871 components: - type: Transform rot: 1.5707963267948966 rad - pos: -37.5,-7.5 + pos: 57.5,-2.5 parent: 2 - - uid: 3339 + - uid: 6872 components: - type: Transform rot: 1.5707963267948966 rad - pos: -39.5,-7.5 + pos: 57.5,21.5 parent: 2 - - uid: 3343 + - uid: 6877 components: - type: Transform rot: 1.5707963267948966 rad - pos: -29.5,-11.5 + pos: 61.5,21.5 parent: 2 - - uid: 3346 + - uid: 6902 components: - type: Transform rot: 1.5707963267948966 rad - pos: -30.5,-9.5 + pos: -41.5,-37.5 parent: 2 - - uid: 3348 + - uid: 6934 components: - type: Transform rot: 1.5707963267948966 rad - pos: -34.5,-9.5 + pos: -3.5,41.5 parent: 2 - - uid: 3353 + - uid: 6935 components: - type: Transform rot: 1.5707963267948966 rad - pos: -38.5,-11.5 + pos: 0.5,43.5 parent: 2 - - uid: 3357 + - uid: 6941 components: - type: Transform rot: 1.5707963267948966 rad - pos: -41.5,-7.5 + pos: -3.5,43.5 parent: 2 - - uid: 3362 + - uid: 6950 components: - type: Transform rot: 1.5707963267948966 rad - pos: -40.5,-11.5 + pos: 37.5,7.5 parent: 2 - - uid: 3365 + - uid: 6954 components: - type: Transform rot: 1.5707963267948966 rad - pos: -39.5,-13.5 + pos: 37.5,8.5 parent: 2 - - uid: 3368 + - uid: 6956 components: - type: Transform rot: 1.5707963267948966 rad - pos: -31.5,-16.5 + pos: 56.5,-10.5 parent: 2 - - uid: 3370 + - uid: 6963 components: - type: Transform rot: 1.5707963267948966 rad - pos: -35.5,-16.5 + pos: 56.5,-12.5 parent: 2 - - uid: 3372 + - uid: 6964 components: - type: Transform rot: 1.5707963267948966 rad - pos: -38.5,-16.5 + pos: 56.5,-14.5 parent: 2 - - uid: 3373 + - uid: 6979 components: - type: Transform rot: 1.5707963267948966 rad - pos: -40.5,-16.5 + pos: 64.5,7.5 parent: 2 - - uid: 3377 + - uid: 6981 components: - type: Transform rot: 1.5707963267948966 rad - pos: -40.5,-18.5 + pos: 63.5,7.5 parent: 2 - - uid: 3380 + - uid: 6984 components: - type: Transform rot: 1.5707963267948966 rad - pos: -40.5,-21.5 + pos: 62.5,7.5 parent: 2 - - uid: 3382 + - uid: 6999 components: - type: Transform rot: 1.5707963267948966 rad - pos: -35.5,-18.5 + pos: 62.5,8.5 parent: 2 - - uid: 3384 + - uid: 7000 components: - type: Transform rot: 1.5707963267948966 rad - pos: -30.5,-21.5 + pos: 62.5,11.5 parent: 2 - - uid: 3388 + - uid: 7001 components: - type: Transform rot: 1.5707963267948966 rad - pos: -34.5,-21.5 + pos: 64.5,11.5 parent: 2 - - uid: 3391 + - uid: 7006 components: - type: Transform rot: 1.5707963267948966 rad - pos: -35.5,-20.5 + pos: 64.5,12.5 parent: 2 - - uid: 3392 + - uid: 7010 components: - type: Transform rot: 1.5707963267948966 rad - pos: -36.5,-21.5 + pos: 64.5,18.5 parent: 2 - - uid: 3396 + - uid: 7012 components: - type: Transform rot: 1.5707963267948966 rad - pos: -43.5,-6.5 + pos: 64.5,22.5 parent: 2 - - uid: 3402 + - uid: 7016 components: - type: Transform rot: 1.5707963267948966 rad - pos: -42.5,-13.5 + pos: 62.5,-8.5 parent: 2 - - uid: 3403 + - uid: 7030 components: - type: Transform rot: 1.5707963267948966 rad - pos: -42.5,-15.5 + pos: 60.5,-10.5 parent: 2 - - uid: 3406 + - uid: 7031 components: - type: Transform rot: 1.5707963267948966 rad - pos: -42.5,-17.5 + pos: 59.5,-10.5 parent: 2 - - uid: 3408 + - uid: 7034 components: - type: Transform rot: 1.5707963267948966 rad - pos: -42.5,-19.5 + pos: 62.5,-10.5 parent: 2 - - uid: 3410 + - uid: 7068 components: - type: Transform rot: 1.5707963267948966 rad - pos: -42.5,-21.5 + pos: 64.5,-10.5 parent: 2 - - uid: 3411 + - uid: 7069 components: - type: Transform rot: 1.5707963267948966 rad - pos: -42.5,-23.5 + pos: 65.5,-10.5 parent: 2 - - uid: 3413 + - uid: 7070 components: - type: Transform rot: 1.5707963267948966 rad - pos: -39.5,-23.5 + pos: 65.5,-7.5 parent: 2 - - uid: 3418 + - uid: 7071 components: - type: Transform rot: 1.5707963267948966 rad - pos: -36.5,-23.5 + pos: 65.5,-6.5 parent: 2 - - uid: 3421 + - uid: 7072 components: - type: Transform rot: 1.5707963267948966 rad - pos: -32.5,-23.5 + pos: -53.5,-37.5 parent: 2 - - uid: 3426 + - uid: 7075 components: - type: Transform rot: 1.5707963267948966 rad - pos: -28.5,-23.5 + pos: 62.5,-20.5 parent: 2 - - uid: 3431 + - uid: 7076 components: - type: Transform rot: 1.5707963267948966 rad - pos: -28.5,-34.5 + pos: 62.5,-21.5 parent: 2 - - uid: 3433 + - uid: 7078 components: - type: Transform rot: 1.5707963267948966 rad - pos: -30.5,-34.5 + pos: 61.5,-21.5 parent: 2 - - uid: 3434 + - uid: 7083 components: - type: Transform rot: 1.5707963267948966 rad - pos: -31.5,-34.5 + pos: 66.5,-14.5 parent: 2 - - uid: 3439 + - uid: 7085 components: - type: Transform rot: 1.5707963267948966 rad - pos: -37.5,-34.5 + pos: 62.5,-14.5 parent: 2 - - uid: 3443 + - uid: 7087 components: - type: Transform rot: 1.5707963267948966 rad - pos: -41.5,-34.5 + pos: 62.5,-16.5 parent: 2 - - uid: 3445 + - uid: 7088 components: - type: Transform rot: 1.5707963267948966 rad - pos: -39.5,-34.5 + pos: 67.5,-21.5 parent: 2 - - uid: 3448 + - uid: 7090 components: - type: Transform rot: 1.5707963267948966 rad - pos: -29.5,-40.5 + pos: 66.5,-21.5 parent: 2 - - uid: 3450 + - uid: 7093 components: - type: Transform rot: 1.5707963267948966 rad - pos: -25.5,-40.5 + pos: 67.5,-22.5 parent: 2 - - uid: 3456 + - uid: 7107 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,-40.5 + pos: 67.5,-24.5 parent: 2 - - uid: 3482 + - uid: 7108 components: - type: Transform - rot: 3.141592653589793 rad - pos: 86.5,-11.5 + rot: 1.5707963267948966 rad + pos: 67.5,-25.5 parent: 2 - - uid: 3492 + - uid: 7112 components: - type: Transform - pos: -21.5,-10.5 + rot: 1.5707963267948966 rad + pos: 66.5,-15.5 parent: 2 - - uid: 3573 + - uid: 7114 components: - type: Transform - pos: -20.5,-42.5 + rot: 1.5707963267948966 rad + pos: 63.5,-27.5 parent: 2 - - uid: 3618 + - uid: 7115 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,-40.5 + pos: 66.5,-27.5 parent: 2 - - uid: 3687 + - uid: 7127 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,-37.5 + pos: 61.5,-29.5 parent: 2 - - uid: 3691 + - uid: 7132 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,-33.5 + pos: 67.5,-15.5 parent: 2 - - uid: 3692 + - uid: 7134 components: - type: Transform rot: 1.5707963267948966 rad - pos: -30.5,-40.5 + pos: 69.5,-15.5 parent: 2 - - uid: 3750 + - uid: 7181 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-40.5 + pos: 2.5,39.5 parent: 2 - - uid: 3754 + - uid: 7183 components: - type: Transform rot: 1.5707963267948966 rad - pos: -34.5,-37.5 + pos: 71.5,-15.5 parent: 2 - - uid: 3756 + - uid: 7186 components: - type: Transform rot: 1.5707963267948966 rad - pos: -33.5,-35.5 + pos: 72.5,-14.5 parent: 2 - - uid: 3766 + - uid: 7188 components: - type: Transform rot: 1.5707963267948966 rad - pos: -41.5,-0.5 + pos: 72.5,-10.5 parent: 2 - - uid: 3767 + - uid: 7190 components: - type: Transform rot: 1.5707963267948966 rad - pos: -51.5,-4.5 + pos: 73.5,-10.5 parent: 2 - - uid: 3769 + - uid: 7192 components: - type: Transform rot: 1.5707963267948966 rad - pos: -44.5,-9.5 + pos: 75.5,-10.5 parent: 2 - - uid: 3783 + - uid: 7196 components: - type: Transform rot: 1.5707963267948966 rad - pos: -49.5,-9.5 + pos: 75.5,-8.5 parent: 2 - - uid: 3839 + - uid: 7198 components: - type: Transform rot: 1.5707963267948966 rad - pos: -51.5,-7.5 + pos: 75.5,-6.5 parent: 2 - - uid: 3841 + - uid: 7199 components: - type: Transform rot: 1.5707963267948966 rad - pos: -51.5,-11.5 + pos: 73.5,-6.5 parent: 2 - - uid: 3843 + - uid: 7201 components: - type: Transform rot: 1.5707963267948966 rad - pos: -46.5,-11.5 + pos: 71.5,-6.5 parent: 2 - - uid: 3844 + - uid: 7203 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,14.5 + pos: 70.5,-6.5 parent: 2 - - uid: 3846 + - uid: 7205 components: - type: Transform rot: 1.5707963267948966 rad - pos: -49.5,-11.5 + pos: 67.5,-6.5 parent: 2 - - uid: 3848 + - uid: 7207 components: - type: Transform rot: 1.5707963267948966 rad - pos: -51.5,-13.5 + pos: 67.5,-19.5 parent: 2 - - uid: 3849 + - uid: 7208 components: - type: Transform rot: 1.5707963267948966 rad - pos: -46.5,-12.5 + pos: 71.5,-19.5 parent: 2 - - uid: 4067 + - uid: 7211 components: - type: Transform rot: 1.5707963267948966 rad - pos: -46.5,-17.5 + pos: 70.5,-19.5 parent: 2 - - uid: 4178 + - uid: 7270 components: - type: Transform rot: 1.5707963267948966 rad - pos: -51.5,-14.5 + pos: 72.5,-19.5 parent: 2 - - uid: 4187 + - uid: 7278 components: - type: Transform rot: 1.5707963267948966 rad - pos: -43.5,-32.5 + pos: 72.5,-21.5 parent: 2 - - uid: 4204 + - uid: 7279 components: - type: Transform rot: 1.5707963267948966 rad - pos: -52.5,-32.5 + pos: 72.5,-22.5 parent: 2 - - uid: 4209 + - uid: 7280 components: - type: Transform rot: 1.5707963267948966 rad - pos: -52.5,-27.5 + pos: 72.5,-24.5 parent: 2 - - uid: 4211 + - uid: 7282 components: - type: Transform rot: 1.5707963267948966 rad - pos: -46.5,-15.5 + pos: 68.5,-24.5 parent: 2 - - uid: 4224 + - uid: 7283 components: - type: Transform rot: 1.5707963267948966 rad - pos: -55.5,-22.5 + pos: 72.5,-25.5 parent: 2 - - uid: 4234 + - uid: 7286 components: - type: Transform rot: 1.5707963267948966 rad - pos: 48.5,-17.5 + pos: 72.5,-26.5 parent: 2 - - uid: 4235 + - uid: 7290 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,18.5 + pos: 72.5,-29.5 parent: 2 - - uid: 4236 + - uid: 7291 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,18.5 + pos: 70.5,-30.5 parent: 2 - - uid: 4237 + - uid: 7292 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,18.5 + pos: 67.5,-28.5 parent: 2 - - uid: 4239 + - uid: 7295 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,1.5 + pos: 67.5,-29.5 parent: 2 - - uid: 4240 + - uid: 7298 components: - type: Transform rot: 1.5707963267948966 rad - pos: -50.5,-32.5 + pos: 67.5,-30.5 parent: 2 - - uid: 4241 + - uid: 7301 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,11.5 + pos: 75.5,-19.5 parent: 2 - - uid: 4262 + - uid: 7302 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,8.5 + pos: 77.5,-19.5 parent: 2 - - uid: 4298 + - uid: 7303 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,4.5 + pos: 78.5,-10.5 parent: 2 - - uid: 4304 + - uid: 7306 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,20.5 + rot: 1.5707963267948966 rad + pos: 76.5,-10.5 parent: 2 - - uid: 4378 + - uid: 7308 components: - type: Transform - pos: -16.5,-11.5 + rot: 1.5707963267948966 rad + pos: 79.5,-11.5 parent: 2 - - uid: 4412 + - uid: 7318 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,-7.5 + pos: 81.5,-11.5 parent: 2 - - uid: 4434 + - uid: 7320 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,-10.5 + pos: 79.5,-19.5 parent: 2 - - uid: 4439 + - uid: 7325 components: - type: Transform rot: 1.5707963267948966 rad - pos: 44.5,-10.5 + pos: 81.5,-19.5 parent: 2 - - uid: 4455 + - uid: 7327 components: - type: Transform rot: 1.5707963267948966 rad - pos: -44.5,-12.5 + pos: 83.5,-11.5 parent: 2 - - uid: 4456 + - uid: 7328 components: - type: Transform rot: 1.5707963267948966 rad - pos: -57.5,-22.5 + pos: 84.5,-19.5 parent: 2 - - uid: 4458 + - uid: 7330 components: - type: Transform rot: 1.5707963267948966 rad - pos: -57.5,-24.5 + pos: 27.5,27.5 parent: 2 - - uid: 4469 + - uid: 7341 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,20.5 + rot: 1.5707963267948966 rad + pos: 75.5,-4.5 parent: 2 - - uid: 4470 + - uid: 7349 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,20.5 + rot: 1.5707963267948966 rad + pos: 74.5,-4.5 parent: 2 - - uid: 4487 + - uid: 7378 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,-26.5 + pos: 42.5,14.5 parent: 2 - - uid: 4496 + - uid: 7390 components: - type: Transform rot: 1.5707963267948966 rad - pos: -57.5,-28.5 + pos: 77.5,-4.5 parent: 2 - - uid: 4628 + - uid: 7416 components: - type: Transform - pos: -21.5,16.5 + rot: -1.5707963267948966 rad + pos: 9.5,-50.5 parent: 2 - - uid: 4734 + - uid: 7445 components: - type: Transform rot: 1.5707963267948966 rad - pos: -54.5,-30.5 + pos: 86.5,-10.5 parent: 2 - - uid: 4740 + - uid: 7446 components: - type: Transform rot: 1.5707963267948966 rad - pos: -56.5,-30.5 + pos: 74.5,-33.5 parent: 2 - - uid: 4810 + - uid: 7461 components: - type: Transform rot: 1.5707963267948966 rad - pos: -59.5,-23.5 + pos: 75.5,-33.5 parent: 2 - - uid: 4834 + - uid: 7462 components: - type: Transform rot: 1.5707963267948966 rad - pos: -61.5,-23.5 + pos: 75.5,-32.5 parent: 2 - - uid: 4835 + - uid: 7464 components: - type: Transform rot: 1.5707963267948966 rad - pos: -62.5,-23.5 + pos: 66.5,-31.5 parent: 2 - - uid: 4860 + - uid: 7479 components: - type: Transform rot: 1.5707963267948966 rad - pos: -62.5,-27.5 + pos: 68.5,-31.5 parent: 2 - - uid: 4900 + - uid: 7503 components: - type: Transform rot: 1.5707963267948966 rad - pos: -62.5,-29.5 + pos: 72.5,-31.5 parent: 2 - - uid: 4903 + - uid: 7513 components: - type: Transform rot: 1.5707963267948966 rad - pos: -59.5,-29.5 + pos: 73.5,-30.5 parent: 2 - - uid: 4923 + - uid: 7514 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,25.5 + pos: 73.5,-28.5 parent: 2 - - uid: 4924 + - uid: 7519 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,25.5 + pos: 73.5,-27.5 parent: 2 - - uid: 5023 + - uid: 7521 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,14.5 + rot: 1.5707963267948966 rad + pos: 73.5,-26.5 parent: 2 - - uid: 5025 + - uid: 7525 components: - type: Transform - pos: -41.5,16.5 + rot: 1.5707963267948966 rad + pos: 73.5,-24.5 parent: 2 - - uid: 5123 + - uid: 7527 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,14.5 + rot: 1.5707963267948966 rad + pos: 66.5,-33.5 parent: 2 - - uid: 5131 + - uid: 7529 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,37.5 + rot: 1.5707963267948966 rad + pos: 64.5,-33.5 parent: 2 - - uid: 5138 + - uid: 7530 components: - type: Transform - pos: 0.5,36.5 + rot: 1.5707963267948966 rad + pos: 67.5,-33.5 parent: 2 - - uid: 5443 + - uid: 7531 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,27.5 + pos: 64.5,-30.5 parent: 2 - - uid: 5458 + - uid: 7533 components: - type: Transform - pos: -20.5,-41.5 + rot: 1.5707963267948966 rad + pos: 64.5,-29.5 parent: 2 - - uid: 5783 + - uid: 7540 components: - type: Transform - pos: -22.5,-42.5 + rot: 1.5707963267948966 rad + pos: 64.5,-32.5 parent: 2 - - uid: 5786 + - uid: 7542 components: - type: Transform - pos: -3.5,38.5 + rot: 1.5707963267948966 rad + pos: 18.5,-38.5 parent: 2 - - uid: 5791 + - uid: 7543 components: - type: Transform - pos: -55.5,-32.5 + rot: 1.5707963267948966 rad + pos: 30.5,-39.5 parent: 2 - - uid: 5797 + - uid: 7545 components: - type: Transform - pos: -58.5,-32.5 + rot: 1.5707963267948966 rad + pos: 27.5,-37.5 parent: 2 - - uid: 5801 + - uid: 7546 components: - type: Transform rot: 1.5707963267948966 rad - pos: -34.5,-42.5 + pos: 27.5,-35.5 parent: 2 - - uid: 5805 + - uid: 7547 components: - type: Transform - pos: -59.5,-32.5 + rot: 1.5707963267948966 rad + pos: 27.5,-39.5 parent: 2 - - uid: 5806 + - uid: 7553 components: - type: Transform - pos: -64.5,-26.5 + pos: 54.5,-24.5 parent: 2 - - uid: 5807 + - uid: 7567 components: - type: Transform - pos: -29.5,-42.5 + pos: 64.5,21.5 parent: 2 - - uid: 5912 + - uid: 7580 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,8.5 + rot: 1.5707963267948966 rad + pos: 25.5,-39.5 parent: 2 - - uid: 5913 + - uid: 7587 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,8.5 + rot: 1.5707963267948966 rad + pos: 24.5,-39.5 parent: 2 - - uid: 6061 + - uid: 7590 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,38.5 + rot: 1.5707963267948966 rad + pos: 22.5,-39.5 parent: 2 - - uid: 6062 + - uid: 7593 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,21.5 + rot: 1.5707963267948966 rad + pos: 19.5,-39.5 parent: 2 - - uid: 6083 + - uid: 7595 components: - type: Transform rot: 1.5707963267948966 rad - pos: -44.5,-33.5 + pos: 26.5,-40.5 parent: 2 - - uid: 6084 + - uid: 7596 components: - type: Transform rot: 1.5707963267948966 rad - pos: -49.5,-34.5 + pos: 31.5,-41.5 parent: 2 - - uid: 6094 + - uid: 7598 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,38.5 + rot: 1.5707963267948966 rad + pos: 23.5,-40.5 parent: 2 - - uid: 6139 + - uid: 7599 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,38.5 + rot: 1.5707963267948966 rad + pos: 23.5,-42.5 parent: 2 - - uid: 6151 + - uid: 7601 components: - type: Transform rot: 1.5707963267948966 rad - pos: -45.5,-35.5 + pos: 30.5,-41.5 parent: 2 - - uid: 6463 + - uid: 7631 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,15.5 + rot: 1.5707963267948966 rad + pos: 31.5,-42.5 parent: 2 - - uid: 6483 + - uid: 7632 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,13.5 + rot: -1.5707963267948966 rad + pos: 5.5,-50.5 parent: 2 - - uid: 6492 + - uid: 7636 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,9.5 + rot: 1.5707963267948966 rad + pos: 22.5,-41.5 parent: 2 - - uid: 6497 + - uid: 7637 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,11.5 + rot: 1.5707963267948966 rad + pos: 31.5,-44.5 parent: 2 - - uid: 6501 + - uid: 7639 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,16.5 + rot: 1.5707963267948966 rad + pos: 30.5,-45.5 parent: 2 - - uid: 6504 + - uid: 7641 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,24.5 + rot: 1.5707963267948966 rad + pos: 31.5,-46.5 parent: 2 - - uid: 6505 + - uid: 7645 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,6.5 + rot: 1.5707963267948966 rad + pos: 31.5,-47.5 parent: 2 - - uid: 6519 + - uid: 7648 components: - type: Transform rot: 1.5707963267948966 rad - pos: -15.5,-35.5 + pos: 30.5,-47.5 parent: 2 - - uid: 6530 + - uid: 7649 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-2.5 + rot: 1.5707963267948966 rad + pos: 22.5,-44.5 parent: 2 - - uid: 6552 + - uid: 7651 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-5.5 + rot: 1.5707963267948966 rad + pos: 22.5,-45.5 parent: 2 - - uid: 6570 + - uid: 7653 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,0.5 + rot: 1.5707963267948966 rad + pos: 23.5,-45.5 parent: 2 - - uid: 6574 + - uid: 7654 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,0.5 + rot: 1.5707963267948966 rad + pos: 23.5,-46.5 parent: 2 - - uid: 6610 + - uid: 7655 components: - type: Transform rot: 1.5707963267948966 rad - pos: -15.5,-37.5 + pos: 22.5,-47.5 parent: 2 - - uid: 6621 + - uid: 7658 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,-5.5 + rot: 1.5707963267948966 rad + pos: 30.5,-49.5 parent: 2 - - uid: 6625 + - uid: 7660 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-7.5 + rot: 1.5707963267948966 rad + pos: 23.5,-48.5 parent: 2 - - uid: 6636 + - uid: 7661 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-2.5 + rot: 1.5707963267948966 rad + pos: 24.5,-49.5 parent: 2 - - uid: 6918 + - uid: 7662 components: - type: Transform - rot: 3.141592653589793 rad - pos: 86.5,-13.5 + rot: 1.5707963267948966 rad + pos: 29.5,-48.5 parent: 2 - - uid: 6937 + - uid: 7664 components: - type: Transform - pos: 47.5,19.5 + rot: 1.5707963267948966 rad + pos: 23.5,-49.5 parent: 2 - - uid: 6939 + - uid: 7726 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,29.5 + rot: 1.5707963267948966 rad + pos: 16.5,-41.5 parent: 2 - - uid: 6951 + - uid: 7730 components: - type: Transform - pos: 12.5,33.5 + rot: 1.5707963267948966 rad + pos: 21.5,-41.5 parent: 2 - - uid: 6957 + - uid: 7733 components: - type: Transform - pos: 3.5,44.5 + rot: 1.5707963267948966 rad + pos: 20.5,-49.5 parent: 2 - - uid: 6969 + - uid: 7735 components: - type: Transform rot: 1.5707963267948966 rad - pos: -49.5,-35.5 + pos: 15.5,-41.5 parent: 2 - - uid: 6985 + - uid: 7736 components: - type: Transform rot: 1.5707963267948966 rad - pos: 53.5,-17.5 + pos: 20.5,-45.5 parent: 2 - - uid: 6988 + - uid: 7741 components: - type: Transform - pos: -4.5,41.5 + rot: 1.5707963267948966 rad + pos: 21.5,-45.5 parent: 2 - - uid: 6992 + - uid: 7744 components: - type: Transform - pos: 2.5,49.5 + rot: 1.5707963267948966 rad + pos: 4.5,-36.5 parent: 2 - - uid: 7002 + - uid: 7746 components: - type: Transform - pos: 39.5,0.5 + rot: -1.5707963267948966 rad + pos: 7.5,-50.5 parent: 2 - - uid: 7003 + - uid: 7756 components: - type: Transform - pos: 40.5,-5.5 + rot: 1.5707963267948966 rad + pos: 4.5,-34.5 parent: 2 - - uid: 7004 + - uid: 7757 components: - type: Transform - pos: 35.5,-4.5 + rot: 1.5707963267948966 rad + pos: -6.5,-36.5 parent: 2 - - uid: 7079 + - uid: 7758 components: - type: Transform - pos: 12.5,37.5 + rot: 1.5707963267948966 rad + pos: -6.5,-37.5 parent: 2 - - uid: 7258 + - uid: 7762 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-2.5 + rot: 1.5707963267948966 rad + pos: -6.5,-34.5 parent: 2 - - uid: 7272 + - uid: 7763 components: - type: Transform - pos: 56.5,24.5 + rot: 1.5707963267948966 rad + pos: 20.5,-47.5 parent: 2 - - uid: 7288 + - uid: 7764 components: - type: Transform rot: 1.5707963267948966 rad - pos: 56.5,-16.5 + pos: 17.5,-49.5 parent: 2 - - uid: 7457 + - uid: 7767 components: - type: Transform - pos: 59.5,24.5 + rot: 1.5707963267948966 rad + pos: 15.5,-44.5 parent: 2 - - uid: 7458 + - uid: 7770 components: - type: Transform - pos: 60.5,24.5 + rot: 1.5707963267948966 rad + pos: 17.5,-50.5 parent: 2 - - uid: 7467 + - uid: 7772 components: - type: Transform - pos: 66.5,-0.5 + rot: 1.5707963267948966 rad + pos: 20.5,-50.5 parent: 2 - - uid: 7468 + - uid: 7782 components: - type: Transform - pos: 46.5,19.5 + rot: 1.5707963267948966 rad + pos: 20.5,-42.5 parent: 2 - - uid: 7470 + - uid: 7783 components: - type: Transform - pos: 50.5,19.5 + rot: 1.5707963267948966 rad + pos: 17.5,-42.5 parent: 2 - - uid: 7472 + - uid: 7794 components: - type: Transform - pos: 66.5,0.5 + rot: 1.5707963267948966 rad + pos: 21.5,-50.5 parent: 2 - - uid: 7480 + - uid: 7804 components: - type: Transform - pos: -54.5,-34.5 + rot: 1.5707963267948966 rad + pos: 16.5,-50.5 parent: 2 - - uid: 7482 + - uid: 7806 components: - type: Transform - rot: 3.141592653589793 rad - pos: 86.5,-15.5 + rot: 1.5707963267948966 rad + pos: 14.5,-50.5 parent: 2 - - uid: 7483 + - uid: 7816 components: - type: Transform - rot: 3.141592653589793 rad - pos: 86.5,-12.5 + pos: 18.5,-55.5 parent: 2 - - uid: 7485 + - uid: 7817 components: - type: Transform - rot: 3.141592653589793 rad - pos: 86.5,-18.5 + pos: 18.5,-61.5 parent: 2 - - uid: 7486 + - uid: 7818 components: - type: Transform - rot: 3.141592653589793 rad - pos: 86.5,-21.5 + pos: 22.5,-66.5 parent: 2 - - uid: 7487 + - uid: 7819 components: - type: Transform - rot: 3.141592653589793 rad - pos: 86.5,-19.5 + pos: 23.5,-61.5 parent: 2 - - uid: 7490 + - uid: 7820 components: - type: Transform - rot: 3.141592653589793 rad - pos: 86.5,-22.5 + rot: 1.5707963267948966 rad + pos: 22.5,-50.5 parent: 2 - - uid: 7491 + - uid: 7822 components: - type: Transform - pos: -33.5,-5.5 + rot: 1.5707963267948966 rad + pos: 23.5,-50.5 parent: 2 - - uid: 7492 + - uid: 7824 components: - type: Transform - pos: -40.5,8.5 + pos: 25.5,-67.5 parent: 2 - - uid: 7498 + - uid: 7826 components: - type: Transform - pos: 54.5,22.5 + pos: 14.5,-62.5 parent: 2 - - uid: 7500 + - uid: 7827 components: - type: Transform - pos: 54.5,20.5 + pos: 17.5,-51.5 parent: 2 - - uid: 7505 + - uid: 7828 components: - type: Transform - pos: 66.5,3.5 + pos: 17.5,-54.5 parent: 2 - - uid: 7511 + - uid: 7831 components: - type: Transform - pos: -53.5,-36.5 + pos: 13.5,-66.5 parent: 2 - - uid: 7535 + - uid: 7833 components: - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,-8.5 + pos: 21.5,-55.5 parent: 2 - - uid: 7536 + - uid: 7834 components: - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,-8.5 + pos: 20.5,-55.5 parent: 2 - - uid: 7538 + - uid: 7835 components: - type: Transform - pos: 53.5,19.5 + pos: 18.5,-66.5 parent: 2 - - uid: 7774 + - uid: 7845 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-33.5 + pos: 12.5,-78.5 parent: 2 - - uid: 7909 + - uid: 7846 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-35.5 + pos: 11.5,-65.5 parent: 2 - - uid: 7941 + - uid: 7848 components: - type: Transform - pos: 35.5,-5.5 + pos: 15.5,-61.5 parent: 2 - - uid: 7993 + - uid: 7849 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-39.5 + pos: 17.5,-61.5 parent: 2 - - uid: 8172 + - uid: 7855 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,6.5 + pos: 16.5,-52.5 parent: 2 - - uid: 8175 + - uid: 7856 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,5.5 + pos: 16.5,-53.5 parent: 2 - - uid: 8177 + - uid: 7858 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,5.5 + pos: 25.5,-61.5 parent: 2 - - uid: 8210 + - uid: 7859 components: - type: Transform - pos: 66.5,6.5 + pos: 23.5,-62.5 parent: 2 - - uid: 8224 + - uid: 7861 components: - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,-21.5 + pos: 16.5,-63.5 parent: 2 - - uid: 8228 + - uid: 7862 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,27.5 + pos: 24.5,-54.5 parent: 2 - - uid: 8232 + - uid: 7866 components: - type: Transform - pos: 67.5,-4.5 + pos: 22.5,-54.5 parent: 2 - - uid: 8236 + - uid: 7869 components: - type: Transform - pos: 36.5,-5.5 + rot: 1.5707963267948966 rad + pos: 7.5,-38.5 parent: 2 - - uid: 8244 + - uid: 7871 components: - type: Transform - pos: 38.5,-5.5 + pos: 23.5,-76.5 parent: 2 - - uid: 9140 + - uid: 7872 components: - type: Transform - pos: 69.5,-4.5 + rot: 1.5707963267948966 rad + pos: 7.5,-40.5 parent: 2 - - uid: 9149 + - uid: 7873 components: - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,-21.5 + rot: 1.5707963267948966 rad + pos: 9.5,-41.5 parent: 2 - - uid: 9150 + - uid: 7874 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,29.5 + pos: 22.5,-61.5 parent: 2 - - uid: 9151 + - uid: 7875 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,28.5 + rot: 1.5707963267948966 rad + pos: 11.5,-41.5 parent: 2 - - uid: 9162 + - uid: 7878 components: - type: Transform - pos: -40.5,5.5 + pos: 16.5,-65.5 parent: 2 - - uid: 9170 + - uid: 7881 components: - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,-21.5 + rot: 1.5707963267948966 rad + pos: 13.5,-41.5 parent: 2 - - uid: 9442 + - uid: 7883 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,4.5 + rot: 1.5707963267948966 rad + pos: 12.5,-50.5 parent: 2 - - uid: 10585 + - uid: 7888 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-24.5 + rot: 1.5707963267948966 rad + pos: 10.5,-45.5 parent: 2 - - uid: 11653 + - uid: 7893 components: - type: Transform - pos: 70.5,-4.5 + rot: 1.5707963267948966 rad + pos: 10.5,-46.5 parent: 2 - - uid: 11661 + - uid: 7894 components: - type: Transform - pos: 66.5,-3.5 + rot: 1.5707963267948966 rad + pos: 10.5,-49.5 parent: 2 - - uid: 11662 + - uid: 7896 components: - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,-21.5 + rot: 1.5707963267948966 rad + pos: 10.5,-50.5 parent: 2 - - uid: 12110 + - uid: 7898 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,4.5 + rot: 1.5707963267948966 rad + pos: 10.5,-43.5 parent: 2 - - uid: 12572 + - uid: 7907 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,23.5 + rot: 1.5707963267948966 rad + pos: 13.5,-43.5 parent: 2 - - uid: 13175 + - uid: 7914 components: - type: Transform - pos: -32.5,-1.5 + rot: 1.5707963267948966 rad + pos: 14.5,-43.5 parent: 2 - - uid: 13176 + - uid: 7962 components: - type: Transform - pos: -29.5,-1.5 + rot: 1.5707963267948966 rad + pos: -2.5,-34.5 parent: 2 - - uid: 13238 + - uid: 7965 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-5.5 + rot: 1.5707963267948966 rad + pos: -2.5,-36.5 parent: 2 - - uid: 14001 + - uid: 7966 components: - type: Transform - pos: -11.5,-35.5 + rot: 1.5707963267948966 rad + pos: 13.5,-39.5 parent: 2 - - uid: 14002 + - uid: 7968 components: - type: Transform - pos: -10.5,-35.5 + rot: 1.5707963267948966 rad + pos: 2.5,-41.5 parent: 2 - - uid: 14717 + - uid: 7972 components: - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,-29.5 + rot: 1.5707963267948966 rad + pos: -1.5,-33.5 parent: 2 - - uid: 14871 + - uid: 7973 components: - type: Transform - pos: 6.5,18.5 + rot: 1.5707963267948966 rad + pos: 2.5,-33.5 parent: 2 - - uid: 14910 + - uid: 7995 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,12.5 + rot: 1.5707963267948966 rad + pos: -1.5,-32.5 parent: 2 - - uid: 15202 + - uid: 7998 components: - type: Transform - pos: 69.5,-0.5 + rot: 1.5707963267948966 rad + pos: -0.5,-38.5 parent: 2 - - uid: 15204 + - uid: 8001 components: - type: Transform - pos: 68.5,-0.5 + rot: 1.5707963267948966 rad + pos: 2.5,-38.5 parent: 2 - - uid: 15211 + - uid: 8023 components: - type: Transform - pos: 69.5,3.5 + rot: 1.5707963267948966 rad + pos: -3.5,-37.5 parent: 2 - - uid: 15212 + - uid: 8024 components: - type: Transform - pos: 68.5,3.5 + pos: 26.5,-66.5 parent: 2 - - uid: 16084 + - uid: 8025 components: - type: Transform - pos: 59.5,25.5 + rot: 1.5707963267948966 rad + pos: 4.5,-41.5 parent: 2 - - uid: 16086 + - uid: 8026 components: - type: Transform - pos: 59.5,27.5 + pos: 25.5,-78.5 parent: 2 - - uid: 16151 + - uid: 8027 components: - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,-24.5 + rot: 1.5707963267948966 rad + pos: 4.5,-42.5 parent: 2 - - uid: 16163 + - uid: 8030 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,32.5 + rot: 1.5707963267948966 rad + pos: 5.5,-43.5 parent: 2 - - uid: 16168 + - uid: 8031 components: - type: Transform - pos: -36.5,-42.5 + rot: 1.5707963267948966 rad + pos: 6.5,-43.5 parent: 2 - - uid: 16185 + - uid: 8035 components: - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,-8.5 + rot: 1.5707963267948966 rad + pos: 9.5,-43.5 parent: 2 - - uid: 16189 + - uid: 8036 components: - type: Transform - pos: 75.5,-26.5 + rot: 1.5707963267948966 rad + pos: 13.5,-36.5 parent: 2 - - uid: 16313 + - uid: 8039 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-45.5 + pos: 24.5,-71.5 parent: 2 - - uid: 16315 + - uid: 8047 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-44.5 + pos: 24.5,-51.5 parent: 2 - - uid: 16349 + - uid: 8048 components: - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,-30.5 + pos: 14.5,-69.5 parent: 2 - - uid: 16352 + - uid: 8053 components: - type: Transform - rot: 3.141592653589793 rad - pos: 80.5,-30.5 + pos: 15.5,-70.5 parent: 2 - - uid: 16377 + - uid: 8059 components: - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,-24.5 + pos: 24.5,-52.5 parent: 2 - - uid: 16378 + - uid: 8065 components: - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,-24.5 + pos: 18.5,-76.5 parent: 2 - - uid: 16382 + - uid: 8079 components: - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,-27.5 + rot: 1.5707963267948966 rad + pos: 11.5,-36.5 parent: 2 - - uid: 16383 + - uid: 8120 components: - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,-28.5 + rot: 1.5707963267948966 rad + pos: 7.5,-36.5 parent: 2 - - uid: 16387 + - uid: 8121 components: - type: Transform - pos: 49.5,21.5 + rot: 1.5707963267948966 rad + pos: 9.5,-36.5 parent: 2 - - uid: 16615 + - uid: 8123 components: - type: Transform - pos: -40.5,4.5 + rot: 1.5707963267948966 rad + pos: 6.5,-45.5 parent: 2 - - uid: 16750 + - uid: 8124 components: - type: Transform - pos: -29.5,8.5 + rot: 1.5707963267948966 rad + pos: 5.5,-46.5 parent: 2 - - uid: 16751 + - uid: 8126 components: - type: Transform - pos: -34.5,8.5 + rot: -1.5707963267948966 rad + pos: 8.5,-49.5 parent: 2 - - uid: 16752 + - uid: 8127 components: - type: Transform - pos: -35.5,8.5 + rot: 1.5707963267948966 rad + pos: 6.5,-47.5 parent: 2 - - uid: 17527 + - uid: 8128 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,4.5 + rot: 1.5707963267948966 rad + pos: 5.5,-48.5 parent: 2 - - uid: 20291 + - uid: 8142 components: - type: Transform - pos: -24.5,-42.5 + rot: 1.5707963267948966 rad + pos: 15.5,-39.5 parent: 2 - - uid: 20298 + - uid: 8143 components: - type: Transform - pos: 84.5,-21.5 + rot: 1.5707963267948966 rad + pos: 54.5,9.5 parent: 2 - - uid: 20793 + - uid: 8145 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,18.5 + rot: 1.5707963267948966 rad + pos: 53.5,9.5 parent: 2 - - uid: 20875 + - uid: 8147 components: - type: Transform - pos: 59.5,-1.5 + rot: 1.5707963267948966 rad + pos: -2.5,-42.5 parent: 2 - - uid: 20888 + - uid: 8149 components: - type: Transform rot: 1.5707963267948966 rad - pos: -51.5,7.5 + pos: -2.5,-41.5 parent: 2 - - uid: 21036 + - uid: 8151 components: - type: Transform - pos: 83.5,-32.5 + rot: 1.5707963267948966 rad + pos: -7.5,-42.5 parent: 2 - - uid: 21388 + - uid: 8152 components: - type: Transform - pos: -19.5,-40.5 + rot: 1.5707963267948966 rad + pos: -8.5,-42.5 parent: 2 -- proto: WallWood - entities: - - uid: 3459 + - uid: 8157 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-1.5 + rot: 1.5707963267948966 rad + pos: -36.5,-51.5 parent: 2 - - uid: 3460 + - uid: 8182 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-1.5 + rot: 1.5707963267948966 rad + pos: -35.5,-51.5 parent: 2 - - uid: 3461 + - uid: 8183 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-1.5 + rot: 1.5707963267948966 rad + pos: -35.5,-52.5 parent: 2 - - uid: 3462 + - uid: 8200 components: - type: Transform - pos: -26.5,-35.5 + rot: 1.5707963267948966 rad + pos: 63.5,-33.5 parent: 2 - - uid: 3493 + - uid: 8201 components: - type: Transform - pos: -19.5,-22.5 + rot: 1.5707963267948966 rad + pos: 65.5,11.5 parent: 2 - - uid: 3497 + - uid: 8207 components: - type: Transform - pos: -20.5,-11.5 + rot: 1.5707963267948966 rad + pos: 66.5,10.5 parent: 2 - - uid: 3498 + - uid: 8208 components: - type: Transform - pos: -19.5,-23.5 + rot: 1.5707963267948966 rad + pos: 66.5,9.5 parent: 2 - - uid: 4175 + - uid: 8520 components: - type: Transform - pos: -19.5,-21.5 + rot: 1.5707963267948966 rad + pos: -30.5,25.5 parent: 2 - - uid: 4261 + - uid: 8521 components: - type: Transform - pos: -21.5,-21.5 + rot: 1.5707963267948966 rad + pos: -30.5,26.5 parent: 2 - - uid: 4263 + - uid: 8522 components: - type: Transform - pos: -22.5,-11.5 + rot: 1.5707963267948966 rad + pos: -30.5,28.5 parent: 2 - - uid: 4264 + - uid: 8884 components: - type: Transform - pos: -17.5,-21.5 + rot: 1.5707963267948966 rad + pos: 68.5,18.5 parent: 2 - - uid: 4380 + - uid: 8974 components: - type: Transform - pos: -22.5,-16.5 + pos: 44.5,-30.5 parent: 2 - - uid: 4381 + - uid: 9096 components: - type: Transform - pos: -22.5,-22.5 + pos: 23.5,-73.5 parent: 2 - - uid: 4382 + - uid: 9097 components: - type: Transform - pos: -22.5,-20.5 + pos: 24.5,-75.5 parent: 2 - - uid: 4462 + - uid: 9105 components: - type: Transform - pos: -22.5,-21.5 + rot: 1.5707963267948966 rad + pos: -29.5,28.5 parent: 2 - - uid: 4576 + - uid: 9112 components: - type: Transform - pos: -17.5,-16.5 + rot: 1.5707963267948966 rad + pos: -27.5,29.5 parent: 2 - - uid: 4995 + - uid: 9114 components: - type: Transform - pos: -19.5,-16.5 + rot: 1.5707963267948966 rad + pos: -27.5,31.5 parent: 2 - - uid: 5029 + - uid: 9115 components: - type: Transform - pos: -17.5,-11.5 + rot: 1.5707963267948966 rad + pos: -25.5,31.5 parent: 2 - - uid: 5685 + - uid: 9124 components: - type: Transform - pos: -21.5,-11.5 + rot: 1.5707963267948966 rad + pos: -27.5,27.5 parent: 2 - - uid: 6088 + - uid: 9125 components: - type: Transform - pos: -19.5,-11.5 + rot: 1.5707963267948966 rad + pos: -29.5,30.5 parent: 2 - - uid: 6125 + - uid: 9127 components: - type: Transform - pos: -21.5,-16.5 + rot: 1.5707963267948966 rad + pos: -32.5,30.5 parent: 2 - - uid: 7420 + - uid: 9128 components: - type: Transform - pos: -22.5,-23.5 + rot: 1.5707963267948966 rad + pos: 86.5,-8.5 parent: 2 - - uid: 7550 + - uid: 9131 components: - type: Transform - pos: -22.5,-19.5 + rot: 1.5707963267948966 rad + pos: 83.5,-8.5 parent: 2 - - uid: 8348 + - uid: 9133 components: - type: Transform - pos: -20.5,-16.5 + rot: 1.5707963267948966 rad + pos: 85.5,-8.5 parent: 2 - - uid: 17092 + - uid: 9135 components: - type: Transform - pos: 68.5,-54.5 + rot: 1.5707963267948966 rad + pos: -26.5,33.5 parent: 2 - - uid: 17192 + - uid: 9137 components: - type: Transform - pos: 68.5,-55.5 + rot: 1.5707963267948966 rad + pos: -23.5,33.5 parent: 2 - - uid: 17193 + - uid: 9139 components: - type: Transform - pos: 68.5,-51.5 + rot: 1.5707963267948966 rad + pos: -22.5,33.5 parent: 2 - - uid: 17194 + - uid: 9143 components: - type: Transform - pos: 68.5,-50.5 + rot: 1.5707963267948966 rad + pos: -22.5,36.5 parent: 2 - - uid: 17214 + - uid: 9144 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,-51.5 + rot: 1.5707963267948966 rad + pos: -23.5,36.5 parent: 2 - - uid: 17226 + - uid: 9146 components: - type: Transform - pos: 64.5,-55.5 + rot: 1.5707963267948966 rad + pos: -23.5,35.5 parent: 2 - - uid: 17228 + - uid: 9148 components: - type: Transform - pos: 64.5,-50.5 + rot: 1.5707963267948966 rad + pos: 14.5,-37.5 parent: 2 - - uid: 17233 + - uid: 9153 components: - type: Transform - pos: 67.5,-50.5 + rot: 1.5707963267948966 rad + pos: 16.5,-37.5 parent: 2 - - uid: 17237 + - uid: 9156 components: - type: Transform - pos: 64.5,-54.5 + rot: 1.5707963267948966 rad + pos: 16.5,-38.5 parent: 2 - - uid: 17239 + - uid: 9157 components: - type: Transform - pos: 68.5,-53.5 + rot: 1.5707963267948966 rad + pos: -62.5,-20.5 parent: 2 - - uid: 17240 + - uid: 9192 components: - type: Transform - pos: 65.5,-55.5 + rot: 1.5707963267948966 rad + pos: -62.5,-18.5 parent: 2 - - uid: 17241 + - uid: 9193 components: - type: Transform - pos: 66.5,-55.5 + rot: 1.5707963267948966 rad + pos: -61.5,-18.5 parent: 2 - - uid: 17244 + - uid: 9194 components: - type: Transform - pos: 67.5,-55.5 + rot: 1.5707963267948966 rad + pos: -59.5,-19.5 parent: 2 - - uid: 17245 + - uid: 9199 components: - type: Transform - pos: 68.5,-52.5 + rot: 1.5707963267948966 rad + pos: -39.5,-38.5 parent: 2 -- proto: WardrobeBlackFilled - entities: - - uid: 16465 + - uid: 9201 components: - type: Transform - pos: -59.5,-33.5 + rot: 1.5707963267948966 rad + pos: -38.5,-38.5 parent: 2 -- proto: WardrobeBotanistFilled - entities: - - uid: 14631 + - uid: 9202 components: - type: Transform - pos: -38.5,12.5 + rot: 1.5707963267948966 rad + pos: -37.5,-38.5 parent: 2 -- proto: WardrobeCargoFilled - entities: - - uid: 5748 + - uid: 9205 components: - type: Transform - pos: 25.5,17.5 + rot: 1.5707963267948966 rad + pos: 79.5,-32.5 parent: 2 -- proto: WardrobeGreyFilled - entities: - - uid: 16245 + - uid: 9207 components: - type: Transform - pos: 76.5,-29.5 + rot: 1.5707963267948966 rad + pos: 55.5,-38.5 parent: 2 - - uid: 16246 + - uid: 9208 components: - type: Transform - pos: 77.5,-29.5 + rot: 1.5707963267948966 rad + pos: 18.5,22.5 parent: 2 - - uid: 16247 + - uid: 9211 components: - type: Transform - pos: 79.5,-29.5 + rot: 1.5707963267948966 rad + pos: -60.5,-32.5 parent: 2 - - uid: 16248 + - uid: 9216 components: - type: Transform - pos: 80.5,-29.5 + rot: 1.5707963267948966 rad + pos: -23.5,39.5 parent: 2 -- proto: WardrobePrisonFilled - entities: - - uid: 1709 + - uid: 9217 components: - type: Transform - pos: -11.5,23.5 + rot: 1.5707963267948966 rad + pos: -33.5,30.5 parent: 2 - - uid: 4789 + - uid: 9218 components: - type: Transform - pos: -15.5,23.5 + rot: 1.5707963267948966 rad + pos: -38.5,22.5 parent: 2 - - uid: 4795 + - uid: 10288 components: - type: Transform - pos: -7.5,23.5 + rot: 1.5707963267948966 rad + pos: -38.5,20.5 parent: 2 - - uid: 5243 + - uid: 10499 components: - type: Transform - pos: -6.5,43.5 + rot: 1.5707963267948966 rad + pos: -64.5,-30.5 parent: 2 - - uid: 5244 + - uid: 10633 components: - type: Transform - pos: 3.5,43.5 + pos: 13.5,-79.5 parent: 2 -- proto: WardrobeWhiteFilled - entities: - - uid: 3464 + - uid: 10636 components: - type: Transform - pos: -27.5,-10.5 + pos: 13.5,-61.5 parent: 2 -- proto: WarningCO2 - entities: - - uid: 3465 + - uid: 10637 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-1.5 + pos: 16.5,-77.5 parent: 2 -- proto: WarningN2 - entities: - - uid: 3466 + - uid: 10646 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-1.5 + pos: 15.5,-71.5 parent: 2 -- proto: WarningO2 - entities: - - uid: 3467 + - uid: 10653 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-1.5 + pos: 14.5,-75.5 parent: 2 -- proto: WarningPlasma - entities: - - uid: 3468 + - uid: 11666 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-1.5 + rot: 1.5707963267948966 rad + pos: -30.5,39.5 parent: 2 -- proto: WarningWaste - entities: - - uid: 3469 + - uid: 12466 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-1.5 + rot: 1.5707963267948966 rad + pos: -30.5,35.5 parent: 2 - - uid: 3470 + - uid: 12670 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-1.5 + pos: 44.5,-28.5 parent: 2 -- proto: WarpPoint - entities: - - uid: 20936 + - uid: 12811 components: - type: Transform - pos: 8.5,-3.5 - parent: 21128 - - type: WarpPoint - location: Unknown shuttle -- proto: WarpPointBombing - entities: - - uid: 13731 + pos: 23.5,-69.5 + parent: 2 + - uid: 12812 components: - type: Transform - pos: -18.5,1.5 + pos: 27.5,-64.5 parent: 2 - - type: WarpPoint - location: Bar - - uid: 13732 + - uid: 12813 components: - type: Transform - pos: -2.5,24.5 + pos: 20.5,-60.5 parent: 2 - - type: WarpPoint - location: Security - - uid: 13733 + - uid: 12834 components: - type: Transform - pos: -1.5,47.5 + pos: 23.5,-77.5 parent: 2 - - type: WarpPoint - location: Perma - - uid: 13734 + - uid: 12837 components: - type: Transform - pos: 27.5,20.5 + pos: 20.5,-77.5 parent: 2 - - type: WarpPoint - location: Cargo - - uid: 13735 + - uid: 12838 components: - type: Transform - pos: 44.5,8.5 + pos: 16.5,-76.5 parent: 2 - - type: WarpPoint - location: Medical - - uid: 13736 + - uid: 14192 components: - type: Transform - pos: -1.5,-22.5 + rot: 1.5707963267948966 rad + pos: -20.5,39.5 parent: 2 - - type: WarpPoint - location: Engineering - - uid: 13737 + - uid: 14660 components: - type: Transform - pos: 40.5,-35.5 + pos: -62.5,-33.5 parent: 2 - - type: WarpPoint - location: Bridge - - uid: 13738 + - uid: 14674 components: - type: Transform - pos: -32.5,-13.5 + rot: 1.5707963267948966 rad + pos: -23.5,38.5 parent: 2 - - type: WarpPoint - location: Dorms - - uid: 13739 + - uid: 14814 components: - type: Transform - pos: -48.5,1.5 + rot: 1.5707963267948966 rad + pos: 18.5,26.5 parent: 2 - - type: WarpPoint - location: Evacuation -- proto: WaterCooler - entities: - - uid: 3471 + - uid: 14954 components: - type: Transform - pos: 4.5,-17.5 + rot: 1.5707963267948966 rad + pos: 18.5,23.5 parent: 2 - - uid: 3472 + - uid: 15011 components: - type: Transform - pos: 21.5,-18.5 + rot: 1.5707963267948966 rad + pos: -31.5,39.5 parent: 2 - - uid: 5603 + - uid: 15013 components: - type: Transform - pos: 31.5,10.5 + rot: 1.5707963267948966 rad + pos: -33.5,39.5 parent: 2 - - uid: 8266 + - uid: 15045 components: - type: Transform - pos: -3.5,21.5 + rot: 1.5707963267948966 rad + pos: 18.5,25.5 parent: 2 -- proto: WaterTankFull - entities: - - uid: 60 + - uid: 15047 components: - type: Transform - pos: 58.5,-25.5 + rot: 1.5707963267948966 rad + pos: -34.5,35.5 parent: 2 - - uid: 5162 + - uid: 15052 components: - type: Transform - anchored: True - pos: -3.5,50.5 + rot: 1.5707963267948966 rad + pos: -33.5,33.5 parent: 2 - - type: Physics - bodyType: Static - - uid: 7619 + - uid: 15056 components: - type: Transform - pos: 19.5,-35.5 + rot: 1.5707963267948966 rad + pos: -31.5,33.5 parent: 2 - - uid: 14675 + - uid: 15060 components: - type: Transform - pos: -20.5,31.5 + rot: 1.5707963267948966 rad + pos: -24.5,36.5 parent: 2 - - uid: 14678 + - uid: 15062 components: - type: Transform - pos: 17.5,17.5 + rot: 1.5707963267948966 rad + pos: 71.5,0.5 parent: 2 - - uid: 14679 + - uid: 15066 components: - type: Transform - pos: -13.5,-10.5 + rot: 1.5707963267948966 rad + pos: 71.5,6.5 parent: 2 - - uid: 14681 + - uid: 15068 components: - type: Transform - pos: -14.5,-33.5 + rot: 1.5707963267948966 rad + pos: 71.5,7.5 parent: 2 - - uid: 14685 + - uid: 15072 components: - type: Transform - pos: 5.5,-41.5 + rot: 1.5707963267948966 rad + pos: 69.5,7.5 parent: 2 - - uid: 14686 + - uid: 15073 components: - type: Transform - pos: 73.5,-20.5 + rot: 1.5707963267948966 rad + pos: 67.5,7.5 parent: 2 - - uid: 14689 + - uid: 15076 components: - type: Transform - pos: 65.5,-3.5 + rot: 1.5707963267948966 rad + pos: 72.5,-3.5 parent: 2 - - uid: 14690 + - uid: 15078 components: - type: Transform - pos: 49.5,17.5 + rot: 1.5707963267948966 rad + pos: 73.5,-3.5 parent: 2 - - uid: 14693 + - uid: 15158 components: - type: Transform - pos: -11.5,17.5 + rot: 1.5707963267948966 rad + pos: 65.5,22.5 parent: 2 - - uid: 14694 + - uid: 15205 components: - type: Transform - pos: 3.5,38.5 + rot: 1.5707963267948966 rad + pos: 71.5,2.5 parent: 2 - - uid: 14718 + - uid: 15207 components: - type: Transform - pos: 45.5,-9.5 + rot: 1.5707963267948966 rad + pos: 71.5,-1.5 parent: 2 - - uid: 14735 + - uid: 15216 components: - type: Transform - pos: 39.5,-6.5 + rot: 1.5707963267948966 rad + pos: 71.5,4.5 parent: 2 - - uid: 15758 + - uid: 15218 components: - type: Transform - pos: 67.5,0.5 + rot: 1.5707963267948966 rad + pos: -52.5,-67.5 parent: 2 - - uid: 21571 + - uid: 15220 components: - type: Transform - pos: 34.5,-2.5 + rot: 1.5707963267948966 rad + pos: -42.5,-70.5 parent: 2 -- proto: WaterTankHighCapacity - entities: - - uid: 3475 + - uid: 15223 components: - type: Transform - pos: -13.5,-22.5 + rot: 1.5707963267948966 rad + pos: -52.5,-69.5 parent: 2 - - uid: 15394 + - uid: 15224 components: - type: Transform - pos: -28.5,17.5 + rot: 1.5707963267948966 rad + pos: -42.5,-68.5 parent: 2 -- proto: WaterVaporCanister - entities: - - uid: 3477 + - uid: 15246 components: - type: Transform - pos: 22.5,-2.5 + rot: 1.5707963267948966 rad + pos: -17.5,38.5 parent: 2 - - uid: 3478 + - uid: 15247 components: - type: Transform - pos: 24.5,-17.5 + rot: 1.5707963267948966 rad + pos: -17.5,42.5 parent: 2 -- proto: WeaponCapacitorRecharger - entities: - - uid: 4590 + - uid: 15248 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-28.5 + rot: 1.5707963267948966 rad + pos: -16.5,42.5 parent: 2 - - uid: 4972 + - uid: 15249 components: - type: Transform - pos: 5.5,25.5 + rot: 1.5707963267948966 rad + pos: -10.5,42.5 parent: 2 - - uid: 5294 + - uid: 15591 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,31.5 + rot: 1.5707963267948966 rad + pos: -10.5,40.5 parent: 2 - - uid: 7621 + - uid: 15623 components: - type: Transform rot: 1.5707963267948966 rad - pos: 20.5,-38.5 + pos: -10.5,38.5 parent: 2 - - uid: 13590 + - uid: 15624 components: - type: Transform - pos: 37.5,-32.5 + rot: 1.5707963267948966 rad + pos: -42.5,18.5 parent: 2 -- proto: WeaponDisabler - entities: - - uid: 5154 + - uid: 15846 components: - type: Transform - pos: -8.829058,31.720768 + rot: 1.5707963267948966 rad + pos: -44.5,18.5 parent: 2 -- proto: WeaponLaserCarbine - entities: - - uid: 5093 + - uid: 15849 components: - type: Transform - pos: 3.539238,33.610504 + rot: 1.5707963267948966 rad + pos: -44.5,17.5 parent: 2 - - uid: 5094 + - uid: 15851 components: - type: Transform - pos: 3.539238,33.43863 + rot: 1.5707963267948966 rad + pos: -44.5,16.5 parent: 2 - - uid: 20341 + - uid: 15858 components: - type: Transform - pos: 3.53751,33.53506 + rot: 1.5707963267948966 rad + pos: -23.5,-45.5 parent: 2 -- proto: WeaponShotgunEnforcer - entities: - - uid: 1957 + - uid: 15874 components: - type: Transform - pos: 2.550524,33.364468 + rot: 1.5707963267948966 rad + pos: -24.5,-44.5 parent: 2 -- proto: WeaponShotgunKammerer - entities: - - uid: 5091 + - uid: 15877 components: - type: Transform - pos: 2.523613,33.586533 + rot: 1.5707963267948966 rad + pos: -25.5,-44.5 parent: 2 - - uid: 7564 + - uid: 15878 components: - type: Transform - pos: 2.5417395,33.683712 + rot: 1.5707963267948966 rad + pos: 68.5,22.5 parent: 2 - - uid: 20305 + - uid: 15888 components: - type: Transform - pos: 2.553135,33.488186 + rot: 1.5707963267948966 rad + pos: 59.5,28.5 parent: 2 -- proto: WeaponSubMachineGunWt550 - entities: - - uid: 5081 + - uid: 15941 components: - type: Transform - pos: -11.600864,32.694817 + rot: 1.5707963267948966 rad + pos: 61.5,28.5 parent: 2 -- proto: WeaponTurretSyndicateBroken - entities: - - uid: 853 + - uid: 15944 components: - type: Transform - pos: 9.5,-44.5 + rot: 1.5707963267948966 rad + pos: 63.5,26.5 parent: 2 - - uid: 8171 + - uid: 15945 components: - type: Transform - pos: 7.5,-44.5 + rot: 1.5707963267948966 rad + pos: 63.5,25.5 parent: 2 - - uid: 20391 + - uid: 15995 components: - type: Transform - pos: 16.5,42.5 + rot: 1.5707963267948966 rad + pos: 57.5,28.5 parent: 2 - - uid: 20392 + - uid: 16024 components: - type: Transform - pos: 16.5,39.5 + rot: 1.5707963267948966 rad + pos: 55.5,28.5 parent: 2 - - uid: 21060 + - uid: 16027 components: - type: Transform - pos: -34.5,-45.5 + rot: 1.5707963267948966 rad + pos: 55.5,26.5 parent: 2 - - uid: 22109 + - uid: 16056 components: - type: Transform - pos: 16.5,-67.5 + rot: 1.5707963267948966 rad + pos: 55.5,25.5 parent: 2 - - uid: 22140 + - uid: 16060 components: - type: Transform - pos: 22.5,-67.5 + rot: 1.5707963267948966 rad + pos: 73.5,-36.5 parent: 2 - - uid: 22145 + - uid: 16061 components: - type: Transform - pos: 22.5,-74.5 + rot: 1.5707963267948966 rad + pos: 78.5,-32.5 parent: 2 - - uid: 22170 + - uid: 16073 components: - type: Transform - pos: 16.5,-74.5 + pos: 55.5,-22.5 parent: 2 -- proto: WeaponWaterPistol - entities: - - uid: 20287 + - uid: 16087 components: - type: Transform - pos: 57.375835,-1.3271363 + rot: 1.5707963267948966 rad + pos: 84.5,-32.5 parent: 2 - - uid: 20288 + - uid: 16088 components: - type: Transform - pos: 57.594585,-1.5146363 + rot: 1.5707963267948966 rad + pos: 84.5,-30.5 parent: 2 -- proto: Welder - entities: - - uid: 3479 + - uid: 16092 components: - type: Transform - pos: -7.5141225,-25.4744 + rot: 1.5707963267948966 rad + pos: 84.5,-23.5 parent: 2 -- proto: WelderIndustrial - entities: - - uid: 17640 + - uid: 16093 components: - type: Transform - pos: 17.592184,-17.644693 + rot: 1.5707963267948966 rad + pos: 49.5,-43.5 parent: 2 -- proto: WeldingFuelTankFull - entities: - - uid: 3481 + - uid: 16094 components: - type: Transform - pos: 16.5,-13.5 + rot: 1.5707963267948966 rad + pos: 79.5,-4.5 parent: 2 - - uid: 7618 + - uid: 16096 components: - type: Transform - pos: 19.5,-36.5 + rot: 1.5707963267948966 rad + pos: 83.5,-4.5 parent: 2 - - uid: 8161 + - uid: 16098 components: - type: Transform - pos: 33.5,-2.5 + rot: 1.5707963267948966 rad + pos: 83.5,-6.5 parent: 2 - - uid: 12468 + - uid: 16100 components: - type: Transform - pos: 58.5,-26.5 + rot: 1.5707963267948966 rad + pos: 52.5,25.5 parent: 2 - - uid: 13648 + - uid: 16101 components: - type: Transform - pos: -13.5,-11.5 + rot: 1.5707963267948966 rad + pos: 51.5,25.5 parent: 2 - - uid: 14676 + - uid: 16153 components: - type: Transform - pos: -19.5,31.5 + rot: 1.5707963267948966 rad + pos: 50.5,25.5 parent: 2 - - uid: 14677 + - uid: 16160 components: - type: Transform - pos: 17.5,1.5 + rot: 1.5707963267948966 rad + pos: 49.5,22.5 parent: 2 - - uid: 14682 + - uid: 16165 components: - type: Transform - pos: -13.5,-33.5 + rot: 1.5707963267948966 rad + pos: 16.5,27.5 parent: 2 - - uid: 14683 + - uid: 16169 components: - type: Transform - pos: 21.5,-40.5 + rot: 1.5707963267948966 rad + pos: 16.5,26.5 parent: 2 - - uid: 14684 + - uid: 16171 components: - type: Transform - pos: 5.5,-42.5 + rot: 1.5707963267948966 rad + pos: -27.5,-46.5 parent: 2 - - uid: 14687 + - uid: 16178 components: - type: Transform - pos: 73.5,-21.5 + rot: 1.5707963267948966 rad + pos: -28.5,-46.5 parent: 2 - - uid: 14688 + - uid: 16179 components: - type: Transform - pos: 65.5,-4.5 + rot: 1.5707963267948966 rad + pos: -32.5,-46.5 parent: 2 - - uid: 14691 + - uid: 16309 components: - type: Transform - pos: 50.5,17.5 + rot: 1.5707963267948966 rad + pos: -33.5,-46.5 parent: 2 - - uid: 14692 + - uid: 16347 components: - type: Transform - pos: -12.5,17.5 + rot: 1.5707963267948966 rad + pos: -60.5,-33.5 parent: 2 - - uid: 14719 + - uid: 16348 components: - type: Transform - pos: 45.5,-10.5 + rot: 1.5707963267948966 rad + pos: -60.5,-36.5 parent: 2 - - uid: 14734 + - uid: 16351 components: - type: Transform - pos: 39.5,-7.5 + rot: 1.5707963267948966 rad + pos: -60.5,-37.5 parent: 2 - - uid: 15853 + - uid: 16374 components: - type: Transform - pos: 69.5,6.5 + rot: 1.5707963267948966 rad + pos: -57.5,-37.5 parent: 2 - - uid: 16753 + - uid: 16389 components: - type: Transform - pos: -3.5,-21.5 + rot: 1.5707963267948966 rad + pos: -55.5,-37.5 parent: 2 -- proto: Windoor - entities: - - uid: 3483 + - uid: 16427 components: - type: Transform - pos: -6.5,-28.5 + rot: 1.5707963267948966 rad + pos: -68.5,-27.5 parent: 2 - - uid: 3484 + - uid: 16431 components: - type: Transform - pos: -5.5,-28.5 + rot: 1.5707963267948966 rad + pos: -68.5,-25.5 parent: 2 - - uid: 3485 + - uid: 16432 components: - type: Transform - pos: 20.5,-23.5 + rot: 1.5707963267948966 rad + pos: -68.5,-23.5 parent: 2 - - uid: 3486 + - uid: 16433 components: - type: Transform - pos: 21.5,-23.5 + rot: 1.5707963267948966 rad + pos: -68.5,-22.5 parent: 2 - - uid: 3487 + - uid: 16434 components: - type: Transform - pos: 39.5,-20.5 + rot: 1.5707963267948966 rad + pos: -66.5,-22.5 parent: 2 - - uid: 3488 + - uid: 16435 components: - type: Transform - pos: 45.5,-20.5 + rot: 1.5707963267948966 rad + pos: 16.5,29.5 parent: 2 - - uid: 3489 + - uid: 16452 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-22.5 + rot: 1.5707963267948966 rad + pos: 16.5,32.5 parent: 2 - - uid: 3494 + - uid: 16455 components: - type: Transform rot: 1.5707963267948966 rad - pos: -19.5,-9.5 + pos: 16.5,33.5 parent: 2 - - uid: 3495 + - uid: 16456 components: - type: Transform - pos: -16.5,-28.5 + rot: 1.5707963267948966 rad + pos: -57.5,-18.5 parent: 2 - - uid: 3496 + - uid: 16459 components: - type: Transform - pos: -15.5,-28.5 + rot: 1.5707963267948966 rad + pos: 47.5,22.5 parent: 2 - - uid: 4764 + - uid: 16461 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,23.5 + rot: 1.5707963267948966 rad + pos: 45.5,22.5 parent: 2 - - uid: 4765 + - uid: 16484 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,24.5 + rot: 1.5707963267948966 rad + pos: 45.5,21.5 parent: 2 - - uid: 5149 + - uid: 16485 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,44.5 + rot: 1.5707963267948966 rad + pos: 45.5,20.5 parent: 2 - - uid: 5150 + - uid: 16487 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,44.5 + rot: 1.5707963267948966 rad + pos: 71.5,-33.5 parent: 2 - - uid: 5448 + - uid: 16489 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,13.5 + rot: 1.5707963267948966 rad + pos: 10.5,39.5 parent: 2 - - uid: 5449 + - uid: 16491 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,14.5 + rot: 1.5707963267948966 rad + pos: 10.5,42.5 parent: 2 - - uid: 6034 + - uid: 16492 components: - type: Transform - pos: 42.5,10.5 + rot: 1.5707963267948966 rad + pos: 9.5,43.5 parent: 2 - - uid: 6035 + - uid: 16493 components: - type: Transform - pos: 46.5,10.5 + rot: 1.5707963267948966 rad + pos: 7.5,43.5 parent: 2 - - uid: 7152 + - uid: 16509 components: - type: Transform - pos: 58.5,-15.5 + rot: 1.5707963267948966 rad + pos: 5.5,43.5 parent: 2 - - uid: 7153 + - uid: 16512 components: - type: Transform - pos: 59.5,-15.5 + rot: 1.5707963267948966 rad + pos: 86.5,-23.5 parent: 2 - - uid: 7154 + - uid: 16513 components: - type: Transform - pos: 60.5,-15.5 + rot: 1.5707963267948966 rad + pos: 17.5,38.5 parent: 2 - - uid: 15022 + - uid: 16517 components: - type: Transform rot: 1.5707963267948966 rad - pos: -34.5,21.5 + pos: 17.5,36.5 parent: 2 - - uid: 16397 + - uid: 16519 components: - type: Transform - pos: 53.5,22.5 + rot: 1.5707963267948966 rad + pos: 17.5,33.5 parent: 2 - - uid: 16912 + - uid: 16521 components: - type: Transform rot: 1.5707963267948966 rad - pos: 14.5,37.5 + pos: 93.5,-11.5 parent: 2 - - uid: 16941 + - uid: 16522 components: - - type: MetaData - name: Theatre windoor - type: Transform rot: 1.5707963267948966 rad - pos: -37.5,4.5 + pos: 93.5,-10.5 parent: 2 - - uid: 18471 + - uid: 16523 components: - - type: MetaData - name: Theatre windoor - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,4.5 + rot: 1.5707963267948966 rad + pos: 55.5,-40.5 parent: 2 - - uid: 20921 + - uid: 16552 components: - type: Transform - rot: 3.141592653589793 rad - pos: 89.5,-17.5 + rot: 1.5707963267948966 rad + pos: 5.5,55.5 parent: 2 - - uid: 20922 + - uid: 16566 components: - type: Transform - rot: 3.141592653589793 rad - pos: 90.5,-17.5 + rot: 1.5707963267948966 rad + pos: -5.5,56.5 parent: 2 -- proto: WindoorHydroponicsLocked - entities: - - uid: 3499 + - uid: 16569 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,13.5 + rot: 1.5707963267948966 rad + pos: -6.5,55.5 parent: 2 - - uid: 3500 + - uid: 16571 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,14.5 + rot: 1.5707963267948966 rad + pos: -8.5,51.5 parent: 2 -- proto: WindoorKitchenHydroponicsLocked - entities: - - uid: 14242 + - uid: 16573 components: - type: Transform - pos: -19.5,10.5 + rot: 1.5707963267948966 rad + pos: -9.5,50.5 parent: 2 -- proto: WindoorKitchenLocked - entities: - - uid: 3501 + - uid: 16575 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,13.5 + pos: -7.5,51.5 parent: 2 - - uid: 3502 + - uid: 16614 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,14.5 + pos: -38.5,24.5 parent: 2 -- proto: WindoorSecure - entities: - - uid: 3505 + - uid: 16621 components: - type: Transform rot: 1.5707963267948966 rad - pos: -31.5,-29.5 + pos: 23.5,-34.5 parent: 2 - - uid: 3506 + - uid: 16623 components: - type: Transform rot: 1.5707963267948966 rad - pos: -31.5,-28.5 + pos: 53.5,-29.5 parent: 2 - - uid: 7933 + - uid: 16625 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,-38.5 + pos: 54.5,-27.5 parent: 2 - - uid: 16324 + - uid: 16660 components: - type: Transform rot: 1.5707963267948966 rad - pos: 80.5,-6.5 + pos: 53.5,-43.5 parent: 2 - - uid: 17182 + - uid: 16730 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-50.5 + pos: 15.5,-66.5 parent: 2 - - uid: 17229 + - uid: 16754 components: - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,-50.5 + rot: 1.5707963267948966 rad + pos: 14.5,38.5 parent: 2 - - uid: 17258 + - uid: 16755 components: - type: Transform - pos: -33.5,-2.5 + rot: 1.5707963267948966 rad + pos: 16.5,38.5 parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 21184: - - DoorStatus: DoorBolt - - uid: 21184 + - uid: 16782 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-1.5 + pos: 63.5,-37.5 parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 17258: - - DoorStatus: DoorBolt - - uid: 21321 + - uid: 16787 components: - type: Transform - rot: 3.141592653589793 rad - pos: 80.5,-24.5 + pos: 61.5,-37.5 parent: 2 - - uid: 22489 + - uid: 16827 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,-35.5 + pos: 15.5,-76.5 parent: 2 -- proto: WindoorSecureArmoryLocked - entities: - - uid: 4751 + - uid: 16834 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,24.5 + pos: 12.5,43.5 parent: 2 - - uid: 4763 + - uid: 16847 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,23.5 + pos: 65.5,-37.5 parent: 2 - - uid: 5082 + - uid: 16853 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,32.5 + pos: 13.5,43.5 parent: 2 - - uid: 5083 + - uid: 16855 components: - type: Transform - pos: 3.5,33.5 + rot: 1.5707963267948966 rad + pos: 15.5,43.5 parent: 2 - - uid: 5084 + - uid: 16857 components: - type: Transform - pos: 4.5,33.5 + rot: 1.5707963267948966 rad + pos: 17.5,43.5 parent: 2 - - uid: 5085 + - uid: 16858 components: - type: Transform - pos: 5.5,33.5 + rot: 1.5707963267948966 rad + pos: 17.5,40.5 parent: 2 -- proto: WindoorSecureAtmosphericsLocked - entities: - - uid: 3507 + - uid: 16860 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-23.5 + rot: 1.5707963267948966 rad + pos: 17.5,41.5 parent: 2 - - uid: 3508 + - uid: 16861 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-23.5 + rot: 1.5707963267948966 rad + pos: 84.5,-36.5 parent: 2 - - uid: 3509 + - uid: 16913 components: - type: Transform - pos: 19.5,-22.5 + rot: 1.5707963267948966 rad + pos: 84.5,-34.5 parent: 2 -- proto: WindoorSecureBrigLocked - entities: - - uid: 4421 + - uid: 17238 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-15.5 + rot: 1.5707963267948966 rad + pos: 79.5,-35.5 parent: 2 - - uid: 4497 + - uid: 17328 components: - type: Transform - pos: -47.5,-15.5 + rot: 1.5707963267948966 rad + pos: 81.5,-36.5 parent: 2 -- proto: WindoorSecureCargoLocked - entities: - - uid: 5445 + - uid: 17362 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,13.5 + pos: 67.5,18.5 parent: 2 - - uid: 5447 + - uid: 17434 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,14.5 + rot: -1.5707963267948966 rad + pos: 6.5,-48.5 parent: 2 - - uid: 5450 + - uid: 17558 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,12.5 + pos: 62.5,-3.5 parent: 2 -- proto: WindoorSecureChapelLocked - entities: - - uid: 3510 + - uid: 18472 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-39.5 + rot: -1.5707963267948966 rad + pos: 62.5,-5.5 parent: 2 - - uid: 3511 + - uid: 18473 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-6.5 + parent: 2 + - uid: 19807 components: - type: Transform - pos: -32.5,-37.5 + rot: 1.5707963267948966 rad + pos: -42.5,22.5 parent: 2 -- proto: WindoorSecureChemistryLocked - entities: - - uid: 6036 + - uid: 19809 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,10.5 + rot: 1.5707963267948966 rad + pos: -44.5,21.5 parent: 2 - - uid: 6037 + - uid: 20302 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,10.5 + rot: 1.5707963267948966 rad + pos: -45.5,22.5 parent: 2 - - uid: 8862 + - uid: 20304 components: - type: Transform - pos: 46.5,15.5 + rot: 1.5707963267948966 rad + pos: -45.5,24.5 parent: 2 - - uid: 18993 + - uid: 20309 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,10.5 + rot: 1.5707963267948966 rad + pos: -44.5,25.5 parent: 2 -- proto: WindoorSecureCommandLocked - entities: - - uid: 1943 + - uid: 20310 components: - type: Transform rot: 1.5707963267948966 rad - pos: 14.5,-64.5 + pos: -42.5,25.5 parent: 2 - - uid: 1945 + - uid: 20331 components: - type: Transform - pos: 8.5,-47.5 + pos: 14.5,-72.5 parent: 2 - - uid: 4571 + - uid: 20358 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-29.5 + rot: 1.5707963267948966 rad + pos: -42.5,24.5 parent: 2 - - uid: 7436 + - uid: 20359 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,-27.5 + rot: 1.5707963267948966 rad + pos: -41.5,24.5 parent: 2 - - uid: 7437 + - uid: 20361 components: - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,-27.5 + rot: 1.5707963267948966 rad + pos: -17.5,-45.5 parent: 2 - - uid: 7974 + - uid: 20363 components: - type: Transform - pos: 12.5,-45.5 + rot: 1.5707963267948966 rad + pos: 88.5,-10.5 parent: 2 - - uid: 7975 + - uid: 20365 components: - type: Transform - pos: 13.5,-45.5 + rot: 1.5707963267948966 rad + pos: 90.5,-10.5 parent: 2 - - uid: 20900 + - uid: 20366 components: - type: Transform rot: 1.5707963267948966 rad - pos: 14.5,-65.5 + pos: 92.5,-10.5 parent: 2 - - uid: 20901 + - uid: 20399 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-53.5 + rot: 1.5707963267948966 rad + pos: 93.5,-17.5 parent: 2 - - uid: 22049 + - uid: 20401 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-72.5 + rot: 1.5707963267948966 rad + pos: 93.5,-18.5 parent: 2 - - uid: 22050 + - uid: 20404 components: - type: Transform rot: 1.5707963267948966 rad - pos: 20.5,-72.5 + pos: 93.5,-19.5 parent: 2 -- proto: WindoorSecureDetectiveLocked - entities: - - uid: 17488 + - uid: 20414 components: - type: Transform - pos: -24.5,28.5 + rot: 1.5707963267948966 rad + pos: 93.5,-20.5 parent: 2 -- proto: WindoorSecureEngineeringLocked - entities: - - uid: 3512 + - uid: 20530 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,-22.5 + pos: 92.5,-21.5 parent: 2 - - uid: 3513 + - uid: 20532 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-28.5 + rot: 1.5707963267948966 rad + pos: 90.5,-21.5 parent: 2 - - uid: 3514 + - uid: 20534 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-28.5 + rot: 1.5707963267948966 rad + pos: 88.5,-21.5 parent: 2 - - uid: 3515 + - uid: 20535 components: - type: Transform - pos: -7.5,-27.5 + rot: 1.5707963267948966 rad + pos: 90.5,-22.5 parent: 2 - - uid: 15163 + - uid: 20537 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,34.5 + rot: 1.5707963267948966 rad + pos: 89.5,-23.5 parent: 2 - - uid: 15164 + - uid: 20538 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,35.5 + rot: 1.5707963267948966 rad + pos: 88.5,-23.5 parent: 2 -- proto: WindoorSecureHeadOfPersonnelLocked - entities: - - uid: 3516 + - uid: 20539 components: - type: Transform - pos: 43.5,-22.5 + rot: 1.5707963267948966 rad + pos: 50.5,-39.5 parent: 2 - - uid: 7603 + - uid: 20540 components: - type: Transform rot: 1.5707963267948966 rad - pos: 22.5,-37.5 + pos: -27.5,-44.5 parent: 2 - - uid: 7604 + - uid: 20795 components: - type: Transform rot: 1.5707963267948966 rad - pos: 22.5,-36.5 + pos: -23.5,-48.5 parent: 2 -- proto: WindoorSecureJanitorLocked - entities: - - uid: 3517 + - uid: 20804 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-28.5 + pos: 14.5,-68.5 parent: 2 - - uid: 3518 + - uid: 20880 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-28.5 + rot: 1.5707963267948966 rad + pos: -19.5,-48.5 parent: 2 - - uid: 4460 + - uid: 20882 components: - type: Transform rot: 1.5707963267948966 rad - pos: -22.5,-27.5 + pos: -17.5,-48.5 parent: 2 - - uid: 20314 + - uid: 20908 components: - type: Transform rot: 1.5707963267948966 rad - pos: -22.5,-26.5 + pos: 16.5,-39.5 parent: 2 - - uid: 20315 + - uid: 20909 components: - type: Transform rot: 1.5707963267948966 rad - pos: -22.5,-25.5 + pos: 60.5,7.5 parent: 2 -- proto: WindoorSecureMedicalLocked - entities: - - uid: 4676 + - uid: 21401 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,1.5 + pos: 15.5,-73.5 parent: 2 - - uid: 5773 + - uid: 21462 components: - type: Transform - pos: 46.5,3.5 + pos: 24.5,-69.5 parent: 2 - - uid: 5979 + - uid: 21523 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,2.5 + pos: 21.5,-76.5 parent: 2 - - uid: 5980 + - uid: 21524 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,3.5 + pos: 18.5,-77.5 parent: 2 - - uid: 5981 + - uid: 21527 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,1.5 + pos: 23.5,-68.5 parent: 2 - - uid: 6905 + - uid: 21647 components: - type: Transform - pos: 59.5,18.5 + pos: 42.5,17.5 parent: 2 - - uid: 6960 + - uid: 21969 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,19.5 + pos: -68.5,-33.5 parent: 2 -- proto: WindoorSecureSalvageLocked - entities: - - uid: 5542 + - uid: 21981 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,20.5 + pos: -68.5,-29.5 parent: 2 - - uid: 5543 + - uid: 22007 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,21.5 + pos: 22.5,-59.5 parent: 2 -- proto: WindoorSecureScienceLocked - entities: - - uid: 7147 + - uid: 22017 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-15.5 + pos: 23.5,-66.5 parent: 2 - - uid: 7150 +- proto: WallShuttle + entities: + - uid: 21142 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,-15.5 - parent: 2 - - uid: 7151 + pos: 6.5,3.5 + parent: 21128 + - uid: 21143 components: - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,-15.5 - parent: 2 - - uid: 7259 + pos: 6.5,2.5 + parent: 21128 + - uid: 21144 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,-9.5 - parent: 2 - - uid: 7260 + pos: 6.5,1.5 + parent: 21128 + - uid: 21145 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,-7.5 - parent: 2 - - uid: 7263 + pos: 6.5,0.5 + parent: 21128 + - uid: 21146 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-9.5 - parent: 2 - - uid: 8184 + pos: 6.5,-0.5 + parent: 21128 + - uid: 21147 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,-8.5 - parent: 2 -- proto: WindoorServiceLocked - entities: - - uid: 3716 + pos: 6.5,-1.5 + parent: 21128 + - uid: 21148 components: - type: Transform - pos: -43.5,11.5 - parent: 2 - - uid: 4528 + pos: 6.5,-2.5 + parent: 21128 + - uid: 21149 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-28.5 - parent: 2 - - uid: 4637 + pos: 6.5,-4.5 + parent: 21128 + - uid: 21150 components: - type: Transform - pos: -53.5,-26.5 - parent: 2 -- proto: WindoorTheatreLocked - entities: - - uid: 3519 + pos: 8.5,-6.5 + parent: 21128 + - uid: 21151 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,4.5 - parent: 2 -- proto: WindowDirectional - entities: - - uid: 3527 + pos: 9.5,-6.5 + parent: 21128 + - uid: 21152 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-8.5 - parent: 2 - - uid: 3528 + pos: 10.5,-6.5 + parent: 21128 + - uid: 21153 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-10.5 - parent: 2 - - uid: 15004 + pos: 10.5,-5.5 + parent: 21128 + - uid: 21154 components: - type: Transform - pos: -34.5,22.5 - parent: 2 - - uid: 16198 + pos: 7.5,-0.5 + parent: 21128 + - uid: 21155 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 79.5,-24.5 - parent: 2 - - uid: 16401 + pos: 4.5,-0.5 + parent: 21128 + - uid: 21156 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,22.5 - parent: 2 - - uid: 16647 + pos: 4.5,-2.5 + parent: 21128 + - uid: 21157 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,36.5 - parent: 2 -- proto: WindowFrostedDirectional - entities: - - uid: 1965 + pos: 4.5,-4.5 + parent: 21128 + - uid: 21158 components: - type: Transform - pos: -22.5,-41.5 - parent: 2 - - uid: 3733 + pos: 4.5,-5.5 + parent: 21128 + - uid: 21159 components: - type: Transform - pos: -44.5,11.5 - parent: 2 - - uid: 3734 + pos: 4.5,-6.5 + parent: 21128 + - uid: 21160 components: - type: Transform - pos: -42.5,11.5 - parent: 2 - - uid: 3736 + pos: 4.5,-7.5 + parent: 21128 + - uid: 21161 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,9.5 - parent: 2 - - uid: 21590 + pos: 4.5,-8.5 + parent: 21128 + - uid: 21162 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-1.5 - parent: 2 - - uid: 21591 + pos: 3.5,-8.5 + parent: 21128 + - uid: 21163 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-1.5 - parent: 2 - - uid: 21592 + pos: 3.5,-9.5 + parent: 21128 + - uid: 21164 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-7.5 - parent: 2 - - uid: 21593 + pos: 2.5,-9.5 + parent: 21128 + - uid: 21165 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-4.5 - parent: 2 - - uid: 21594 + pos: 1.5,-9.5 + parent: 21128 + - uid: 21166 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-7.5 - parent: 2 - - uid: 21595 + pos: 0.5,-9.5 + parent: 21128 + - uid: 21167 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-41.5 - parent: 2 - - uid: 22875 + pos: 0.5,-8.5 + parent: 21128 + - uid: 21168 components: - type: Transform - pos: 47.5,-4.5 - parent: 2 - - uid: 22876 + pos: -0.5,-8.5 + parent: 21128 + - uid: 21169 components: - type: Transform - pos: 47.5,-1.5 - parent: 2 - - uid: 22877 + pos: -0.5,-7.5 + parent: 21128 + - uid: 21170 components: - type: Transform - pos: 53.5,-1.5 - parent: 2 - - uid: 22878 + pos: -0.5,-6.5 + parent: 21128 + - uid: 21171 components: - type: Transform - pos: 53.5,-7.5 - parent: 2 - - uid: 22879 + pos: -0.5,-5.5 + parent: 21128 + - uid: 21172 components: - type: Transform - pos: 47.5,-7.5 - parent: 2 - - uid: 22880 + pos: -0.5,-1.5 + parent: 21128 + - uid: 21173 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-7.5 - parent: 2 - - uid: 22881 + pos: -0.5,-0.5 + parent: 21128 + - uid: 21174 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-4.5 - parent: 2 - - uid: 22882 + pos: 10.5,3.5 + parent: 21128 + - uid: 21175 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-1.5 - parent: 2 - - uid: 22883 + pos: 10.5,1.5 + parent: 21128 +- proto: WallSolid + entities: + - uid: 2702 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-1.5 + pos: -41.5,3.5 parent: 2 - - uid: 22884 + - uid: 2703 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-1.5 + pos: 16.5,17.5 parent: 2 - - uid: 22885 + - uid: 2705 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-1.5 + pos: -18.5,10.5 parent: 2 - - uid: 22886 + - uid: 2707 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-4.5 + pos: 15.5,-0.5 parent: 2 - - uid: 22887 + - uid: 2711 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-7.5 + pos: 16.5,6.5 parent: 2 - - uid: 22888 + - uid: 2712 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-7.5 + pos: 16.5,8.5 parent: 2 - - uid: 22889 + - uid: 2713 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-7.5 + pos: 16.5,4.5 parent: 2 - - uid: 23311 + - uid: 2715 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-41.5 + pos: 16.5,9.5 parent: 2 - - uid: 23312 + - uid: 2716 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-41.5 + pos: 16.5,11.5 parent: 2 -- proto: WindowReinforcedDirectional - entities: - - uid: 1944 + - uid: 2718 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,43.5 + pos: 15.5,12.5 parent: 2 - - uid: 1952 + - uid: 2719 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-5.5 + pos: 16.5,10.5 parent: 2 - - uid: 1955 + - uid: 2722 components: - type: Transform - pos: -48.5,-30.5 + pos: 14.5,15.5 parent: 2 - - uid: 2008 + - uid: 2724 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-46.5 + pos: 12.5,15.5 parent: 2 - - uid: 2009 + - uid: 2725 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-46.5 + pos: 11.5,15.5 parent: 2 - - uid: 2010 + - uid: 2733 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-30.5 + pos: 9.5,15.5 parent: 2 - - uid: 2011 + - uid: 2743 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-10.5 + pos: 3.5,15.5 parent: 2 - - uid: 2013 + - uid: 2744 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-10.5 + pos: 2.5,15.5 parent: 2 - - uid: 2018 + - uid: 2746 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-10.5 + pos: 0.5,15.5 parent: 2 - - uid: 2019 + - uid: 2747 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-10.5 + pos: -5.5,15.5 parent: 2 - - uid: 2020 + - uid: 2748 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-10.5 + pos: -6.5,15.5 parent: 2 - - uid: 2021 + - uid: 2750 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-10.5 + pos: -8.5,15.5 parent: 2 - - uid: 2022 + - uid: 2751 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-10.5 + pos: -10.5,15.5 parent: 2 - - uid: 2023 + - uid: 2752 components: - type: Transform - pos: 2.5,-10.5 + pos: -11.5,15.5 parent: 2 - - uid: 2024 + - uid: 2754 components: - type: Transform - pos: -9.5,-20.5 + pos: -13.5,15.5 parent: 2 - - uid: 2025 + - uid: 2756 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-20.5 + pos: -14.5,14.5 parent: 2 - - uid: 2026 + - uid: 2758 components: - type: Transform - pos: -8.5,-20.5 + pos: -14.5,12.5 parent: 2 - - uid: 2027 + - uid: 2826 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-20.5 + pos: 10.5,-34.5 parent: 2 - - uid: 2028 + - uid: 2830 components: - type: Transform - pos: 0.5,-24.5 + pos: -16.5,-12.5 parent: 2 - - uid: 2029 + - uid: 2831 components: - type: Transform - pos: -0.5,-24.5 + pos: -16.5,-15.5 parent: 2 - - uid: 2030 + - uid: 2832 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-28.5 + pos: -16.5,-16.5 parent: 2 - - uid: 2031 + - uid: 2835 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-28.5 + pos: -16.5,-19.5 parent: 2 - - uid: 2032 + - uid: 2836 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-16.5 + pos: -16.5,-20.5 parent: 2 - - uid: 2033 + - uid: 2868 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-11.5 + pos: -15.5,-21.5 parent: 2 - - uid: 2034 + - uid: 2869 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-12.5 + pos: -13.5,-21.5 parent: 2 - - uid: 2036 + - uid: 2873 components: - type: Transform - pos: 24.5,-7.5 + pos: -12.5,-22.5 parent: 2 - - uid: 2038 + - uid: 2874 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-10.5 + pos: -12.5,-23.5 parent: 2 - - uid: 2039 + - uid: 2875 components: - type: Transform - pos: 28.5,-8.5 + pos: -12.5,-24.5 parent: 2 - - uid: 2040 + - uid: 2877 components: - type: Transform - pos: 22.5,-7.5 + pos: -12.5,-26.5 parent: 2 - - uid: 2042 + - uid: 2879 components: - type: Transform - pos: 29.5,-9.5 + pos: -12.5,-28.5 parent: 2 - - uid: 2044 + - uid: 2880 components: - type: Transform - pos: 23.5,-7.5 + pos: 27.5,-0.5 parent: 2 - - uid: 2045 + - uid: 2884 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-13.5 + pos: 24.5,0.5 parent: 2 - - uid: 2046 + - uid: 2885 components: - type: Transform - pos: 21.5,-7.5 + pos: 23.5,0.5 parent: 2 - - uid: 2047 + - uid: 2886 components: - type: Transform - pos: 20.5,-7.5 + pos: 22.5,0.5 parent: 2 - - uid: 2048 + - uid: 2888 components: - type: Transform - pos: 19.5,-7.5 + pos: 20.5,0.5 parent: 2 - - uid: 2090 + - uid: 2892 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-30.5 + pos: 18.5,0.5 parent: 2 - - uid: 2144 + - uid: 2894 components: - type: Transform - pos: 27.5,-44.5 + pos: 16.5,0.5 parent: 2 - - uid: 2280 + - uid: 2895 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-37.5 + pos: -15.5,-5.5 parent: 2 - - uid: 2695 + - uid: 2896 components: - type: Transform - pos: 18.5,-7.5 + pos: 16.5,1.5 parent: 2 - - uid: 2957 + - uid: 2898 components: - type: Transform - pos: 17.5,-7.5 + pos: -56.5,-22.5 parent: 2 - - uid: 2982 + - uid: 2899 components: - type: Transform - pos: 16.5,-7.5 + pos: -18.5,-5.5 parent: 2 - - uid: 2983 + - uid: 2900 components: - type: Transform - pos: 25.5,-7.5 + pos: -17.5,-5.5 parent: 2 - - uid: 2984 + - uid: 2903 components: - type: Transform - pos: 26.5,-7.5 + pos: -16.5,8.5 parent: 2 - - uid: 3053 + - uid: 2905 components: - type: Transform - pos: 27.5,-7.5 + pos: -17.5,8.5 parent: 2 - - uid: 3159 + - uid: 2906 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-16.5 + pos: -18.5,7.5 parent: 2 - - uid: 3160 + - uid: 2910 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-14.5 + pos: -16.5,4.5 parent: 2 - - uid: 3161 + - uid: 2911 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-15.5 + pos: -17.5,4.5 parent: 2 - - uid: 3182 + - uid: 2913 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-22.5 + pos: -18.5,5.5 parent: 2 - - uid: 3186 + - uid: 2915 components: - type: Transform - pos: 24.5,-27.5 + pos: -35.5,-7.5 parent: 2 - - uid: 3187 + - uid: 2917 components: - type: Transform - pos: 25.5,-27.5 + pos: -21.5,-5.5 parent: 2 - - uid: 3188 + - uid: 2918 components: - type: Transform - pos: 26.5,-27.5 + pos: -17.5,12.5 parent: 2 - - uid: 3190 + - uid: 2919 components: - type: Transform - pos: 23.5,-27.5 + pos: -17.5,16.5 parent: 2 - - uid: 3191 + - uid: 2921 components: - type: Transform - pos: 27.5,-27.5 + pos: -17.5,18.5 parent: 2 - - uid: 3192 + - uid: 2925 components: - type: Transform - pos: 28.5,-27.5 + pos: -16.5,18.5 parent: 2 - - uid: 3193 + - uid: 2926 components: - type: Transform - pos: 29.5,-27.5 + pos: -11.5,18.5 parent: 2 - - uid: 3301 + - uid: 2927 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-22.5 + pos: -13.5,18.5 parent: 2 - - uid: 3304 + - uid: 2928 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-22.5 + pos: -10.5,18.5 parent: 2 - - uid: 3375 + - uid: 2931 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-13.5 + pos: -9.5,18.5 parent: 2 - - uid: 3376 + - uid: 2960 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-12.5 + pos: -7.5,18.5 parent: 2 - - uid: 3474 + - uid: 2961 components: - type: Transform - pos: -21.5,10.5 + pos: -4.5,18.5 parent: 2 - - uid: 3529 + - uid: 2962 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-12.5 + pos: -2.5,18.5 parent: 2 - - uid: 3530 + - uid: 2963 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-12.5 + pos: -5.5,18.5 parent: 2 - - uid: 3531 + - uid: 2964 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-17.5 + pos: -1.5,18.5 parent: 2 - - uid: 3532 + - uid: 2966 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-17.5 + pos: -3.5,18.5 parent: 2 - - uid: 3533 + - uid: 2967 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-21.5 + pos: 0.5,18.5 parent: 2 - - uid: 3534 + - uid: 2968 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-23.5 + pos: 1.5,18.5 parent: 2 - - uid: 3535 + - uid: 2969 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-23.5 + pos: 3.5,18.5 parent: 2 - - uid: 3536 + - uid: 2971 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-24.5 + pos: 2.5,18.5 parent: 2 - - uid: 3537 + - uid: 2972 components: - type: Transform - pos: -38.5,5.5 + pos: 5.5,18.5 parent: 2 - - uid: 3538 + - uid: 2991 components: - type: Transform - pos: -37.5,5.5 + pos: 13.5,18.5 parent: 2 - - uid: 3539 + - uid: 3023 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,6.5 + pos: -33.5,-7.5 parent: 2 - - uid: 3540 + - uid: 3027 components: - type: Transform - pos: -27.5,5.5 + pos: 16.5,-34.5 parent: 2 - - uid: 3541 + - uid: 3037 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,5.5 + pos: 14.5,-34.5 parent: 2 - - uid: 3542 + - uid: 3040 components: - type: Transform - pos: -28.5,5.5 + pos: 9.5,-34.5 parent: 2 - - uid: 3543 + - uid: 3042 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,7.5 + pos: 7.5,-34.5 parent: 2 - - uid: 3544 + - uid: 3043 components: - type: Transform - pos: -29.5,5.5 + pos: 13.5,-34.5 parent: 2 - - uid: 3545 + - uid: 3044 components: - type: Transform - pos: -39.5,5.5 + pos: 6.5,-34.5 parent: 2 - - uid: 3546 + - uid: 3045 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,4.5 + pos: 6.5,-33.5 parent: 2 - - uid: 3547 + - uid: 3050 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,5.5 + pos: -8.5,-32.5 parent: 2 - - uid: 3548 + - uid: 3051 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,6.5 + pos: -9.5,-32.5 parent: 2 - - uid: 3549 + - uid: 3060 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,7.5 + pos: -11.5,-32.5 parent: 2 - - uid: 3550 + - uid: 3061 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-33.5 + pos: -12.5,-32.5 parent: 2 - - uid: 3551 + - uid: 3062 components: - type: Transform - pos: -26.5,-38.5 + pos: 44.5,-14.5 parent: 2 - - uid: 3552 + - uid: 3063 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-36.5 + pos: 45.5,-17.5 parent: 2 - - uid: 3553 + - uid: 3064 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,4.5 + pos: 44.5,-17.5 parent: 2 - - uid: 3554 + - uid: 3065 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,4.5 + pos: 47.5,-17.5 parent: 2 - - uid: 3555 + - uid: 3066 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,-1.5 + pos: 46.5,-17.5 parent: 2 - - uid: 3556 + - uid: 3068 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-1.5 + pos: 44.5,-15.5 parent: 2 - - uid: 3568 + - uid: 3069 components: - type: Transform - pos: -17.5,-28.5 + pos: -19.5,-5.5 parent: 2 - - uid: 3569 + - uid: 3070 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-29.5 + pos: -21.5,-8.5 parent: 2 - - uid: 3571 + - uid: 3073 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-29.5 + pos: -17.5,15.5 parent: 2 - - uid: 3574 + - uid: 3074 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-31.5 + pos: -23.5,16.5 parent: 2 - - uid: 3582 + - uid: 3076 components: - type: Transform - pos: -26.5,-31.5 + pos: -16.5,10.5 parent: 2 - - uid: 3583 + - uid: 3078 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-29.5 + pos: -15.5,15.5 parent: 2 - - uid: 3584 + - uid: 3081 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,12.5 + pos: -17.5,14.5 parent: 2 - - uid: 3585 + - uid: 3083 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-29.5 + pos: 44.5,-13.5 parent: 2 - - uid: 3586 + - uid: 3084 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-30.5 + pos: -16.5,-7.5 parent: 2 - - uid: 3649 + - uid: 3085 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-31.5 + pos: -17.5,-7.5 parent: 2 - - uid: 3672 + - uid: 3088 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-26.5 + pos: -19.5,-7.5 parent: 2 - - uid: 3673 + - uid: 3089 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-25.5 + pos: -21.5,-7.5 parent: 2 - - uid: 3674 + - uid: 3090 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-24.5 + pos: -21.5,-9.5 parent: 2 - - uid: 3675 + - uid: 3092 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-37.5 + pos: -16.5,-10.5 parent: 2 - - uid: 3676 + - uid: 3093 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,-0.5 + pos: -15.5,-9.5 parent: 2 - - uid: 3682 + - uid: 3094 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,5.5 + pos: -15.5,-8.5 parent: 2 - - uid: 3695 + - uid: 3113 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,5.5 + pos: -16.5,-22.5 parent: 2 - - uid: 3753 + - uid: 3115 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,5.5 + pos: -16.5,-23.5 parent: 2 - - uid: 3773 + - uid: 3116 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,3.5 + pos: -16.5,-24.5 parent: 2 - - uid: 3774 + - uid: 3118 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,-2.5 + pos: -18.5,-24.5 parent: 2 - - uid: 3779 + - uid: 3126 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,3.5 + pos: -21.5,-24.5 parent: 2 - - uid: 3807 + - uid: 3129 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,3.5 + pos: -19.5,-28.5 parent: 2 - - uid: 3822 + - uid: 3131 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,2.5 + pos: -13.5,-32.5 parent: 2 - - uid: 3823 + - uid: 3133 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-2.5 + pos: -15.5,-32.5 parent: 2 - - uid: 3824 + - uid: 3134 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-0.5 + pos: -17.5,-32.5 parent: 2 - - uid: 3825 + - uid: 3135 components: - - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-39.5 + - type: Transform + pos: -18.5,-32.5 parent: 2 - - uid: 3828 + - uid: 3136 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-34.5 + pos: -19.5,-32.5 parent: 2 - - uid: 3835 + - uid: 3140 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-32.5 + pos: -26.5,-8.5 parent: 2 - - uid: 3851 + - uid: 3141 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-32.5 + pos: -25.5,-7.5 parent: 2 - - uid: 3905 + - uid: 3144 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-32.5 + pos: -26.5,-11.5 parent: 2 - - uid: 3918 + - uid: 3146 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-44.5 + pos: -29.5,-7.5 parent: 2 - - uid: 3922 + - uid: 3147 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,25.5 + pos: -32.5,-7.5 parent: 2 - - uid: 3952 + - uid: 3149 components: - type: Transform - pos: -10.5,25.5 + pos: -30.5,-7.5 parent: 2 - - uid: 3963 + - uid: 3150 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,25.5 + pos: -26.5,-17.5 parent: 2 - - uid: 3974 + - uid: 3152 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,22.5 + pos: -26.5,-18.5 parent: 2 - - uid: 3975 + - uid: 3153 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,25.5 + pos: -26.5,-20.5 parent: 2 - - uid: 3976 + - uid: 3156 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,25.5 + pos: -27.5,-7.5 parent: 2 - - uid: 3977 + - uid: 3165 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,25.5 + pos: -25.5,-32.5 parent: 2 - - uid: 3978 + - uid: 3166 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,25.5 + pos: -29.5,-35.5 parent: 2 - - uid: 3979 + - uid: 3167 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,25.5 + pos: -26.5,-33.5 parent: 2 - - uid: 3980 + - uid: 3168 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,25.5 + pos: -25.5,-5.5 parent: 2 - - uid: 3981 + - uid: 3169 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,22.5 + pos: -26.5,-5.5 parent: 2 - - uid: 3982 + - uid: 3170 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,8.5 + pos: -27.5,22.5 parent: 2 - - uid: 3983 + - uid: 3172 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,8.5 + pos: -27.5,20.5 parent: 2 - - uid: 3984 + - uid: 3173 components: - type: Transform - pos: -50.5,-18.5 + pos: -27.5,18.5 parent: 2 - - uid: 3985 + - uid: 3174 components: - type: Transform - pos: -47.5,-18.5 + pos: -27.5,17.5 parent: 2 - - uid: 3986 + - uid: 3194 components: - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,8.5 + pos: -27.5,16.5 parent: 2 - - uid: 3987 + - uid: 3195 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,8.5 + pos: -27.5,15.5 parent: 2 - - uid: 3988 + - uid: 3198 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,8.5 + pos: -24.5,22.5 parent: 2 - - uid: 3989 + - uid: 3199 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,8.5 + pos: -23.5,22.5 parent: 2 - - uid: 3990 + - uid: 3200 components: - type: Transform - pos: -47.5,-5.5 + pos: -25.5,22.5 parent: 2 - - uid: 4218 + - uid: 3203 components: - type: Transform - pos: -48.5,-5.5 + pos: -20.5,22.5 parent: 2 - - uid: 4219 + - uid: 3204 components: - type: Transform - pos: -44.5,-5.5 + pos: -18.5,22.5 parent: 2 - - uid: 4221 + - uid: 3208 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,-5.5 + pos: 17.5,22.5 parent: 2 - - uid: 4228 + - uid: 3210 components: - type: Transform - pos: -46.5,-5.5 + pos: 15.5,22.5 parent: 2 - - uid: 4230 + - uid: 3212 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,14.5 + pos: 13.5,22.5 parent: 2 - - uid: 4231 + - uid: 3213 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,14.5 + pos: 12.5,22.5 parent: 2 - - uid: 4232 + - uid: 3216 components: - type: Transform - pos: -45.5,14.5 + pos: 9.5,22.5 parent: 2 - - uid: 4246 + - uid: 3218 components: - type: Transform - pos: -46.5,14.5 + pos: 8.5,23.5 parent: 2 - - uid: 4249 + - uid: 3222 components: - type: Transform - pos: -47.5,14.5 + pos: -28.5,-5.5 parent: 2 - - uid: 4251 + - uid: 3223 components: - type: Transform - pos: -45.5,-5.5 + pos: -29.5,-5.5 parent: 2 - - uid: 4252 + - uid: 3224 components: - type: Transform - pos: -51.5,-17.5 + pos: -30.5,-5.5 parent: 2 - - uid: 4294 + - uid: 3225 components: - type: Transform - pos: -43.5,-18.5 + pos: -31.5,-5.5 parent: 2 - - uid: 4310 + - uid: 3229 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-18.5 + pos: -35.5,-5.5 parent: 2 - - uid: 4311 + - uid: 3231 components: - type: Transform - pos: -44.5,-18.5 + pos: -38.5,-5.5 parent: 2 - - uid: 4312 + - uid: 3232 components: - type: Transform - pos: -46.5,-25.5 + pos: -39.5,-5.5 parent: 2 - - uid: 4313 + - uid: 3234 components: - type: Transform - pos: -47.5,-25.5 + pos: -40.5,-4.5 parent: 2 - - uid: 4344 + - uid: 3235 components: - type: Transform - pos: -48.5,-25.5 + pos: -40.5,-3.5 parent: 2 - - uid: 4346 + - uid: 3236 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,14.5 + pos: -28.5,10.5 parent: 2 - - uid: 4359 + - uid: 3239 components: - type: Transform - pos: 39.5,-2.5 + pos: -30.5,10.5 parent: 2 - - uid: 4419 + - uid: 3240 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-15.5 + pos: -31.5,10.5 parent: 2 - - uid: 4420 + - uid: 3241 components: - type: Transform - pos: -44.5,-17.5 + pos: -32.5,10.5 parent: 2 - - uid: 4428 + - uid: 3242 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,-15.5 + pos: -33.5,10.5 parent: 2 - - uid: 4430 + - uid: 3244 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,-15.5 + pos: -35.5,10.5 parent: 2 - - uid: 4524 + - uid: 3245 components: - type: Transform - pos: -59.5,-27.5 + pos: -36.5,10.5 parent: 2 - - uid: 4583 + - uid: 3246 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-27.5 + pos: -38.5,10.5 parent: 2 - - uid: 4595 + - uid: 3247 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-33.5 + pos: -39.5,10.5 parent: 2 - - uid: 4596 + - uid: 3254 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-33.5 + pos: -40.5,7.5 parent: 2 - - uid: 4597 + - uid: 3255 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-37.5 + pos: -40.5,6.5 parent: 2 - - uid: 4598 + - uid: 3258 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-37.5 + pos: -40.5,3.5 parent: 2 - - uid: 4599 + - uid: 3259 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-37.5 + pos: -40.5,-0.5 parent: 2 - - uid: 4600 + - uid: 3260 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-32.5 + pos: -40.5,-2.5 parent: 2 - - uid: 4601 + - uid: 3262 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-32.5 + pos: -31.5,8.5 parent: 2 - - uid: 4602 + - uid: 3263 components: - type: Transform - pos: 38.5,-38.5 + pos: -33.5,8.5 parent: 2 - - uid: 4603 + - uid: 3264 components: - type: Transform - pos: 42.5,-38.5 + pos: -30.5,8.5 parent: 2 - - uid: 4604 + - uid: 3266 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-38.5 + pos: -28.5,8.5 parent: 2 - - uid: 4605 + - uid: 3267 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-38.5 + pos: -27.5,8.5 parent: 2 - - uid: 4636 + - uid: 3268 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,-26.5 + pos: -38.5,8.5 parent: 2 - - uid: 4638 + - uid: 3269 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-26.5 + pos: -39.5,8.5 parent: 2 - - uid: 4682 + - uid: 3273 components: - type: Transform - pos: -47.5,-30.5 + pos: -32.5,8.5 parent: 2 - - uid: 4704 + - uid: 3274 components: - type: Transform - pos: -46.5,-30.5 + pos: -37.5,8.5 parent: 2 - - uid: 4706 + - uid: 3275 components: - type: Transform - pos: -45.5,-18.5 + pos: -36.5,8.5 parent: 2 - - uid: 4752 + - uid: 3276 components: - type: Transform - rot: 3.141592653589793 rad - pos: -65.5,-29.5 + pos: -35.5,12.5 parent: 2 - - uid: 4761 + - uid: 3278 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-22.5 + pos: -35.5,11.5 parent: 2 - - uid: 4778 + - uid: 3296 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-30.5 + pos: -35.5,15.5 parent: 2 - - uid: 4783 + - uid: 3298 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,-29.5 + pos: -35.5,16.5 parent: 2 - - uid: 4805 + - uid: 3302 components: - type: Transform - pos: 37.5,-39.5 + pos: -34.5,18.5 parent: 2 - - uid: 4807 + - uid: 3303 components: - type: Transform - pos: 40.5,-39.5 + pos: -33.5,18.5 parent: 2 - - uid: 4931 + - uid: 3305 components: - type: Transform - pos: 42.5,-39.5 + pos: -32.5,18.5 parent: 2 - - uid: 4932 + - uid: 3308 components: - type: Transform - pos: 43.5,-39.5 + pos: -30.5,18.5 parent: 2 - - uid: 4966 + - uid: 3313 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,25.5 + pos: -36.5,15.5 parent: 2 - - uid: 4967 + - uid: 3314 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,26.5 + pos: -37.5,15.5 parent: 2 - - uid: 4991 + - uid: 3315 components: - type: Transform - pos: 32.5,-39.5 + pos: -38.5,15.5 parent: 2 - - uid: 4992 + - uid: 3316 components: - type: Transform - pos: 33.5,-39.5 + pos: -39.5,15.5 parent: 2 - - uid: 4994 + - uid: 3318 components: - type: Transform - pos: 34.5,-39.5 + pos: -39.5,13.5 parent: 2 - - uid: 5075 + - uid: 3319 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,33.5 + pos: -39.5,12.5 parent: 2 - - uid: 5079 + - uid: 3321 components: - type: Transform - pos: 2.5,32.5 + pos: -42.5,9.5 parent: 2 - - uid: 5104 + - uid: 3322 components: - type: Transform - pos: 38.5,-39.5 + pos: -41.5,10.5 parent: 2 - - uid: 5105 + - uid: 3325 components: - type: Transform - pos: 39.5,-39.5 + pos: -41.5,13.5 parent: 2 - - uid: 5118 + - uid: 3326 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,15.5 + pos: -29.5,20.5 parent: 2 - - uid: 5121 + - uid: 3328 components: - type: Transform - pos: 41.5,-39.5 + pos: -13.5,17.5 parent: 2 - - uid: 5122 + - uid: 3330 components: - type: Transform - pos: 45.5,-39.5 + pos: -43.5,7.5 parent: 2 - - uid: 5197 + - uid: 3331 components: - type: Transform - pos: 44.5,-39.5 + pos: -43.5,8.5 parent: 2 - - uid: 5198 + - uid: 3333 components: - type: Transform - pos: 46.5,-39.5 + pos: -43.5,-4.5 parent: 2 - - uid: 5199 + - uid: 3334 components: - type: Transform - pos: 47.5,-39.5 + pos: -51.5,-5.5 parent: 2 - - uid: 5200 + - uid: 3335 components: - type: Transform - pos: 48.5,-39.5 + pos: 18.5,15.5 parent: 2 - - uid: 5201 + - uid: 3336 components: - type: Transform - pos: 36.5,-39.5 + pos: 18.5,16.5 parent: 2 - - uid: 5202 + - uid: 3337 components: - type: Transform - pos: 35.5,-39.5 + pos: -36.5,-7.5 parent: 2 - - uid: 5203 + - uid: 3340 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,1.5 + pos: -40.5,-7.5 parent: 2 - - uid: 5204 + - uid: 3341 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,1.5 + pos: -38.5,-7.5 parent: 2 - - uid: 5205 + - uid: 3342 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,1.5 + pos: -27.5,-11.5 parent: 2 - - uid: 5206 + - uid: 3344 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,1.5 + pos: -30.5,-11.5 parent: 2 - - uid: 5208 + - uid: 3345 components: - type: Transform - pos: 34.5,1.5 + pos: -30.5,-10.5 parent: 2 - - uid: 5426 + - uid: 3347 components: - type: Transform - pos: 33.5,1.5 + pos: -30.5,-8.5 parent: 2 - - uid: 5453 + - uid: 3349 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,13.5 + pos: -34.5,-8.5 parent: 2 - - uid: 5454 + - uid: 3350 components: - type: Transform - pos: 36.5,1.5 + pos: -34.5,-10.5 parent: 2 - - uid: 5462 + - uid: 3351 components: - type: Transform - pos: 37.5,1.5 + pos: -35.5,-11.5 parent: 2 - - uid: 5469 + - uid: 3352 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-42.5 + pos: -37.5,-11.5 parent: 2 - - uid: 5480 + - uid: 3354 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-42.5 + pos: -38.5,-10.5 parent: 2 - - uid: 5481 + - uid: 3355 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-42.5 + pos: -38.5,-9.5 parent: 2 - - uid: 5482 + - uid: 3356 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-42.5 + pos: -38.5,-8.5 parent: 2 - - uid: 5487 + - uid: 3358 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-42.5 + pos: -41.5,-8.5 parent: 2 - - uid: 5546 + - uid: 3359 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,22.5 + pos: -41.5,-9.5 parent: 2 - - uid: 5547 + - uid: 3360 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,22.5 + pos: -41.5,-10.5 parent: 2 - - uid: 5550 + - uid: 3361 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,22.5 + pos: -41.5,-11.5 parent: 2 - - uid: 5636 + - uid: 3363 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,22.5 + pos: -39.5,-11.5 parent: 2 - - uid: 5643 + - uid: 3364 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,20.5 + pos: -39.5,-12.5 parent: 2 - - uid: 5654 + - uid: 3366 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,30.5 + pos: -39.5,-14.5 parent: 2 - - uid: 5658 + - uid: 3367 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,25.5 + pos: -39.5,-16.5 parent: 2 - - uid: 5662 + - uid: 3369 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,25.5 + pos: -34.5,-16.5 parent: 2 - - uid: 5707 + - uid: 3371 components: - type: Transform - pos: -6.5,25.5 + pos: -36.5,-16.5 parent: 2 - - uid: 5708 + - uid: 3374 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,25.5 + pos: -40.5,-17.5 parent: 2 - - uid: 5710 + - uid: 3378 components: - type: Transform - pos: -11.5,30.5 + pos: -40.5,-19.5 parent: 2 - - uid: 5712 + - uid: 3379 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,30.5 + pos: -40.5,-20.5 parent: 2 - - uid: 5713 + - uid: 3381 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,25.5 + pos: -35.5,-17.5 parent: 2 - - uid: 5731 + - uid: 3383 components: - type: Transform - pos: -14.5,25.5 + pos: -35.5,-19.5 parent: 2 - - uid: 5734 + - uid: 3385 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,17.5 + pos: -27.5,-21.5 parent: 2 - - uid: 5755 + - uid: 3386 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,27.5 + pos: -29.5,-21.5 parent: 2 - - uid: 5903 + - uid: 3387 components: - type: Transform - pos: -23.5,27.5 + pos: -32.5,-21.5 parent: 2 - - uid: 5975 + - uid: 3389 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,3.5 + pos: -33.5,-21.5 parent: 2 - - uid: 5976 + - uid: 3390 components: - type: Transform - pos: 44.5,1.5 + pos: -35.5,-21.5 parent: 2 - - uid: 5977 + - uid: 3393 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,3.5 + pos: -37.5,-21.5 parent: 2 - - uid: 5978 + - uid: 3394 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,3.5 + pos: -39.5,-21.5 parent: 2 - - uid: 6030 + - uid: 3395 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,36.5 + pos: -43.5,-5.5 parent: 2 - - uid: 6031 + - uid: 3397 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,54.5 + pos: -43.5,-7.5 parent: 2 - - uid: 6059 + - uid: 3398 components: - type: Transform - pos: 2.5,54.5 + pos: -43.5,-8.5 parent: 2 - - uid: 6099 + - uid: 3399 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,54.5 + pos: -43.5,-9.5 parent: 2 - - uid: 6103 + - uid: 3400 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,54.5 + pos: -51.5,-12.5 parent: 2 - - uid: 6113 + - uid: 3401 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,54.5 + pos: -43.5,-13.5 parent: 2 - - uid: 6122 + - uid: 3404 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,49.5 + pos: -42.5,-16.5 parent: 2 - - uid: 6123 + - uid: 3405 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,49.5 + pos: -42.5,-14.5 parent: 2 - - uid: 6130 + - uid: 3407 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,49.5 + pos: -42.5,-18.5 parent: 2 - - uid: 6131 + - uid: 3409 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,54.5 + pos: -42.5,-20.5 parent: 2 - - uid: 6132 + - uid: 3412 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,54.5 + pos: -40.5,-23.5 parent: 2 - - uid: 6133 + - uid: 3414 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,54.5 + pos: -42.5,-22.5 parent: 2 - - uid: 6134 + - uid: 3415 components: - type: Transform - pos: -29.5,31.5 + pos: -41.5,-23.5 parent: 2 - - uid: 6143 + - uid: 3416 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,42.5 + pos: -38.5,-23.5 parent: 2 - - uid: 6148 + - uid: 3417 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,15.5 + pos: -37.5,-23.5 parent: 2 - - uid: 6178 + - uid: 3419 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,16.5 + pos: -34.5,-23.5 parent: 2 - - uid: 6179 + - uid: 3420 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,15.5 + pos: -33.5,-23.5 parent: 2 - - uid: 6180 + - uid: 3422 components: - type: Transform - pos: 35.5,23.5 + pos: -30.5,-23.5 parent: 2 - - uid: 6181 + - uid: 3423 components: - type: Transform - pos: 34.5,23.5 + pos: -29.5,-23.5 parent: 2 - - uid: 6182 + - uid: 3425 components: - type: Transform - pos: 36.5,23.5 + pos: -27.5,-23.5 parent: 2 - - uid: 6183 + - uid: 3427 components: - type: Transform - pos: 33.5,23.5 + pos: -35.5,-23.5 parent: 2 - - uid: 6184 + - uid: 3428 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,19.5 + pos: -31.5,-23.5 parent: 2 - - uid: 6230 + - uid: 3429 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,25.5 + pos: -26.5,-34.5 parent: 2 - - uid: 6231 + - uid: 3430 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,26.5 + pos: -27.5,-34.5 parent: 2 - - uid: 6232 + - uid: 3432 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,15.5 + pos: -29.5,-34.5 parent: 2 - - uid: 6233 + - uid: 3435 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,25.5 + pos: -32.5,-34.5 parent: 2 - - uid: 6234 + - uid: 3436 components: - type: Transform - pos: 30.5,25.5 + pos: -33.5,-34.5 parent: 2 - - uid: 6235 + - uid: 3437 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,23.5 + pos: -35.5,-34.5 parent: 2 - - uid: 6236 + - uid: 3438 components: - type: Transform - rot: 3.141592653589793 rad - pos: -68.5,-31.5 + pos: -36.5,-34.5 parent: 2 - - uid: 6237 + - uid: 3440 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,-27.5 + pos: -38.5,-34.5 parent: 2 - - uid: 6269 + - uid: 3441 components: - type: Transform - pos: -68.5,-31.5 + pos: -41.5,-32.5 parent: 2 - - uid: 6270 + - uid: 3442 components: - type: Transform - rot: 3.141592653589793 rad - pos: -65.5,-27.5 + pos: -41.5,-33.5 parent: 2 - - uid: 6271 + - uid: 3444 components: - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,-29.5 + pos: -40.5,-34.5 parent: 2 - - uid: 6272 + - uid: 3446 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -68.5,-31.5 + pos: -29.5,-37.5 parent: 2 - - uid: 6273 + - uid: 3447 components: - type: Transform - pos: 43.5,10.5 + pos: -29.5,-38.5 parent: 2 - - uid: 6274 + - uid: 3449 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,10.5 + pos: -26.5,-40.5 parent: 2 - - uid: 6275 + - uid: 3455 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-1.5 + pos: -28.5,-40.5 parent: 2 - - uid: 6276 + - uid: 3457 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-44.5 + pos: -20.5,-40.5 parent: 2 - - uid: 6461 + - uid: 3458 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-44.5 + rot: -1.5707963267948966 rad + pos: -36.5,20.5 parent: 2 - - uid: 6491 + - uid: 3567 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-44.5 + pos: -22.5,-40.5 parent: 2 - - uid: 6523 + - uid: 3581 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-44.5 + pos: -18.5,-40.5 parent: 2 - - uid: 6540 + - uid: 3685 components: - type: Transform - pos: 44.5,-1.5 + pos: -17.5,-39.5 parent: 2 - - uid: 6545 + - uid: 3686 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-0.5 + pos: -17.5,-38.5 parent: 2 - - uid: 6554 + - uid: 3688 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-0.5 + pos: -17.5,-36.5 parent: 2 - - uid: 6555 + - uid: 3689 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-1.5 + pos: -17.5,-35.5 parent: 2 - - uid: 6572 + - uid: 3690 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-0.5 + pos: -17.5,-34.5 parent: 2 - - uid: 6577 + - uid: 3693 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-42.5 + pos: -31.5,-40.5 parent: 2 - - uid: 6699 + - uid: 3694 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-5.5 + pos: -32.5,-40.5 parent: 2 - - uid: 6700 + - uid: 3751 components: - type: Transform - pos: 50.5,-3.5 + pos: -34.5,-36.5 parent: 2 - - uid: 6745 + - uid: 3757 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,11.5 + pos: -33.5,-36.5 parent: 2 - - uid: 6894 + - uid: 3758 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-42.5 + pos: -34.5,-40.5 parent: 2 - - uid: 6907 + - uid: 3759 components: - type: Transform - pos: 57.5,18.5 + pos: -34.5,-39.5 parent: 2 - - uid: 6908 + - uid: 3764 components: - type: Transform - pos: 58.5,18.5 + pos: -34.5,-38.5 parent: 2 - - uid: 6910 + - uid: 3770 components: - type: Transform - pos: 60.5,18.5 + pos: -45.5,-9.5 parent: 2 - - uid: 6911 + - uid: 3772 components: - type: Transform - pos: 61.5,18.5 + pos: -46.5,-9.5 parent: 2 - - uid: 6959 + - uid: 3776 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,18.5 + pos: -47.5,-9.5 parent: 2 - - uid: 6965 + - uid: 3778 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,-49.5 + pos: -48.5,-9.5 parent: 2 - - uid: 6971 + - uid: 3801 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-49.5 + pos: -50.5,-9.5 parent: 2 - - uid: 6972 + - uid: 3809 components: - type: Transform - pos: -44.5,-49.5 + pos: -51.5,-9.5 parent: 2 - - uid: 7007 + - uid: 3838 components: - type: Transform - pos: -45.5,-49.5 + pos: -51.5,-8.5 parent: 2 - - uid: 7086 + - uid: 3840 components: - type: Transform - pos: -46.5,-49.5 + pos: -51.5,-6.5 parent: 2 - - uid: 7100 + - uid: 3842 components: - type: Transform - pos: -47.5,-49.5 + pos: -50.5,-11.5 parent: 2 - - uid: 7111 + - uid: 3845 components: - type: Transform - pos: -48.5,-49.5 + pos: -48.5,-11.5 parent: 2 - - uid: 7193 + - uid: 3850 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-42.5 + pos: -46.5,-13.5 parent: 2 - - uid: 7194 + - uid: 3852 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,-42.5 + pos: 18.5,13.5 parent: 2 - - uid: 7231 + - uid: 4065 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,-10.5 + pos: 18.5,12.5 parent: 2 - - uid: 7233 + - uid: 4066 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,-10.5 + pos: -46.5,-16.5 parent: 2 - - uid: 7234 + - uid: 4177 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-8.5 + pos: -46.5,-18.5 parent: 2 - - uid: 7235 + - uid: 4179 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-7.5 + pos: -51.5,-18.5 parent: 2 - - uid: 7289 + - uid: 4180 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-28.5 + pos: -45.5,-12.5 parent: 2 - - uid: 7310 + - uid: 4185 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,-42.5 + pos: -51.5,-15.5 parent: 2 - - uid: 7313 + - uid: 4203 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,-44.5 + pos: -51.5,-32.5 parent: 2 - - uid: 7314 + - uid: 4205 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,-44.5 + pos: -52.5,-31.5 parent: 2 - - uid: 7315 + - uid: 4206 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-44.5 + pos: -52.5,-30.5 parent: 2 - - uid: 7343 + - uid: 4207 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-44.5 + pos: -52.5,-29.5 parent: 2 - - uid: 7344 + - uid: 4208 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-44.5 + pos: -52.5,-28.5 parent: 2 - - uid: 7345 + - uid: 4210 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-60.5 + pos: -52.5,-26.5 parent: 2 - - uid: 7346 + - uid: 4212 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-63.5 + pos: -52.5,-23.5 parent: 2 - - uid: 7347 + - uid: 4220 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-62.5 + pos: -52.5,-22.5 parent: 2 - - uid: 7348 + - uid: 4223 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-61.5 + pos: -43.5,-12.5 parent: 2 - - uid: 7366 + - uid: 4229 components: - type: Transform - pos: -52.5,-63.5 + pos: 50.5,-17.5 parent: 2 - - uid: 7369 + - uid: 4233 components: - type: Transform - pos: -42.5,-63.5 + pos: 49.5,-17.5 parent: 2 - - uid: 7434 + - uid: 4238 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,-27.5 + pos: 18.5,17.5 parent: 2 - - uid: 7435 + - uid: 4242 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,-27.5 + pos: 18.5,10.5 parent: 2 - - uid: 7448 + - uid: 4243 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-60.5 + pos: 18.5,9.5 parent: 2 - - uid: 7475 + - uid: 4289 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-60.5 + pos: 18.5,7.5 parent: 2 - - uid: 7494 + - uid: 4290 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-46.5 + pos: 18.5,6.5 parent: 2 - - uid: 7508 + - uid: 4297 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,8.5 + pos: 18.5,5.5 parent: 2 - - uid: 7509 + - uid: 4299 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,10.5 + pos: 18.5,3.5 parent: 2 - - uid: 7510 + - uid: 4300 components: - type: Transform - pos: 52.5,4.5 + pos: 18.5,2.5 parent: 2 - - uid: 7581 + - uid: 4301 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-38.5 + pos: 18.5,1.5 parent: 2 - - uid: 7582 + - uid: 4303 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-35.5 + pos: 39.5,1.5 parent: 2 - - uid: 7668 + - uid: 4308 components: - type: Transform - pos: 52.5,1.5 + pos: 40.5,0.5 parent: 2 - - uid: 7669 + - uid: 4350 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-39.5 + pos: 40.5,-6.5 parent: 2 - - uid: 7670 + - uid: 4413 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-39.5 + pos: 40.5,-8.5 parent: 2 - - uid: 7671 + - uid: 4433 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-40.5 + pos: 40.5,-9.5 parent: 2 - - uid: 7700 + - uid: 4435 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-44.5 + pos: 40.5,-11.5 parent: 2 - - uid: 7701 + - uid: 4436 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-43.5 + pos: 39.5,-11.5 parent: 2 - - uid: 7702 + - uid: 4438 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-41.5 + pos: 44.5,-11.5 parent: 2 - - uid: 7703 + - uid: 4440 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-46.5 + pos: 44.5,-9.5 parent: 2 - - uid: 7721 + - uid: 4448 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-13.5 + pos: 61.5,7.5 parent: 2 - - uid: 7722 + - uid: 4449 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-15.5 + pos: 37.5,-5.5 parent: 2 - - uid: 7723 + - uid: 4451 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,-13.5 + pos: 39.5,-5.5 parent: 2 - - uid: 7724 + - uid: 4452 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,-21.5 + pos: -15.5,-33.5 parent: 2 - - uid: 7759 + - uid: 4453 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,-12.5 + pos: 51.5,-17.5 parent: 2 - - uid: 7790 + - uid: 4454 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,-13.5 + pos: 40.5,-4.5 parent: 2 - - uid: 7795 + - uid: 4457 components: - type: Transform - pos: 27.5,25.5 + pos: -57.5,-23.5 parent: 2 - - uid: 7839 + - uid: 4459 components: - type: Transform - pos: 24.5,25.5 + pos: -57.5,-25.5 parent: 2 - - uid: 7890 + - uid: 4468 components: - type: Transform - pos: -52.5,-37.5 + rot: -1.5707963267948966 rad + pos: -34.5,20.5 parent: 2 - - uid: 7899 + - uid: 4471 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,-33.5 + rot: -1.5707963267948966 rad + pos: -31.5,20.5 parent: 2 - - uid: 7932 + - uid: 4731 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-40.5 + pos: -53.5,-30.5 parent: 2 - - uid: 7960 + - uid: 4736 components: - type: Transform - pos: 64.5,13.5 + pos: -55.5,-30.5 parent: 2 - - uid: 7991 + - uid: 4780 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,16.5 + pos: -57.5,-30.5 parent: 2 - - uid: 7992 + - uid: 4793 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,16.5 + pos: -57.5,-29.5 parent: 2 - - uid: 8005 + - uid: 4808 components: - type: Transform - pos: 25.5,-47.5 + pos: -58.5,-23.5 parent: 2 - - uid: 8006 + - uid: 4815 components: - type: Transform - pos: 26.5,-47.5 + pos: -60.5,-23.5 parent: 2 - - uid: 8009 + - uid: 4836 components: - type: Transform - pos: 27.5,-47.5 + pos: -62.5,-24.5 parent: 2 - - uid: 8017 + - uid: 4859 components: - type: Transform - pos: 28.5,-47.5 + pos: -62.5,-25.5 parent: 2 - - uid: 8087 + - uid: 4861 components: - type: Transform - pos: 26.5,-49.5 + pos: -62.5,-26.5 parent: 2 - - uid: 8163 + - uid: 4898 components: - type: Transform - pos: 25.5,-49.5 + pos: -62.5,-28.5 parent: 2 - - uid: 8199 + - uid: 4901 components: - type: Transform - pos: 28.5,-49.5 + pos: -61.5,-29.5 parent: 2 - - uid: 8204 + - uid: 4902 components: - type: Transform - pos: 27.5,-49.5 + pos: -60.5,-29.5 parent: 2 - - uid: 8205 + - uid: 4904 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-45.5 + pos: -58.5,-29.5 parent: 2 - - uid: 8206 + - uid: 4916 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-47.5 + pos: -47.5,-11.5 parent: 2 - - uid: 8230 + - uid: 4921 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-48.5 + pos: 8.5,24.5 parent: 2 - - uid: 8426 + - uid: 4922 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-61.5 + pos: 10.5,25.5 parent: 2 - - uid: 8435 + - uid: 5024 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-30.5 + pos: -41.5,15.5 parent: 2 - - uid: 8492 + - uid: 5044 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-63.5 + pos: -41.5,17.5 parent: 2 - - uid: 8923 + - uid: 5129 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-41.5 + rot: 3.141592653589793 rad + pos: -43.5,14.5 parent: 2 - - uid: 8926 + - uid: 5130 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,-45.5 + pos: -16.5,37.5 parent: 2 - - uid: 8927 + - uid: 5133 components: - type: Transform - pos: -6.5,0.5 + pos: -3.5,36.5 parent: 2 - - uid: 8928 + - uid: 5207 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-39.5 + pos: 0.5,38.5 parent: 2 - - uid: 8931 + - uid: 5435 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-39.5 + pos: 9.5,25.5 parent: 2 - - uid: 8935 + - uid: 5438 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-40.5 + pos: 12.5,26.5 parent: 2 - - uid: 8978 + - uid: 5652 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-65.5 + rot: 3.141592653589793 rad + pos: 28.5,16.5 parent: 2 - - uid: 8987 + - uid: 5766 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-39.5 + pos: 12.5,25.5 parent: 2 - - uid: 9020 + - uid: 5781 components: - type: Transform - pos: -10.5,-41.5 + pos: -21.5,-42.5 parent: 2 - - uid: 9041 + - uid: 5782 components: - type: Transform - pos: -4.5,-42.5 + rot: 3.141592653589793 rad + pos: -11.5,37.5 parent: 2 - - uid: 9043 + - uid: 5790 components: - type: Transform - pos: -5.5,-42.5 + pos: -54.5,-32.5 parent: 2 - - uid: 9099 + - uid: 5792 components: - type: Transform - pos: -6.5,-42.5 + pos: -56.5,-32.5 parent: 2 - - uid: 9185 + - uid: 5798 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,28.5 + pos: -27.5,-42.5 parent: 2 - - uid: 9271 + - uid: 5799 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-17.5 + pos: -28.5,-42.5 parent: 2 - - uid: 9272 + - uid: 5800 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,-17.5 + pos: -33.5,-42.5 parent: 2 - - uid: 10658 + - uid: 5808 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,20.5 + pos: -31.5,-42.5 parent: 2 - - uid: 11658 + - uid: 5950 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-41.5 + rot: 3.141592653589793 rad + pos: 25.5,16.5 parent: 2 - - uid: 11660 + - uid: 6050 components: - type: Transform - pos: -11.5,-41.5 + pos: -64.5,-23.5 parent: 2 - - uid: 12256 + - uid: 6064 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-65.5 + rot: 3.141592653589793 rad + pos: 7.5,38.5 parent: 2 - - uid: 12257 + - uid: 6080 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,0.5 + pos: -49.5,-33.5 parent: 2 - - uid: 12695 + - uid: 6082 components: - type: Transform - pos: 38.5,-28.5 + pos: -50.5,-35.5 parent: 2 - - uid: 12705 + - uid: 6085 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-30.5 + pos: -45.5,-33.5 parent: 2 - - uid: 12805 + - uid: 6095 components: - type: Transform rot: 3.141592653589793 rad - pos: -10.5,-40.5 + pos: 5.5,38.5 parent: 2 - - uid: 12810 + - uid: 6098 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 77.5,-7.5 + pos: -45.5,-34.5 parent: 2 - - uid: 13490 + - uid: 6127 components: - type: Transform - pos: 39.5,-28.5 + pos: -50.5,-33.5 parent: 2 - - uid: 13741 + - uid: 6158 components: - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,-7.5 + pos: -44.5,-32.5 parent: 2 - - uid: 13965 + - uid: 6484 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,19.5 + rot: 3.141592653589793 rad + pos: 29.5,14.5 parent: 2 - - uid: 13981 + - uid: 6485 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-64.5 + rot: 3.141592653589793 rad + pos: 29.5,12.5 parent: 2 - - uid: 14245 + - uid: 6489 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,31.5 + rot: 3.141592653589793 rad + pos: 29.5,10.5 parent: 2 - - uid: 14260 + - uid: 6493 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,16.5 + rot: 3.141592653589793 rad + pos: 32.5,17.5 parent: 2 - - uid: 14705 + - uid: 6496 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,37.5 + rot: 3.141592653589793 rad + pos: 32.5,22.5 parent: 2 - - uid: 14786 + - uid: 6498 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,12.5 + rot: 3.141592653589793 rad + pos: 31.5,11.5 parent: 2 - - uid: 14953 + - uid: 6499 components: - type: Transform rot: 3.141592653589793 rad - pos: -21.5,-46.5 + pos: 30.5,24.5 parent: 2 - - uid: 14955 + - uid: 6500 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,27.5 + rot: 3.141592653589793 rad + pos: 24.5,24.5 parent: 2 - - uid: 14957 + - uid: 6525 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,28.5 + rot: 3.141592653589793 rad + pos: 45.5,-2.5 parent: 2 - - uid: 14958 + - uid: 6544 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,29.5 + pos: -15.5,-36.5 parent: 2 - - uid: 14961 + - uid: 6553 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,32.5 + rot: 3.141592653589793 rad + pos: 46.5,-5.5 parent: 2 - - uid: 14968 + - uid: 6571 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,32.5 + rot: 3.141592653589793 rad + pos: 53.5,0.5 parent: 2 - - uid: 14969 + - uid: 6618 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,31.5 + rot: 3.141592653589793 rad + pos: 54.5,-2.5 parent: 2 - - uid: 15032 + - uid: 6619 components: - type: Transform rot: 3.141592653589793 rad - pos: -29.5,32.5 + pos: 56.5,-5.5 parent: 2 - - uid: 15040 + - uid: 6620 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,36.5 + rot: 3.141592653589793 rad + pos: 55.5,-5.5 parent: 2 - - uid: 15041 + - uid: 6624 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,37.5 + rot: 3.141592653589793 rad + pos: 56.5,-6.5 parent: 2 - - uid: 15042 + - uid: 6627 components: - type: Transform rot: 3.141592653589793 rad - pos: -34.5,37.5 + pos: 53.5,-5.5 parent: 2 - - uid: 15043 + - uid: 6635 components: - type: Transform rot: 3.141592653589793 rad - pos: -28.5,39.5 + pos: 53.5,-2.5 parent: 2 - - uid: 15053 + - uid: 6802 components: - type: Transform - pos: -34.5,36.5 + pos: -19.5,16.5 parent: 2 - - uid: 15091 + - uid: 6899 components: - type: Transform - pos: 73.5,4.5 + pos: -20.5,16.5 parent: 2 - - uid: 15193 + - uid: 6936 components: - type: Transform rot: 3.141592653589793 rad - pos: -30.5,-1.5 + pos: 12.5,28.5 parent: 2 - - uid: 15215 + - uid: 6943 components: - type: Transform rot: 3.141592653589793 rad - pos: 72.5,-1.5 - parent: 2 - - uid: 15222 - components: - - type: Transform - pos: 72.5,0.5 + pos: 12.5,31.5 parent: 2 - - uid: 15226 + - uid: 6958 components: - type: Transform - pos: 72.5,-1.5 + pos: 1.5,41.5 parent: 2 - - uid: 15227 + - uid: 6973 components: - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,-1.5 + pos: -44.5,-35.5 parent: 2 - - uid: 15231 + - uid: 6975 components: - type: Transform - pos: 72.5,4.5 + pos: 45.5,-11.5 parent: 2 - - uid: 15232 + - uid: 6986 components: - type: Transform - pos: 73.5,0.5 + pos: 54.5,-17.5 parent: 2 - - uid: 15233 + - uid: 6987 components: - type: Transform - pos: 73.5,-1.5 + pos: 3.5,41.5 parent: 2 - - uid: 15234 + - uid: 6989 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,-1.5 + pos: -6.5,41.5 parent: 2 - - uid: 15235 + - uid: 6990 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,-1.5 + pos: -6.5,44.5 parent: 2 - - uid: 15254 + - uid: 6991 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-2.5 + pos: 1.5,49.5 parent: 2 - - uid: 15404 + - uid: 6993 components: - type: Transform - pos: -20.5,10.5 + pos: 3.5,49.5 parent: 2 - - uid: 15413 + - uid: 7005 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,40.5 + pos: 45.5,-13.5 parent: 2 - - uid: 15602 + - uid: 7014 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,1.5 + pos: 12.5,34.5 parent: 2 - - uid: 15843 + - uid: 7024 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,34.5 + rot: 1.5707963267948966 rad + pos: 12.5,36.5 parent: 2 - - uid: 15844 + - uid: 7027 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,35.5 + pos: 52.5,-17.5 parent: 2 - - uid: 15869 + - uid: 7184 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,39.5 + pos: 55.5,-17.5 parent: 2 - - uid: 15875 + - uid: 7229 components: - type: Transform rot: 3.141592653589793 rad - pos: -13.5,37.5 + pos: 55.5,0.5 parent: 2 - - uid: 15879 + - uid: 7444 components: - type: Transform rot: 3.141592653589793 rad - pos: -12.5,42.5 + pos: 47.5,-5.5 parent: 2 - - uid: 15880 + - uid: 7456 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,42.5 + pos: 58.5,24.5 parent: 2 - - uid: 15881 + - uid: 7465 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,42.5 + pos: 62.5,24.5 parent: 2 - - uid: 15882 + - uid: 7469 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,40.5 + pos: 49.5,19.5 parent: 2 - - uid: 15887 + - uid: 7471 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-43.5 + pos: 48.5,19.5 parent: 2 - - uid: 15954 + - uid: 7473 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-44.5 + pos: 66.5,-1.5 parent: 2 - - uid: 15993 + - uid: 7481 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-21.5 + rot: 3.141592653589793 rad + pos: 86.5,-14.5 parent: 2 - - uid: 16005 + - uid: 7484 components: - type: Transform - pos: 62.5,28.5 + rot: 3.141592653589793 rad + pos: 86.5,-16.5 parent: 2 - - uid: 16074 + - uid: 7489 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,28.5 + rot: 3.141592653589793 rad + pos: 86.5,-17.5 parent: 2 - - uid: 16089 + - uid: 7495 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-36.5 + pos: -53.5,-34.5 parent: 2 - - uid: 16097 + - uid: 7496 components: - type: Transform - pos: 66.5,-36.5 + pos: 54.5,21.5 parent: 2 - - uid: 16125 + - uid: 7497 components: - type: Transform - pos: 66.5,-36.5 + pos: 66.5,2.5 parent: 2 - - uid: 16126 + - uid: 7499 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,-26.5 + pos: 55.5,22.5 parent: 2 - - uid: 16155 + - uid: 7501 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,-27.5 + pos: 54.5,19.5 parent: 2 - - uid: 16156 + - uid: 7502 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,-28.5 + pos: -53.5,-35.5 parent: 2 - - uid: 16162 + - uid: 7506 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,-29.5 + pos: 55.5,24.5 parent: 2 - - uid: 16172 + - uid: 7512 components: - type: Transform - pos: 84.5,-29.5 + rot: 3.141592653589793 rad + pos: 77.5,-8.5 parent: 2 - - uid: 16173 + - uid: 7515 components: - type: Transform - pos: 52.5,-21.5 + pos: 66.5,4.5 parent: 2 - - uid: 16174 + - uid: 7537 components: - type: Transform - pos: 77.5,-7.5 + rot: 3.141592653589793 rad + pos: 80.5,-8.5 parent: 2 - - uid: 16175 + - uid: 7539 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,-7.5 + rot: 3.141592653589793 rad + pos: 75.5,-23.5 parent: 2 - - uid: 16176 + - uid: 7750 components: - type: Transform - pos: 49.5,23.5 + pos: 56.5,-17.5 parent: 2 - - uid: 16192 + - uid: 7906 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,23.5 + pos: -9.5,-35.5 parent: 2 - - uid: 16310 + - uid: 7910 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-46.5 + pos: -14.5,-35.5 parent: 2 - - uid: 16311 + - uid: 7920 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-46.5 + rot: 1.5707963267948966 rad + pos: -9.5,-37.5 parent: 2 - - uid: 16322 + - uid: 7931 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,-7.5 + pos: -12.5,-35.5 parent: 2 - - uid: 16323 + - uid: 7950 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,-5.5 + pos: -8.5,-38.5 parent: 2 - - uid: 16336 + - uid: 7994 components: - type: Transform - pos: -65.5,-33.5 + pos: -8.5,-40.5 parent: 2 - - uid: 16344 + - uid: 8173 components: - type: Transform - pos: -67.5,-33.5 + rot: 3.141592653589793 rad + pos: 52.5,5.5 parent: 2 - - uid: 16385 + - uid: 8176 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,33.5 + rot: 3.141592653589793 rad + pos: 54.5,5.5 parent: 2 - - uid: 16386 + - uid: 8178 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,41.5 + rot: 3.141592653589793 rad + pos: 56.5,5.5 parent: 2 - - uid: 16393 + - uid: 8179 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,40.5 + rot: 3.141592653589793 rad + pos: 58.5,4.5 parent: 2 - - uid: 16404 + - uid: 8180 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-34.5 + rot: 3.141592653589793 rad + pos: 58.5,3.5 parent: 2 - - uid: 16428 + - uid: 8181 components: - type: Transform rot: 3.141592653589793 rad - pos: 66.5,-34.5 + pos: 58.5,1.5 parent: 2 - - uid: 16443 + - uid: 8223 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,-34.5 + pos: 16.5,24.5 parent: 2 - - uid: 16453 + - uid: 8226 components: - type: Transform - pos: 66.5,-34.5 + rot: 3.141592653589793 rad + pos: 81.5,-21.5 parent: 2 - - uid: 16454 + - uid: 8227 components: - type: Transform - pos: -21.5,-47.5 + pos: 15.5,27.5 parent: 2 - - uid: 16474 + - uid: 8229 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-63.5 + pos: 13.5,27.5 parent: 2 - - uid: 16515 + - uid: 8231 components: - type: Transform - pos: 19.5,-55.5 + pos: 66.5,-4.5 parent: 2 - - uid: 16528 + - uid: 8233 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,-36.5 + pos: 17.5,24.5 parent: 2 - - uid: 16536 + - uid: 8234 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-3.5 + rot: 3.141592653589793 rad + pos: 80.5,-21.5 parent: 2 - - uid: 16567 + - uid: 8245 components: - type: Transform rot: 3.141592653589793 rad - pos: -27.5,12.5 + pos: 78.5,-21.5 parent: 2 - - uid: 16568 + - uid: 9147 components: - type: Transform rot: 3.141592653589793 rad - pos: 12.5,41.5 + pos: 76.5,-21.5 parent: 2 - - uid: 16590 + - uid: 9154 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,41.5 + rot: -1.5707963267948966 rad + pos: -32.5,27.5 parent: 2 - - uid: 16638 + - uid: 10988 components: - type: Transform - pos: 80.5,-36.5 + rot: -1.5707963267948966 rad + pos: -32.5,26.5 parent: 2 - - uid: 16662 + - uid: 11059 components: - type: Transform - pos: 44.5,-20.5 + pos: -34.5,-4.5 parent: 2 - - uid: 16663 + - uid: 11655 components: - type: Transform - pos: 43.5,-20.5 + pos: 68.5,-4.5 parent: 2 - - uid: 16683 + - uid: 11656 components: - type: Transform - pos: 82.5,-36.5 + pos: 71.5,-4.5 parent: 2 - - uid: 16684 + - uid: 12571 components: - type: Transform - pos: -29.5,-3.5 + rot: -1.5707963267948966 rad + pos: -32.5,24.5 parent: 2 - - uid: 16685 + - uid: 12603 components: - type: Transform - pos: -23.5,-47.5 + rot: -1.5707963267948966 rad + pos: -32.5,22.5 parent: 2 - - uid: 16686 + - uid: 13177 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 93.5,-13.5 + pos: -34.5,-1.5 parent: 2 - - uid: 16916 + - uid: 13745 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 93.5,-14.5 + pos: -15.5,17.5 parent: 2 - - uid: 17015 + - uid: 13983 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 93.5,-15.5 + pos: -42.5,-32.5 parent: 2 - - uid: 17019 + - uid: 14402 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 93.5,-12.5 + rot: -1.5707963267948966 rad + pos: 10.5,18.5 parent: 2 - - uid: 17031 + - uid: 14695 components: - type: Transform rot: 3.141592653589793 rad - pos: 66.5,-36.5 + pos: 75.5,-30.5 parent: 2 - - uid: 17308 + - uid: 14704 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,15.5 + rot: 3.141592653589793 rad + pos: 75.5,-27.5 parent: 2 - - uid: 17325 + - uid: 14862 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-64.5 + rot: 3.141592653589793 rad + pos: 75.5,-22.5 parent: 2 - - uid: 17330 + - uid: 14870 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,48.5 + rot: -1.5707963267948966 rad + pos: 7.5,18.5 parent: 2 - - uid: 17484 + - uid: 15165 components: - type: Transform - pos: 42.5,-20.5 + rot: 1.5707963267948966 rad + pos: -37.5,-5.5 parent: 2 - - uid: 17504 + - uid: 15173 components: - type: Transform - pos: -17.5,-47.5 + rot: -1.5707963267948966 rad + pos: 11.5,18.5 parent: 2 - - uid: 17513 + - uid: 15201 components: - type: Transform - pos: -19.5,-47.5 + pos: 70.5,-0.5 parent: 2 - - uid: 17537 + - uid: 15203 components: - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,-27.5 + pos: 67.5,-0.5 parent: 2 - - uid: 17539 + - uid: 15210 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -67.5,-29.5 + pos: 70.5,3.5 parent: 2 - - uid: 18277 + - uid: 15213 components: - type: Transform - pos: -34.5,-3.5 + pos: 67.5,3.5 parent: 2 - - uid: 18992 + - uid: 16085 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -67.5,-27.5 + pos: 59.5,26.5 parent: 2 - - uid: 19740 + - uid: 16150 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -68.5,-31.5 + rot: 3.141592653589793 rad + pos: 75.5,-28.5 parent: 2 - - uid: 19757 + - uid: 16164 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-28.5 + rot: 3.141592653589793 rad + pos: 82.5,-8.5 parent: 2 - - uid: 19794 + - uid: 16186 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-71.5 + pos: 51.5,19.5 parent: 2 - - uid: 20306 + - uid: 16187 components: - type: Transform - pos: 41.5,-20.5 + rot: 3.141592653589793 rad + pos: 76.5,-30.5 parent: 2 - - uid: 20307 + - uid: 16188 components: - type: Transform - pos: 40.5,-20.5 + rot: 3.141592653589793 rad + pos: 77.5,-30.5 parent: 2 - - uid: 20354 + - uid: 16190 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,0.5 + pos: 81.5,-26.5 parent: 2 - - uid: 20355 + - uid: 16345 components: - type: Transform - pos: -6.5,0.5 + rot: 1.5707963267948966 rad + pos: -33.5,-43.5 parent: 2 - - uid: 20395 + - uid: 16350 components: - type: Transform rot: 3.141592653589793 rad - pos: 33.5,23.5 + pos: 79.5,-30.5 parent: 2 - - uid: 20396 + - uid: 16353 components: - type: Transform - pos: 0.5,25.5 + rot: 3.141592653589793 rad + pos: 81.5,-30.5 parent: 2 - - uid: 20397 + - uid: 16379 components: - type: Transform - pos: 24.5,15.5 + rot: 3.141592653589793 rad + pos: 82.5,-23.5 parent: 2 - - uid: 20515 + - uid: 16380 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-39.5 + rot: 3.141592653589793 rad + pos: 82.5,-22.5 parent: 2 - - uid: 20881 + - uid: 16384 components: - type: Transform rot: 3.141592653589793 rad - pos: 14.5,-64.5 + pos: 81.5,-29.5 parent: 2 - - uid: 21185 + - uid: 16388 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-2.5 + pos: 49.5,20.5 parent: 2 - - uid: 21402 + - uid: 16514 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-53.5 + pos: 15.5,33.5 parent: 2 - - uid: 21416 + - uid: 16516 components: - type: Transform - pos: 9.5,-47.5 + pos: 13.5,33.5 parent: 2 - - uid: 21421 + - uid: 17065 components: - type: Transform - pos: 7.5,-47.5 + pos: -23.5,-42.5 parent: 2 - - uid: 21553 + - uid: 17066 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-43.5 + pos: -25.5,-42.5 parent: 2 - - uid: 21561 + - uid: 20110 components: - type: Transform - pos: -1.5,-9.5 + rot: 1.5707963267948966 rad + pos: -8.5,-37.5 parent: 2 - - uid: 21562 + - uid: 20297 components: - type: Transform - pos: -0.5,-9.5 + pos: 85.5,-21.5 parent: 2 - - uid: 21563 + - uid: 20300 components: - type: Transform - pos: 0.5,-9.5 + pos: 84.5,-22.5 parent: 2 - - uid: 21564 + - uid: 20791 components: - type: Transform - pos: 1.5,-9.5 + rot: -1.5707963267948966 rad + pos: 7.5,15.5 parent: 2 - - uid: 21565 + - uid: 20907 components: - type: Transform - pos: 2.5,-9.5 + rot: 1.5707963267948966 rad + pos: -15.5,-38.5 parent: 2 - - uid: 21646 + - uid: 20923 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,43.5 + pos: -32.5,-42.5 parent: 2 - - uid: 21752 + - uid: 21035 components: - type: Transform - pos: 47.5,15.5 + pos: 81.5,-32.5 parent: 2 - - uid: 21846 + - uid: 21042 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,1.5 + pos: 80.5,-32.5 parent: 2 - - uid: 21847 + - uid: 21940 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,1.5 + pos: -29.5,-4.5 parent: 2 - - uid: 21939 +- proto: WallSolidRust + entities: + - uid: 757 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-1.5 + pos: -27.5,-43.5 parent: 2 - - uid: 21959 + - uid: 766 components: - type: Transform - pos: -49.5,-49.5 + pos: -25.5,-41.5 parent: 2 - - uid: 21960 + - uid: 2704 components: - type: Transform rot: 1.5707963267948966 rad - pos: -27.5,12.5 + pos: -17.5,10.5 parent: 2 - - uid: 21964 + - uid: 2706 components: - type: Transform - pos: -27.5,12.5 + rot: 1.5707963267948966 rad + pos: 14.5,17.5 parent: 2 - - uid: 21990 + - uid: 2708 components: - type: Transform - pos: -22.5,10.5 + rot: 1.5707963267948966 rad + pos: 15.5,0.5 parent: 2 - - uid: 22034 + - uid: 2709 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,10.5 + rot: 1.5707963267948966 rad + pos: 16.5,3.5 parent: 2 - - uid: 22051 + - uid: 2710 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,10.5 + rot: 1.5707963267948966 rad + pos: 16.5,5.5 parent: 2 - - uid: 22052 + - uid: 2714 components: - type: Transform rot: 1.5707963267948966 rad - pos: -22.5,10.5 + pos: 16.5,7.5 parent: 2 - - uid: 22053 + - uid: 2717 components: - type: Transform - pos: -23.5,12.5 + rot: 1.5707963267948966 rad + pos: 16.5,12.5 parent: 2 - - uid: 22352 + - uid: 2720 components: - type: Transform - pos: 1.5,50.5 + rot: 1.5707963267948966 rad + pos: 15.5,13.5 parent: 2 - - uid: 22366 + - uid: 2721 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,40.5 + pos: 15.5,15.5 parent: 2 - - uid: 22367 + - uid: 2723 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,12.5 + rot: 1.5707963267948966 rad + pos: 13.5,15.5 parent: 2 - - uid: 22372 + - uid: 2727 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,12.5 + rot: 1.5707963267948966 rad + pos: 10.5,15.5 parent: 2 - - uid: 22410 + - uid: 2735 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,40.5 + rot: 1.5707963267948966 rad + pos: 8.5,15.5 parent: 2 - - uid: 22468 + - uid: 2739 components: - type: Transform - pos: -11.5,22.5 + rot: 1.5707963267948966 rad + pos: 6.5,15.5 parent: 2 - - uid: 22487 + - uid: 2742 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,-34.5 + rot: 1.5707963267948966 rad + pos: 5.5,15.5 parent: 2 - - uid: 22488 + - uid: 2745 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,-36.5 + rot: 1.5707963267948966 rad + pos: 1.5,15.5 parent: 2 - - uid: 22502 + - uid: 2749 components: - type: Transform - pos: -10.5,22.5 + rot: 1.5707963267948966 rad + pos: -7.5,15.5 parent: 2 - - uid: 22503 + - uid: 2753 components: - type: Transform - pos: -9.5,22.5 + rot: 1.5707963267948966 rad + pos: -12.5,15.5 parent: 2 - - uid: 22504 + - uid: 2755 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,22.5 + rot: 1.5707963267948966 rad + pos: -14.5,15.5 parent: 2 - - uid: 22505 + - uid: 2757 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,22.5 + rot: 1.5707963267948966 rad + pos: -14.5,13.5 parent: 2 - - uid: 22506 + - uid: 2821 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,22.5 + rot: 1.5707963267948966 rad + pos: -14.5,10.5 parent: 2 - - uid: 22507 + - uid: 2827 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,22.5 + pos: -13.5,-5.5 parent: 2 - - uid: 22508 + - uid: 2829 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,22.5 + rot: 1.5707963267948966 rad + pos: -15.5,-10.5 parent: 2 - - uid: 22509 + - uid: 2833 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,22.5 + rot: 1.5707963267948966 rad + pos: -16.5,-17.5 parent: 2 - - uid: 22510 + - uid: 2834 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,22.5 + pos: -16.5,-18.5 parent: 2 - - uid: 22511 + - uid: 2867 components: - type: Transform - pos: -5.5,22.5 + rot: 1.5707963267948966 rad + pos: -16.5,-21.5 parent: 2 - - uid: 22512 + - uid: 2870 components: - type: Transform - pos: -6.5,22.5 + rot: 1.5707963267948966 rad + pos: -12.5,-21.5 parent: 2 - - uid: 22513 + - uid: 2876 components: - type: Transform - pos: -7.5,22.5 + rot: 1.5707963267948966 rad + pos: -12.5,-25.5 parent: 2 - - uid: 22514 + - uid: 2878 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,22.5 + rot: 1.5707963267948966 rad + pos: -12.5,-27.5 parent: 2 - - uid: 22515 + - uid: 2881 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,22.5 + rot: 1.5707963267948966 rad + pos: 27.5,0.5 parent: 2 - - uid: 22516 + - uid: 2882 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,22.5 + rot: 1.5707963267948966 rad + pos: 26.5,0.5 parent: 2 - - uid: 22517 + - uid: 2883 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,22.5 + rot: 1.5707963267948966 rad + pos: 25.5,0.5 parent: 2 - - uid: 22518 + - uid: 2887 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,22.5 + rot: 1.5707963267948966 rad + pos: 21.5,0.5 parent: 2 - - uid: 22519 + - uid: 2891 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,22.5 + rot: 1.5707963267948966 rad + pos: 19.5,0.5 parent: 2 - - uid: 22520 + - uid: 2893 components: - type: Transform rot: 1.5707963267948966 rad - pos: -13.5,22.5 + pos: 17.5,0.5 parent: 2 - - uid: 22521 + - uid: 2897 components: - type: Transform - pos: -13.5,22.5 + rot: 1.5707963267948966 rad + pos: -16.5,-5.5 parent: 2 - - uid: 22522 + - uid: 2909 components: - type: Transform - pos: -14.5,22.5 + rot: -1.5707963267948966 rad + pos: -18.5,6.5 parent: 2 - - uid: 22523 + - uid: 2912 components: - type: Transform - pos: -15.5,22.5 + rot: -1.5707963267948966 rad + pos: -15.5,8.5 parent: 2 - - uid: 22524 + - uid: 2914 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,22.5 + rot: 1.5707963267948966 rad + pos: -20.5,-5.5 parent: 2 - - uid: 22525 + - uid: 2916 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,30.5 + rot: 1.5707963267948966 rad + pos: -15.5,-7.5 parent: 2 - - uid: 22526 + - uid: 2920 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,30.5 + rot: 1.5707963267948966 rad + pos: -17.5,17.5 parent: 2 - - uid: 22527 + - uid: 2922 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,30.5 + rot: 1.5707963267948966 rad + pos: -15.5,18.5 parent: 2 - - uid: 22528 + - uid: 2923 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,30.5 + pos: -16.5,-13.5 parent: 2 - - uid: 22529 + - uid: 2924 components: - type: Transform - pos: -8.5,30.5 + rot: 1.5707963267948966 rad + pos: -12.5,18.5 parent: 2 - - uid: 22530 + - uid: 2929 components: - type: Transform - pos: -5.5,30.5 + rot: 1.5707963267948966 rad + pos: -8.5,18.5 parent: 2 - - uid: 22531 + - uid: 2930 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,30.5 + rot: 1.5707963267948966 rad + pos: -6.5,18.5 parent: 2 - - uid: 22532 + - uid: 2965 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,30.5 + rot: 1.5707963267948966 rad + pos: -0.5,18.5 parent: 2 - - uid: 22533 + - uid: 2970 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,30.5 + pos: 4.5,18.5 parent: 2 - - uid: 22534 + - uid: 2988 components: - type: Transform rot: 3.141592653589793 rad - pos: -3.5,33.5 + pos: 9.5,18.5 parent: 2 - - uid: 22535 + - uid: 2990 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,33.5 + pos: 12.5,18.5 parent: 2 - - uid: 22536 + - uid: 3024 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,32.5 + pos: -34.5,-7.5 parent: 2 - - uid: 22537 + - uid: 3025 components: - type: Transform - pos: -3.5,32.5 + rot: 1.5707963267948966 rad + pos: 14.5,18.5 parent: 2 - - uid: 22538 + - uid: 3026 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,32.5 + rot: 1.5707963267948966 rad + pos: 16.5,-35.5 parent: 2 - - uid: 22539 + - uid: 3036 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,33.5 + rot: 1.5707963267948966 rad + pos: 15.5,-34.5 parent: 2 - - uid: 22540 + - uid: 3038 components: - type: Transform - pos: 1.5,54.5 + rot: 1.5707963267948966 rad + pos: 12.5,-34.5 parent: 2 - - uid: 22541 + - uid: 3039 components: - type: Transform - pos: 0.5,54.5 + rot: 1.5707963267948966 rad + pos: 11.5,-34.5 parent: 2 - - uid: 22542 + - uid: 3041 components: - type: Transform - pos: -0.5,54.5 + rot: 1.5707963267948966 rad + pos: 8.5,-34.5 parent: 2 - - uid: 22543 + - uid: 3046 components: - type: Transform - pos: -1.5,54.5 + rot: 1.5707963267948966 rad + pos: 6.5,-32.5 parent: 2 - - uid: 22544 + - uid: 3052 components: - type: Transform - pos: -2.5,54.5 + rot: 1.5707963267948966 rad + pos: -10.5,-32.5 parent: 2 - - uid: 22545 + - uid: 3067 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,54.5 + rot: 1.5707963267948966 rad + pos: -23.5,10.5 parent: 2 - - uid: 22546 + - uid: 3071 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,49.5 + rot: 1.5707963267948966 rad + pos: -18.5,16.5 parent: 2 - - uid: 22547 + - uid: 3072 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,49.5 + pos: -22.5,16.5 parent: 2 - - uid: 22548 + - uid: 3075 components: - type: Transform - pos: 0.5,49.5 + rot: 1.5707963267948966 rad + pos: -23.5,15.5 parent: 2 - - uid: 22549 + - uid: 3077 components: - type: Transform - pos: -0.5,49.5 + rot: 1.5707963267948966 rad + pos: -15.5,10.5 parent: 2 - - uid: 22550 + - uid: 3079 components: - type: Transform - pos: -3.5,49.5 + rot: 1.5707963267948966 rad + pos: -16.5,15.5 parent: 2 - - uid: 22551 + - uid: 3080 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,49.5 + rot: 1.5707963267948966 rad + pos: -17.5,13.5 parent: 2 - - uid: 22552 + - uid: 3082 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,49.5 + pos: 44.5,-16.5 parent: 2 - - uid: 22553 + - uid: 3086 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,44.5 + pos: -18.5,-7.5 parent: 2 - - uid: 22554 + - uid: 3087 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,44.5 + pos: -20.5,-7.5 parent: 2 - - uid: 22555 + - uid: 3117 components: - type: Transform - pos: 1.5,44.5 + rot: 1.5707963267948966 rad + pos: -17.5,-24.5 parent: 2 - - uid: 22556 + - uid: 3119 components: - type: Transform - pos: -4.5,44.5 + rot: 1.5707963267948966 rad + pos: -20.5,-24.5 parent: 2 - - uid: 22557 + - uid: 3120 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,44.5 + rot: 1.5707963267948966 rad + pos: -19.5,-24.5 parent: 2 - - uid: 22558 + - uid: 3125 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,44.5 + rot: 1.5707963267948966 rad + pos: -22.5,-24.5 parent: 2 - - uid: 22559 + - uid: 3127 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,44.5 + rot: 1.5707963267948966 rad + pos: -21.5,-28.5 parent: 2 - - uid: 22560 + - uid: 3128 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,44.5 + rot: 1.5707963267948966 rad + pos: -20.5,-28.5 parent: 2 - - uid: 22561 + - uid: 3130 components: - type: Transform rot: 1.5707963267948966 rad - pos: -13.5,37.5 + pos: -18.5,-28.5 parent: 2 - - uid: 22562 + - uid: 3132 components: - type: Transform rot: 1.5707963267948966 rad - pos: -12.5,42.5 + pos: -14.5,-32.5 parent: 2 - - uid: 22563 + - uid: 3137 components: - type: Transform - pos: -12.5,42.5 + rot: 1.5707963267948966 rad + pos: -21.5,-32.5 parent: 2 - - uid: 22564 + - uid: 3138 components: - type: Transform - pos: -14.5,42.5 + rot: 1.5707963267948966 rad + pos: -20.5,-32.5 parent: 2 - - uid: 22565 + - uid: 3139 components: - type: Transform - pos: -13.5,42.5 + rot: 1.5707963267948966 rad + pos: -26.5,-7.5 parent: 2 - - uid: 22566 + - uid: 3142 components: - type: Transform - pos: -15.5,42.5 + rot: 1.5707963267948966 rad + pos: -26.5,-9.5 parent: 2 - - uid: 22567 + - uid: 3143 components: - type: Transform - pos: -13.5,37.5 + rot: 1.5707963267948966 rad + pos: -26.5,-10.5 parent: 2 - - uid: 22568 + - uid: 3145 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,37.5 + rot: 1.5707963267948966 rad + pos: -31.5,-7.5 parent: 2 - - uid: 22569 + - uid: 3148 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,42.5 + rot: 1.5707963267948966 rad + pos: -26.5,-16.5 parent: 2 - - uid: 22570 + - uid: 3151 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,40.5 + pos: -26.5,-19.5 parent: 2 - - uid: 22571 + - uid: 3154 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,39.5 + pos: -26.5,-21.5 parent: 2 - - uid: 22572 + - uid: 3157 components: - type: Transform - pos: -17.5,39.5 + rot: 1.5707963267948966 rad + pos: -26.5,-23.5 parent: 2 - - uid: 22573 + - uid: 3163 components: - type: Transform - pos: -9.5,41.5 + rot: 1.5707963267948966 rad + pos: -29.5,-36.5 parent: 2 - - uid: 22574 + - uid: 3164 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,41.5 + rot: 1.5707963267948966 rad + pos: -26.5,-32.5 parent: 2 - - uid: 22575 + - uid: 3171 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,41.5 + rot: 1.5707963267948966 rad + pos: -27.5,21.5 parent: 2 - - uid: 22576 + - uid: 3196 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,41.5 + pos: -27.5,10.5 parent: 2 - - uid: 22577 + - uid: 3197 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,39.5 + rot: 1.5707963267948966 rad + pos: -26.5,22.5 parent: 2 - - uid: 22578 + - uid: 3201 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,39.5 + rot: 1.5707963267948966 rad + pos: -22.5,22.5 parent: 2 - - uid: 22579 + - uid: 3202 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,39.5 + rot: 1.5707963267948966 rad + pos: -21.5,22.5 parent: 2 - - uid: 22580 + - uid: 3205 components: - type: Transform rot: 1.5707963267948966 rad - pos: -25.5,39.5 + pos: -17.5,22.5 parent: 2 - - uid: 22581 + - uid: 3209 components: - type: Transform - pos: -25.5,39.5 + rot: 1.5707963267948966 rad + pos: 16.5,22.5 parent: 2 - - uid: 22582 + - uid: 3214 components: - type: Transform - pos: -26.5,39.5 + rot: 1.5707963267948966 rad + pos: 11.5,22.5 parent: 2 - - uid: 22583 + - uid: 3215 components: - type: Transform - pos: -27.5,39.5 + rot: 1.5707963267948966 rad + pos: 10.5,22.5 parent: 2 - - uid: 22584 + - uid: 3217 components: - type: Transform - pos: -28.5,39.5 + rot: 1.5707963267948966 rad + pos: 8.5,22.5 parent: 2 - - uid: 22585 + - uid: 3219 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,39.5 + rot: 1.5707963267948966 rad + pos: -27.5,-5.5 parent: 2 - - uid: 22586 + - uid: 3220 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,39.5 + rot: 1.5707963267948966 rad + pos: -28.5,-7.5 parent: 2 - - uid: 22587 + - uid: 3221 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,39.5 + rot: 1.5707963267948966 rad + pos: -34.5,-11.5 parent: 2 - - uid: 22588 + - uid: 3226 components: - type: Transform rot: 1.5707963267948966 rad - pos: -22.5,39.5 + pos: -32.5,-5.5 parent: 2 - - uid: 22589 + - uid: 3230 components: - type: Transform - pos: -22.5,39.5 + rot: 1.5707963267948966 rad + pos: -36.5,-5.5 parent: 2 - - uid: 22590 + - uid: 3233 components: - type: Transform - pos: -34.5,30.5 + rot: 1.5707963267948966 rad + pos: -40.5,-5.5 parent: 2 - - uid: 22591 + - uid: 3238 components: - type: Transform - pos: -35.5,30.5 + rot: 1.5707963267948966 rad + pos: -29.5,10.5 parent: 2 - - uid: 22592 + - uid: 3243 components: - type: Transform - pos: -37.5,30.5 + rot: 1.5707963267948966 rad + pos: -34.5,10.5 parent: 2 - - uid: 22593 + - uid: 3248 components: - type: Transform - pos: -38.5,30.5 + rot: 1.5707963267948966 rad + pos: -42.5,10.5 parent: 2 - - uid: 22594 + - uid: 3252 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,30.5 + rot: 1.5707963267948966 rad + pos: -42.5,8.5 parent: 2 - - uid: 22595 + - uid: 3261 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,30.5 + rot: 1.5707963267948966 rad + pos: -40.5,-1.5 parent: 2 - - uid: 22596 + - uid: 3277 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,30.5 + rot: 1.5707963267948966 rad + pos: -35.5,13.5 parent: 2 - - uid: 22597 + - uid: 3299 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,30.5 + rot: 1.5707963267948966 rad + pos: -35.5,17.5 parent: 2 - - uid: 22598 + - uid: 3300 components: - type: Transform rot: 1.5707963267948966 rad - pos: -34.5,30.5 + pos: -35.5,18.5 parent: 2 - - uid: 22599 + - uid: 3307 components: - type: Transform rot: 1.5707963267948966 rad - pos: -37.5,30.5 + pos: -31.5,18.5 parent: 2 - - uid: 22600 + - uid: 3311 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,30.5 + rot: 1.5707963267948966 rad + pos: -29.5,18.5 parent: 2 - - uid: 22601 + - uid: 3312 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,30.5 + rot: 1.5707963267948966 rad + pos: -28.5,18.5 parent: 2 - - uid: 22602 + - uid: 3317 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,29.5 + rot: 1.5707963267948966 rad + pos: -39.5,14.5 parent: 2 - - uid: 22603 + - uid: 3320 components: - type: Transform rot: 1.5707963267948966 rad - pos: -40.5,29.5 + pos: -39.5,11.5 parent: 2 - - uid: 22604 + - uid: 3327 components: - type: Transform rot: 1.5707963267948966 rad - pos: -40.5,28.5 + pos: -28.5,20.5 parent: 2 - - uid: 22605 + - uid: 3332 components: - type: Transform rot: 1.5707963267948966 rad - pos: -40.5,27.5 + pos: -42.5,-5.5 parent: 2 - - uid: 22606 + - uid: 3338 components: - type: Transform - pos: -40.5,27.5 + rot: 1.5707963267948966 rad + pos: -37.5,-7.5 parent: 2 - - uid: 22607 + - uid: 3339 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-3.5 + rot: 1.5707963267948966 rad + pos: -39.5,-7.5 parent: 2 - - uid: 22608 + - uid: 3343 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-2.5 + rot: 1.5707963267948966 rad + pos: -29.5,-11.5 parent: 2 - - uid: 22609 + - uid: 3346 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-2.5 + rot: 1.5707963267948966 rad + pos: -30.5,-9.5 parent: 2 - - uid: 22610 + - uid: 3348 components: - type: Transform rot: 1.5707963267948966 rad - pos: -34.5,-2.5 + pos: -34.5,-9.5 parent: 2 - - uid: 22611 + - uid: 3353 components: - type: Transform rot: 1.5707963267948966 rad - pos: -34.5,-3.5 + pos: -38.5,-11.5 parent: 2 - - uid: 22612 + - uid: 3357 components: - type: Transform rot: 1.5707963267948966 rad - pos: -29.5,-3.5 + pos: -41.5,-7.5 parent: 2 - - uid: 22613 + - uid: 3362 components: - type: Transform rot: 1.5707963267948966 rad - pos: -29.5,-2.5 + pos: -40.5,-11.5 parent: 2 - - uid: 22614 + - uid: 3365 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-2.5 + rot: 1.5707963267948966 rad + pos: -39.5,-13.5 parent: 2 - - uid: 22615 + - uid: 3368 components: - type: Transform rot: 1.5707963267948966 rad - pos: -56.5,-0.5 + pos: -31.5,-16.5 parent: 2 - - uid: 22616 + - uid: 3370 components: - type: Transform rot: 1.5707963267948966 rad - pos: -56.5,-2.5 + pos: -35.5,-16.5 parent: 2 - - uid: 22617 + - uid: 3372 components: - type: Transform rot: 1.5707963267948966 rad - pos: -55.5,0.5 + pos: -38.5,-16.5 parent: 2 - - uid: 22618 + - uid: 3373 components: - type: Transform rot: 1.5707963267948966 rad - pos: -55.5,1.5 + pos: -40.5,-16.5 parent: 2 - - uid: 22619 + - uid: 3377 components: - type: Transform rot: 1.5707963267948966 rad - pos: -55.5,2.5 + pos: -40.5,-18.5 parent: 2 - - uid: 22620 + - uid: 3380 components: - type: Transform - pos: -55.5,0.5 + rot: 1.5707963267948966 rad + pos: -40.5,-21.5 parent: 2 - - uid: 22621 + - uid: 3382 components: - type: Transform - pos: -56.5,-0.5 + rot: 1.5707963267948966 rad + pos: -35.5,-18.5 parent: 2 - - uid: 22622 + - uid: 3384 components: - type: Transform - pos: -57.5,-0.5 + rot: 1.5707963267948966 rad + pos: -30.5,-21.5 parent: 2 - - uid: 22623 + - uid: 3388 components: - type: Transform - pos: -56.5,-2.5 + rot: 1.5707963267948966 rad + pos: -34.5,-21.5 parent: 2 - - uid: 22624 + - uid: 3391 components: - type: Transform - pos: -57.5,-2.5 + rot: 1.5707963267948966 rad + pos: -35.5,-20.5 parent: 2 - - uid: 22625 + - uid: 3392 components: - type: Transform - pos: -56.5,3.5 + rot: 1.5707963267948966 rad + pos: -36.5,-21.5 parent: 2 - - uid: 22626 + - uid: 3396 components: - type: Transform - pos: -57.5,3.5 + rot: 1.5707963267948966 rad + pos: -43.5,-6.5 parent: 2 - - uid: 22627 + - uid: 3402 components: - type: Transform - pos: -56.5,5.5 + rot: 1.5707963267948966 rad + pos: -42.5,-13.5 parent: 2 - - uid: 22628 + - uid: 3403 components: - type: Transform - pos: -57.5,5.5 + rot: 1.5707963267948966 rad + pos: -42.5,-15.5 parent: 2 - - uid: 22629 + - uid: 3406 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,3.5 + rot: 1.5707963267948966 rad + pos: -42.5,-17.5 parent: 2 - - uid: 22630 + - uid: 3408 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,5.5 + rot: 1.5707963267948966 rad + pos: -42.5,-19.5 parent: 2 - - uid: 22631 + - uid: 3410 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-0.5 + rot: 1.5707963267948966 rad + pos: -42.5,-21.5 parent: 2 - - uid: 22632 + - uid: 3411 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-2.5 + rot: 1.5707963267948966 rad + pos: -42.5,-23.5 parent: 2 - - uid: 22633 + - uid: 3413 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,0.5 + rot: 1.5707963267948966 rad + pos: -39.5,-23.5 parent: 2 - - uid: 22634 + - uid: 3418 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,1.5 + rot: 1.5707963267948966 rad + pos: -36.5,-23.5 parent: 2 - - uid: 22635 + - uid: 3421 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,2.5 + rot: 1.5707963267948966 rad + pos: -32.5,-23.5 parent: 2 - - uid: 22636 + - uid: 3426 components: - type: Transform - pos: -49.5,-5.5 + rot: 1.5707963267948966 rad + pos: -28.5,-23.5 parent: 2 - - uid: 22637 + - uid: 3431 components: - type: Transform - pos: -50.5,-5.5 + rot: 1.5707963267948966 rad + pos: -28.5,-34.5 parent: 2 - - uid: 22638 + - uid: 3433 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-5.5 + rot: 1.5707963267948966 rad + pos: -30.5,-34.5 parent: 2 - - uid: 22639 + - uid: 3434 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-5.5 + rot: 1.5707963267948966 rad + pos: -31.5,-34.5 parent: 2 - - uid: 22640 + - uid: 3439 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,-5.5 + rot: 1.5707963267948966 rad + pos: -37.5,-34.5 parent: 2 - - uid: 22641 + - uid: 3443 components: - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-5.5 + rot: 1.5707963267948966 rad + pos: -41.5,-34.5 parent: 2 - - uid: 22642 + - uid: 3445 components: - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,-5.5 + rot: 1.5707963267948966 rad + pos: -39.5,-34.5 parent: 2 - - uid: 22643 + - uid: 3448 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-5.5 + rot: 1.5707963267948966 rad + pos: -29.5,-40.5 parent: 2 - - uid: 22644 + - uid: 3450 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-5.5 + rot: 1.5707963267948966 rad + pos: -25.5,-40.5 parent: 2 - - uid: 22645 + - uid: 3456 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-18.5 + rot: 1.5707963267948966 rad + pos: -23.5,-40.5 parent: 2 - - uid: 22646 + - uid: 3482 components: - type: Transform rot: 3.141592653589793 rad - pos: -44.5,-18.5 + pos: 86.5,-11.5 parent: 2 - - uid: 22647 + - uid: 3492 components: - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-18.5 + pos: -21.5,-10.5 parent: 2 - - uid: 22648 + - uid: 3573 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-18.5 + pos: -20.5,-42.5 parent: 2 - - uid: 22649 + - uid: 3618 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-16.5 + rot: 1.5707963267948966 rad + pos: -17.5,-40.5 parent: 2 - - uid: 22650 + - uid: 3687 components: - type: Transform rot: 1.5707963267948966 rad - pos: -51.5,-16.5 + pos: -17.5,-37.5 parent: 2 - - uid: 22651 + - uid: 3691 components: - type: Transform rot: 1.5707963267948966 rad - pos: -51.5,-17.5 + pos: -17.5,-33.5 parent: 2 - - uid: 22652 + - uid: 3692 components: - type: Transform rot: 1.5707963267948966 rad - pos: -50.5,-18.5 + pos: -30.5,-40.5 parent: 2 - - uid: 22653 + - uid: 3750 components: - type: Transform rot: 1.5707963267948966 rad - pos: -47.5,-18.5 + pos: -33.5,-40.5 parent: 2 - - uid: 22654 + - uid: 3754 components: - type: Transform rot: 1.5707963267948966 rad - pos: -43.5,-18.5 + pos: -34.5,-37.5 parent: 2 - - uid: 22655 + - uid: 3756 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,-18.5 + rot: 1.5707963267948966 rad + pos: -33.5,-35.5 parent: 2 - - uid: 22656 + - uid: 3766 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,-18.5 + rot: 1.5707963267948966 rad + pos: -41.5,-0.5 parent: 2 - - uid: 22657 + - uid: 3767 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,-18.5 + rot: 1.5707963267948966 rad + pos: -51.5,-4.5 parent: 2 - - uid: 22658 + - uid: 3769 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,-17.5 + rot: 1.5707963267948966 rad + pos: -44.5,-9.5 parent: 2 - - uid: 22659 + - uid: 3783 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,-16.5 + rot: 1.5707963267948966 rad + pos: -49.5,-9.5 parent: 2 - - uid: 22660 + - uid: 3839 components: - type: Transform rot: 1.5707963267948966 rad - pos: -65.5,-29.5 + pos: -51.5,-7.5 parent: 2 - - uid: 22661 + - uid: 3841 components: - type: Transform rot: 1.5707963267948966 rad - pos: -65.5,-27.5 + pos: -51.5,-11.5 parent: 2 - - uid: 22662 + - uid: 3843 components: - type: Transform - pos: -66.5,-29.5 + rot: 1.5707963267948966 rad + pos: -46.5,-11.5 parent: 2 - - uid: 22663 + - uid: 3844 components: - type: Transform - pos: -65.5,-29.5 + rot: 1.5707963267948966 rad + pos: 18.5,14.5 parent: 2 - - uid: 22664 + - uid: 3846 components: - type: Transform - pos: -67.5,-29.5 + rot: 1.5707963267948966 rad + pos: -49.5,-11.5 parent: 2 - - uid: 22665 + - uid: 3848 components: - type: Transform - pos: -67.5,-27.5 + rot: 1.5707963267948966 rad + pos: -51.5,-13.5 parent: 2 - - uid: 22666 + - uid: 3849 components: - type: Transform - pos: -66.5,-27.5 + rot: 1.5707963267948966 rad + pos: -46.5,-12.5 parent: 2 - - uid: 22667 + - uid: 4067 components: - type: Transform - pos: -65.5,-27.5 + rot: 1.5707963267948966 rad + pos: -46.5,-17.5 parent: 2 - - uid: 22668 + - uid: 4178 components: - type: Transform - pos: -54.5,-22.5 + rot: 1.5707963267948966 rad + pos: -51.5,-14.5 parent: 2 - - uid: 22669 + - uid: 4187 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-22.5 + rot: 1.5707963267948966 rad + pos: -43.5,-32.5 parent: 2 - - uid: 22670 + - uid: 4204 components: - type: Transform - pos: -53.5,-22.5 + rot: 1.5707963267948966 rad + pos: -52.5,-32.5 parent: 2 - - uid: 22671 + - uid: 4209 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,-22.5 + rot: 1.5707963267948966 rad + pos: -52.5,-27.5 parent: 2 - - uid: 22672 + - uid: 4211 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,-22.5 + rot: 1.5707963267948966 rad + pos: -46.5,-15.5 parent: 2 - - uid: 22673 + - uid: 4224 components: - type: Transform rot: 1.5707963267948966 rad - pos: -53.5,-22.5 + pos: -55.5,-22.5 parent: 2 - - uid: 22674 + - uid: 4234 components: - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,-30.5 + rot: 1.5707963267948966 rad + pos: 48.5,-17.5 parent: 2 - - uid: 22675 + - uid: 4235 components: - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-30.5 + rot: 1.5707963267948966 rad + pos: 16.5,18.5 parent: 2 - - uid: 22676 + - uid: 4236 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,-30.5 + rot: 1.5707963267948966 rad + pos: 17.5,18.5 parent: 2 - - uid: 22677 + - uid: 4237 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,-25.5 + rot: 1.5707963267948966 rad + pos: 18.5,18.5 parent: 2 - - uid: 22678 + - uid: 4239 components: - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-25.5 + rot: 1.5707963267948966 rad + pos: 27.5,1.5 parent: 2 - - uid: 22679 + - uid: 4240 components: - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,-25.5 + rot: 1.5707963267948966 rad + pos: -50.5,-32.5 parent: 2 - - uid: 22680 + - uid: 4241 components: - type: Transform rot: 1.5707963267948966 rad - pos: -46.5,-25.5 + pos: 18.5,11.5 parent: 2 - - uid: 22681 + - uid: 4262 components: - type: Transform rot: 1.5707963267948966 rad - pos: -46.5,-30.5 + pos: 18.5,8.5 parent: 2 - - uid: 22682 + - uid: 4298 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,-30.5 + rot: 1.5707963267948966 rad + pos: 18.5,4.5 parent: 2 - - uid: 22683 + - uid: 4304 components: - type: Transform rot: -1.5707963267948966 rad - pos: -48.5,-25.5 + pos: -35.5,20.5 parent: 2 - - uid: 22684 + - uid: 4378 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-29.5 + pos: -16.5,-11.5 parent: 2 - - uid: 22685 + - uid: 4412 components: - type: Transform rot: 1.5707963267948966 rad - pos: -41.5,-29.5 + pos: 40.5,-7.5 parent: 2 - - uid: 22686 + - uid: 4434 components: - type: Transform rot: 1.5707963267948966 rad - pos: -41.5,-30.5 + pos: 40.5,-10.5 parent: 2 - - uid: 22687 + - uid: 4439 components: - type: Transform rot: 1.5707963267948966 rad - pos: -41.5,-31.5 + pos: 44.5,-10.5 parent: 2 - - uid: 22688 + - uid: 4455 components: - type: Transform rot: 1.5707963267948966 rad - pos: -41.5,-26.5 + pos: -44.5,-12.5 parent: 2 - - uid: 22689 + - uid: 4456 components: - type: Transform rot: 1.5707963267948966 rad - pos: -41.5,-24.5 + pos: -57.5,-22.5 parent: 2 - - uid: 22690 + - uid: 4458 components: - type: Transform rot: 1.5707963267948966 rad - pos: -41.5,-25.5 - parent: 2 - - uid: 22691 - components: - - type: Transform - pos: -41.5,-26.5 + pos: -57.5,-24.5 parent: 2 - - uid: 22692 + - uid: 4469 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-24.5 + rot: -1.5707963267948966 rad + pos: -33.5,20.5 parent: 2 - - uid: 22693 + - uid: 4470 components: - type: Transform - pos: -41.5,-31.5 + rot: -1.5707963267948966 rad + pos: -32.5,20.5 parent: 2 - - uid: 22694 + - uid: 4487 components: - type: Transform rot: 1.5707963267948966 rad - pos: -26.5,-30.5 + pos: -57.5,-26.5 parent: 2 - - uid: 22695 + - uid: 4496 components: - type: Transform rot: 1.5707963267948966 rad - pos: -26.5,-31.5 + pos: -57.5,-28.5 parent: 2 - - uid: 22696 + - uid: 4628 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-26.5 + pos: -21.5,16.5 parent: 2 - - uid: 22697 + - uid: 4734 components: - type: Transform rot: 1.5707963267948966 rad - pos: -26.5,-25.5 + pos: -54.5,-30.5 parent: 2 - - uid: 22698 + - uid: 4740 components: - type: Transform rot: 1.5707963267948966 rad - pos: -26.5,-24.5 - parent: 2 - - uid: 22699 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-24.5 + pos: -56.5,-30.5 parent: 2 - - uid: 22700 + - uid: 4810 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-24.5 + rot: 1.5707963267948966 rad + pos: -59.5,-23.5 parent: 2 - - uid: 22701 + - uid: 4834 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-25.5 + rot: 1.5707963267948966 rad + pos: -61.5,-23.5 parent: 2 - - uid: 22702 + - uid: 4835 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-26.5 + rot: 1.5707963267948966 rad + pos: -62.5,-23.5 parent: 2 - - uid: 22703 + - uid: 4860 components: - type: Transform - pos: -26.5,-26.5 + rot: 1.5707963267948966 rad + pos: -62.5,-27.5 parent: 2 - - uid: 22704 + - uid: 4900 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-12.5 + rot: 1.5707963267948966 rad + pos: -62.5,-29.5 parent: 2 - - uid: 22705 + - uid: 4903 components: - type: Transform rot: 1.5707963267948966 rad - pos: -22.5,-12.5 + pos: -59.5,-29.5 parent: 2 - - uid: 22706 + - uid: 4923 components: - type: Transform rot: 1.5707963267948966 rad - pos: -22.5,-13.5 + pos: 11.5,25.5 parent: 2 - - uid: 22707 + - uid: 4924 components: - type: Transform rot: 1.5707963267948966 rad - pos: -22.5,-14.5 + pos: 8.5,25.5 parent: 2 - - uid: 22708 + - uid: 5023 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-15.5 + rot: 3.141592653589793 rad + pos: -41.5,14.5 parent: 2 - - uid: 22709 + - uid: 5025 components: - type: Transform - pos: -22.5,-15.5 + pos: -41.5,16.5 parent: 2 - - uid: 22710 + - uid: 5123 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-28.5 + rot: 3.141592653589793 rad + pos: -42.5,14.5 parent: 2 - - uid: 22711 + - uid: 5131 components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,-28.5 + pos: -15.5,37.5 parent: 2 - - uid: 22712 + - uid: 5138 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-28.5 + pos: 0.5,36.5 parent: 2 - - uid: 22713 + - uid: 5443 components: - type: Transform - pos: -33.5,-37.5 + rot: 1.5707963267948966 rad + pos: 12.5,27.5 parent: 2 - - uid: 22714 + - uid: 5458 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-37.5 + pos: -20.5,-41.5 parent: 2 - - uid: 22715 + - uid: 5783 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-37.5 + pos: -22.5,-42.5 parent: 2 - - uid: 22716 + - uid: 5786 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-46.5 + pos: -3.5,38.5 parent: 2 - - uid: 22717 + - uid: 5791 components: - type: Transform - pos: -29.5,-46.5 + pos: -55.5,-32.5 parent: 2 - - uid: 22718 + - uid: 5797 components: - type: Transform - pos: -30.5,-46.5 + pos: -58.5,-32.5 parent: 2 - - uid: 22719 + - uid: 5801 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-46.5 + rot: 1.5707963267948966 rad + pos: -34.5,-42.5 parent: 2 - - uid: 22720 + - uid: 5805 components: - type: Transform - pos: -50.5,-49.5 + pos: -59.5,-32.5 parent: 2 - - uid: 22721 + - uid: 5806 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-49.5 + pos: -64.5,-26.5 parent: 2 - - uid: 22722 + - uid: 5807 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-49.5 + pos: -29.5,-42.5 parent: 2 - - uid: 22723 + - uid: 5912 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,-49.5 + rot: -1.5707963267948966 rad + pos: -18.5,8.5 parent: 2 - - uid: 22724 + - uid: 5913 components: - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-49.5 + rot: -1.5707963267948966 rad + pos: -13.5,8.5 parent: 2 - - uid: 22725 + - uid: 6061 components: - type: Transform rot: 3.141592653589793 rad - pos: -46.5,-49.5 + pos: 9.5,38.5 parent: 2 - - uid: 22726 + - uid: 6062 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-49.5 + rot: -1.5707963267948966 rad + pos: -32.5,21.5 parent: 2 - - uid: 22727 + - uid: 6083 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-49.5 + rot: 1.5707963267948966 rad + pos: -44.5,-33.5 parent: 2 - - uid: 22728 + - uid: 6084 components: - type: Transform rot: 1.5707963267948966 rad - pos: -52.5,-60.5 + pos: -49.5,-34.5 parent: 2 - - uid: 22729 + - uid: 6094 components: - type: Transform rot: 3.141592653589793 rad - pos: -54.5,-44.5 + pos: 6.5,38.5 parent: 2 - - uid: 22730 + - uid: 6139 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,-44.5 + rot: 3.141592653589793 rad + pos: 4.5,38.5 parent: 2 - - uid: 22731 + - uid: 6151 components: - type: Transform rot: 1.5707963267948966 rad - pos: -50.5,-42.5 + pos: -45.5,-35.5 parent: 2 - - uid: 22732 + - uid: 6463 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-42.5 + rot: 3.141592653589793 rad + pos: 29.5,15.5 parent: 2 - - uid: 22733 + - uid: 6483 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-44.5 + rot: 3.141592653589793 rad + pos: 29.5,13.5 parent: 2 - - uid: 22734 + - uid: 6492 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-44.5 + rot: 3.141592653589793 rad + pos: 29.5,9.5 parent: 2 - - uid: 22735 + - uid: 6497 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-42.5 + rot: 3.141592653589793 rad + pos: 29.5,11.5 parent: 2 - - uid: 22736 + - uid: 6501 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-42.5 + rot: 3.141592653589793 rad + pos: 29.5,16.5 parent: 2 - - uid: 22737 + - uid: 6504 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-44.5 + rot: 3.141592653589793 rad + pos: 27.5,24.5 parent: 2 - - uid: 22738 + - uid: 6505 components: - type: Transform - pos: -50.5,-44.5 + rot: 3.141592653589793 rad + pos: 48.5,6.5 parent: 2 - - uid: 22739 + - uid: 6519 components: - type: Transform - pos: -51.5,-44.5 + rot: 1.5707963267948966 rad + pos: -15.5,-35.5 parent: 2 - - uid: 22740 + - uid: 6530 components: - type: Transform - pos: -52.5,-44.5 + rot: 3.141592653589793 rad + pos: 46.5,-2.5 parent: 2 - - uid: 22741 + - uid: 6552 components: - type: Transform - pos: -53.5,-44.5 + rot: 3.141592653589793 rad + pos: 45.5,-5.5 parent: 2 - - uid: 22742 + - uid: 6570 components: - type: Transform - pos: -54.5,-44.5 + rot: 3.141592653589793 rad + pos: 52.5,0.5 parent: 2 - - uid: 22743 + - uid: 6574 components: - type: Transform - pos: -54.5,-42.5 + rot: 3.141592653589793 rad + pos: 54.5,0.5 parent: 2 - - uid: 22744 + - uid: 6610 components: - type: Transform - pos: -53.5,-42.5 + rot: 1.5707963267948966 rad + pos: -15.5,-37.5 parent: 2 - - uid: 22745 + - uid: 6621 components: - type: Transform - pos: -52.5,-42.5 + rot: 3.141592653589793 rad + pos: 54.5,-5.5 parent: 2 - - uid: 22746 + - uid: 6625 components: - type: Transform - pos: -51.5,-42.5 + rot: 3.141592653589793 rad + pos: 56.5,-7.5 parent: 2 - - uid: 22747 + - uid: 6636 components: - type: Transform - pos: -50.5,-42.5 + rot: 3.141592653589793 rad + pos: 55.5,-2.5 parent: 2 - - uid: 22748 + - uid: 6918 components: - type: Transform - pos: -44.5,-42.5 + rot: 3.141592653589793 rad + pos: 86.5,-13.5 parent: 2 - - uid: 22749 + - uid: 6937 components: - type: Transform - pos: -43.5,-42.5 + pos: 47.5,19.5 parent: 2 - - uid: 22750 + - uid: 6939 components: - type: Transform - pos: -42.5,-42.5 + rot: 3.141592653589793 rad + pos: 12.5,29.5 parent: 2 - - uid: 22751 + - uid: 6951 components: - type: Transform - pos: -41.5,-42.5 + pos: 12.5,33.5 parent: 2 - - uid: 22752 + - uid: 6957 components: - type: Transform - pos: -40.5,-42.5 + pos: 3.5,44.5 parent: 2 - - uid: 22753 + - uid: 6969 components: - type: Transform - pos: -40.5,-44.5 + rot: 1.5707963267948966 rad + pos: -49.5,-35.5 parent: 2 - - uid: 22754 + - uid: 6985 components: - type: Transform - pos: -41.5,-44.5 + rot: 1.5707963267948966 rad + pos: 53.5,-17.5 parent: 2 - - uid: 22755 + - uid: 6988 components: - type: Transform - pos: -42.5,-44.5 + pos: -4.5,41.5 parent: 2 - - uid: 22756 + - uid: 6992 components: - type: Transform - pos: -43.5,-44.5 + pos: 2.5,49.5 parent: 2 - - uid: 22757 + - uid: 7002 components: - type: Transform - pos: -44.5,-44.5 + pos: 39.5,0.5 parent: 2 - - uid: 22758 + - uid: 7003 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-61.5 + pos: 40.5,-5.5 parent: 2 - - uid: 22759 + - uid: 7004 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-62.5 + pos: 35.5,-4.5 parent: 2 - - uid: 22760 + - uid: 7079 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-63.5 + pos: 12.5,37.5 parent: 2 - - uid: 22761 + - uid: 7258 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,-63.5 + rot: 3.141592653589793 rad + pos: 47.5,-2.5 parent: 2 - - uid: 22762 + - uid: 7272 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,-62.5 + pos: 56.5,24.5 parent: 2 - - uid: 22763 + - uid: 7288 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,-61.5 + rot: 1.5707963267948966 rad + pos: 56.5,-16.5 parent: 2 - - uid: 22764 + - uid: 7457 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,-60.5 + pos: 59.5,24.5 parent: 2 - - uid: 22765 + - uid: 7458 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-60.5 + pos: 60.5,24.5 parent: 2 - - uid: 22766 + - uid: 7467 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-61.5 + pos: 66.5,-0.5 parent: 2 - - uid: 22767 + - uid: 7468 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-62.5 + pos: 46.5,19.5 parent: 2 - - uid: 22768 + - uid: 7470 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-63.5 + pos: 50.5,19.5 parent: 2 - - uid: 22769 + - uid: 7472 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,0.5 + pos: 66.5,0.5 parent: 2 - - uid: 22770 + - uid: 7480 components: - type: Transform - pos: -66.5,-33.5 + pos: -54.5,-34.5 parent: 2 - - uid: 22771 + - uid: 7482 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -67.5,-33.5 + rot: 3.141592653589793 rad + pos: 86.5,-15.5 parent: 2 - - uid: 22772 + - uid: 7483 components: - type: Transform rot: 3.141592653589793 rad - pos: -67.5,-33.5 + pos: 86.5,-12.5 parent: 2 - - uid: 22773 + - uid: 7485 components: - type: Transform rot: 3.141592653589793 rad - pos: -66.5,-33.5 + pos: 86.5,-18.5 parent: 2 - - uid: 22774 + - uid: 7486 components: - type: Transform rot: 3.141592653589793 rad - pos: -65.5,-33.5 + pos: 86.5,-21.5 parent: 2 - - uid: 22775 + - uid: 7487 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -65.5,-33.5 + rot: 3.141592653589793 rad + pos: 86.5,-19.5 parent: 2 - - uid: 22776 + - uid: 7490 components: - type: Transform - pos: -60.5,-35.5 + rot: 3.141592653589793 rad + pos: 86.5,-22.5 parent: 2 - - uid: 22777 + - uid: 7491 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,-35.5 + pos: -33.5,-5.5 parent: 2 - - uid: 22778 + - uid: 7492 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,-34.5 + pos: -40.5,8.5 parent: 2 - - uid: 22779 + - uid: 7498 components: - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,-34.5 + pos: 54.5,22.5 parent: 2 - - uid: 22780 + - uid: 7500 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-34.5 + pos: 54.5,20.5 parent: 2 - - uid: 22781 + - uid: 7505 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-35.5 + pos: 66.5,3.5 parent: 2 - - uid: 22782 + - uid: 7511 components: - type: Transform - pos: -54.5,-33.5 + pos: -53.5,-36.5 parent: 2 - - uid: 22783 + - uid: 7535 components: - type: Transform rot: 3.141592653589793 rad - pos: -54.5,-33.5 + pos: 78.5,-8.5 parent: 2 - - uid: 22784 + - uid: 7536 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-33.5 + rot: 3.141592653589793 rad + pos: 79.5,-8.5 parent: 2 - - uid: 22785 + - uid: 7538 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,8.5 + pos: 53.5,19.5 parent: 2 - - uid: 22786 + - uid: 7774 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,8.5 + rot: 1.5707963267948966 rad + pos: -8.5,-33.5 parent: 2 - - uid: 22787 + - uid: 7909 components: - type: Transform rot: 1.5707963267948966 rad - pos: -48.5,8.5 + pos: -13.5,-35.5 parent: 2 - - uid: 22788 + - uid: 7941 components: - type: Transform - pos: -48.5,8.5 + pos: 35.5,-5.5 parent: 2 - - uid: 22789 + - uid: 7993 components: - type: Transform - pos: -49.5,8.5 + rot: 1.5707963267948966 rad + pos: -8.5,-39.5 parent: 2 - - uid: 22790 + - uid: 8172 components: - type: Transform - pos: -50.5,8.5 + rot: 3.141592653589793 rad + pos: 52.5,6.5 parent: 2 - - uid: 22791 + - uid: 8175 components: - type: Transform - pos: -46.5,8.5 + rot: 3.141592653589793 rad + pos: 53.5,5.5 parent: 2 - - uid: 22792 + - uid: 8177 components: - type: Transform - pos: -45.5,8.5 + rot: 3.141592653589793 rad + pos: 55.5,5.5 parent: 2 - - uid: 22793 + - uid: 8210 components: - type: Transform - pos: -44.5,8.5 + pos: 66.5,6.5 parent: 2 - - uid: 22794 + - uid: 8224 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,8.5 + rot: 3.141592653589793 rad + pos: 82.5,-21.5 parent: 2 - - uid: 22795 + - uid: 8228 components: - type: Transform - pos: -48.5,14.5 + rot: 1.5707963267948966 rad + pos: 14.5,27.5 parent: 2 - - uid: 22796 + - uid: 8232 components: - type: Transform - pos: -49.5,14.5 + pos: 67.5,-4.5 parent: 2 - - uid: 22797 + - uid: 8236 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,14.5 + pos: 36.5,-5.5 parent: 2 - - uid: 22798 + - uid: 8244 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,14.5 + pos: 38.5,-5.5 parent: 2 - - uid: 22799 + - uid: 9140 components: - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,14.5 + pos: 69.5,-4.5 parent: 2 - - uid: 22800 + - uid: 9149 components: - type: Transform rot: 3.141592653589793 rad - pos: -46.5,14.5 + pos: 75.5,-21.5 parent: 2 - - uid: 22801 + - uid: 9150 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,14.5 + rot: -1.5707963267948966 rad + pos: -32.5,29.5 parent: 2 - - uid: 22802 + - uid: 9151 components: - type: Transform - pos: 12.5,40.5 + rot: -1.5707963267948966 rad + pos: -32.5,28.5 parent: 2 - - uid: 22803 + - uid: 9162 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,40.5 + pos: -40.5,5.5 parent: 2 - - uid: 22804 + - uid: 9170 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,41.5 + rot: 3.141592653589793 rad + pos: 77.5,-21.5 parent: 2 - - uid: 22805 + - uid: 9442 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,41.5 + pos: -13.5,4.5 parent: 2 - - uid: 22806 + - uid: 10585 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,40.5 + rot: 3.141592653589793 rad + pos: 52.5,-24.5 parent: 2 - - uid: 22807 + - uid: 11653 components: - type: Transform - pos: 10.5,40.5 + pos: 70.5,-4.5 parent: 2 - - uid: 22808 + - uid: 11661 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,40.5 + pos: 66.5,-3.5 parent: 2 - - uid: 22809 + - uid: 11662 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,41.5 + rot: 3.141592653589793 rad + pos: 79.5,-21.5 parent: 2 - - uid: 22810 + - uid: 12110 components: - type: Transform - pos: 14.5,33.5 + rot: -1.5707963267948966 rad + pos: -15.5,4.5 parent: 2 - - uid: 22811 + - uid: 12572 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,33.5 + pos: -32.5,23.5 parent: 2 - - uid: 22812 + - uid: 13175 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,33.5 + pos: -32.5,-1.5 parent: 2 - - uid: 22813 + - uid: 13176 components: - type: Transform - pos: 21.5,22.5 + pos: -29.5,-1.5 parent: 2 - - uid: 22814 + - uid: 13238 components: - type: Transform - pos: 20.5,22.5 + rot: 3.141592653589793 rad + pos: -34.5,-5.5 parent: 2 - - uid: 22815 + - uid: 14001 components: - type: Transform - pos: 19.5,22.5 + pos: -11.5,-35.5 parent: 2 - - uid: 22816 + - uid: 14002 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,22.5 + pos: -10.5,-35.5 parent: 2 - - uid: 22817 + - uid: 14717 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,20.5 + rot: 3.141592653589793 rad + pos: 75.5,-29.5 parent: 2 - - uid: 22818 + - uid: 14871 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,19.5 + pos: 6.5,18.5 parent: 2 - - uid: 22819 + - uid: 14910 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,20.5 + rot: 3.141592653589793 rad + pos: -41.5,12.5 parent: 2 - - uid: 22820 + - uid: 15202 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,19.5 + pos: 69.5,-0.5 parent: 2 - - uid: 22821 + - uid: 15204 components: - type: Transform - pos: 22.5,19.5 + pos: 68.5,-0.5 parent: 2 - - uid: 22822 + - uid: 15211 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,26.5 + pos: 69.5,3.5 parent: 2 - - uid: 22823 + - uid: 15212 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,25.5 + pos: 68.5,3.5 parent: 2 - - uid: 22824 + - uid: 16084 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,26.5 + pos: 59.5,25.5 parent: 2 - - uid: 22825 + - uid: 16086 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,26.5 + pos: 59.5,27.5 parent: 2 - - uid: 22826 + - uid: 16151 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,26.5 + pos: 75.5,-24.5 parent: 2 - - uid: 22827 + - uid: 16163 components: - type: Transform rot: 3.141592653589793 rad - pos: 30.5,26.5 + pos: 12.5,32.5 parent: 2 - - uid: 22828 + - uid: 16168 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,26.5 + pos: -36.5,-42.5 parent: 2 - - uid: 22829 + - uid: 16185 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,25.5 + rot: 3.141592653589793 rad + pos: 81.5,-8.5 parent: 2 - - uid: 22830 + - uid: 16189 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,26.5 + pos: 75.5,-26.5 parent: 2 - - uid: 22831 + - uid: 16313 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,25.5 + pos: -33.5,-45.5 parent: 2 - - uid: 22832 + - uid: 16315 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,26.5 + pos: -33.5,-44.5 parent: 2 - - uid: 22833 + - uid: 16349 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,25.5 + rot: 3.141592653589793 rad + pos: 78.5,-30.5 parent: 2 - - uid: 22834 + - uid: 16352 components: - type: Transform rot: 3.141592653589793 rad - pos: 34.5,23.5 + pos: 80.5,-30.5 parent: 2 - - uid: 22835 + - uid: 16377 components: - type: Transform rot: 3.141592653589793 rad - pos: 35.5,23.5 + pos: 81.5,-24.5 parent: 2 - - uid: 22836 + - uid: 16378 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.5,23.5 + pos: 82.5,-24.5 parent: 2 - - uid: 22837 + - uid: 16382 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,23.5 + rot: 3.141592653589793 rad + pos: 81.5,-27.5 parent: 2 - - uid: 22838 + - uid: 16383 components: - type: Transform - pos: 38.5,19.5 + rot: 3.141592653589793 rad + pos: 81.5,-28.5 parent: 2 - - uid: 22839 + - uid: 16387 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,19.5 + pos: 49.5,21.5 parent: 2 - - uid: 22840 + - uid: 16615 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,19.5 + pos: -40.5,4.5 parent: 2 - - uid: 22841 + - uid: 16750 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,19.5 + pos: -29.5,8.5 parent: 2 - - uid: 22842 + - uid: 16751 components: - type: Transform - pos: 32.5,19.5 + pos: -34.5,8.5 parent: 2 - - uid: 22843 + - uid: 16752 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,19.5 + pos: -35.5,8.5 parent: 2 - - uid: 22844 + - uid: 17527 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,19.5 + rot: -1.5707963267948966 rad + pos: -18.5,4.5 parent: 2 - - uid: 22845 + - uid: 20291 components: - type: Transform - pos: 32.5,14.5 + pos: -24.5,-42.5 parent: 2 - - uid: 22846 + - uid: 20298 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,14.5 + pos: 84.5,-21.5 parent: 2 - - uid: 22847 + - uid: 20793 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,15.5 + rot: 3.141592653589793 rad + pos: 8.5,18.5 parent: 2 - - uid: 22848 + - uid: 20875 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,15.5 + pos: 59.5,-1.5 parent: 2 - - uid: 22849 + - uid: 20888 components: - type: Transform rot: 1.5707963267948966 rad - pos: 32.5,15.5 + pos: -51.5,7.5 parent: 2 - - uid: 22850 + - uid: 21036 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,14.5 + pos: 83.5,-32.5 parent: 2 - - uid: 22851 + - uid: 21388 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,10.5 + pos: -19.5,-40.5 parent: 2 - - uid: 22852 +- proto: WallWood + entities: + - uid: 3459 components: - type: Transform rot: 3.141592653589793 rad - pos: 43.5,10.5 + pos: -16.5,-1.5 parent: 2 - - uid: 22853 + - uid: 3460 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,10.5 + rot: 3.141592653589793 rad + pos: -15.5,-1.5 parent: 2 - - uid: 22854 + - uid: 3461 components: - type: Transform - pos: 45.5,10.5 + rot: 3.141592653589793 rad + pos: -13.5,-1.5 parent: 2 - - uid: 22855 + - uid: 3462 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,10.5 + pos: -26.5,-35.5 parent: 2 - - uid: 22856 + - uid: 3493 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,10.5 + pos: -19.5,-22.5 parent: 2 - - uid: 22857 + - uid: 3497 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,16.5 + pos: -20.5,-11.5 parent: 2 - - uid: 22858 + - uid: 3498 components: - type: Transform - pos: 27.5,16.5 + pos: -19.5,-23.5 parent: 2 - - uid: 22859 + - uid: 4175 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,16.5 + pos: -19.5,-21.5 parent: 2 - - uid: 22863 + - uid: 4261 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,8.5 + pos: -21.5,-21.5 parent: 2 - - uid: 22864 + - uid: 4263 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,10.5 + pos: -22.5,-11.5 parent: 2 - - uid: 22865 + - uid: 4264 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,10.5 + pos: -17.5,-21.5 parent: 2 - - uid: 22866 + - uid: 4380 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,8.5 + pos: -22.5,-16.5 parent: 2 - - uid: 22867 + - uid: 4381 components: - type: Transform - pos: 52.5,8.5 + pos: -22.5,-22.5 parent: 2 - - uid: 22868 + - uid: 4382 components: - type: Transform - pos: 52.5,10.5 + pos: -22.5,-20.5 parent: 2 - - uid: 22869 + - uid: 4462 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,1.5 + pos: -22.5,-21.5 parent: 2 - - uid: 22870 + - uid: 4576 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,4.5 + pos: -17.5,-16.5 parent: 2 - - uid: 22871 + - uid: 4995 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,4.5 + pos: -19.5,-16.5 parent: 2 - - uid: 22872 + - uid: 5029 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,1.5 + pos: -17.5,-11.5 parent: 2 - - uid: 22873 + - uid: 5685 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,1.5 + pos: -21.5,-11.5 parent: 2 - - uid: 22874 + - uid: 6088 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,4.5 + pos: -19.5,-11.5 parent: 2 - - uid: 22890 + - uid: 6125 components: - type: Transform - pos: 38.5,1.5 + pos: -21.5,-16.5 parent: 2 - - uid: 22891 + - uid: 7420 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-0.5 + pos: -22.5,-23.5 parent: 2 - - uid: 22892 + - uid: 7550 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-1.5 + pos: -22.5,-19.5 parent: 2 - - uid: 22893 + - uid: 8348 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-2.5 + pos: -20.5,-16.5 parent: 2 - - uid: 22894 + - uid: 17092 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-0.5 + pos: 68.5,-54.5 parent: 2 - - uid: 22895 + - uid: 17192 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-0.5 + pos: 68.5,-55.5 parent: 2 - - uid: 22896 + - uid: 17193 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-1.5 + pos: 68.5,-51.5 parent: 2 - - uid: 22897 + - uid: 17194 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-2.5 + pos: 68.5,-50.5 parent: 2 - - uid: 22898 + - uid: 17214 components: - type: Transform - pos: 40.5,-2.5 + rot: 3.141592653589793 rad + pos: 64.5,-51.5 parent: 2 - - uid: 22899 + - uid: 17226 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,1.5 + pos: 64.5,-55.5 parent: 2 - - uid: 22900 + - uid: 17228 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,1.5 + pos: 64.5,-50.5 parent: 2 - - uid: 22901 + - uid: 17233 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,1.5 + pos: 67.5,-50.5 parent: 2 - - uid: 22902 + - uid: 17237 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,1.5 + pos: 64.5,-54.5 parent: 2 - - uid: 22903 + - uid: 17239 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,1.5 + pos: 68.5,-53.5 parent: 2 - - uid: 22910 + - uid: 17240 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-3.5 + pos: 65.5,-55.5 parent: 2 - - uid: 22911 + - uid: 17241 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-4.5 + pos: 66.5,-55.5 parent: 2 - - uid: 22912 + - uid: 17244 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-6.5 + pos: 67.5,-55.5 parent: 2 - - uid: 22913 + - uid: 17245 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-7.5 + pos: 68.5,-52.5 parent: 2 - - uid: 22914 +- proto: WardrobeBlackFilled + entities: + - uid: 16465 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-7.5 + pos: -59.5,-33.5 parent: 2 - - uid: 22915 +- proto: WardrobeBotanistFilled + entities: + - uid: 14631 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-6.5 + pos: -38.5,12.5 parent: 2 - - uid: 22916 +- proto: WardrobeCargoFilled + entities: + - uid: 5748 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-4.5 + pos: 25.5,17.5 parent: 2 - - uid: 22917 +- proto: WardrobeGreyFilled + entities: + - uid: 16245 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-3.5 + pos: 76.5,-29.5 parent: 2 - - uid: 22918 + - uid: 16246 components: - type: Transform - pos: 44.5,-4.5 + pos: 77.5,-29.5 parent: 2 - - uid: 22919 + - uid: 16247 components: - type: Transform - pos: 44.5,-7.5 + pos: 79.5,-29.5 parent: 2 - - uid: 22920 + - uid: 16248 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-6.5 + pos: 80.5,-29.5 parent: 2 - - uid: 22921 +- proto: WardrobePrisonFilled + entities: + - uid: 1709 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-3.5 + pos: -11.5,23.5 parent: 2 - - uid: 22922 + - uid: 4789 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-15.5 + pos: -15.5,23.5 parent: 2 - - uid: 22923 + - uid: 4795 components: - type: Transform - pos: 57.5,-15.5 + pos: -7.5,23.5 parent: 2 - - uid: 22924 + - uid: 5243 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-15.5 + pos: -6.5,43.5 parent: 2 - - uid: 22925 + - uid: 5244 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-13.5 + pos: 3.5,43.5 parent: 2 - - uid: 22926 +- proto: WardrobeWhiteFilled + entities: + - uid: 3464 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,-13.5 + pos: -27.5,-10.5 parent: 2 - - uid: 22927 +- proto: WarningCO2 + entities: + - uid: 3465 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,-13.5 + rot: -1.5707963267948966 rad + pos: 20.5,-1.5 parent: 2 - - uid: 22928 +- proto: WarningN2 + entities: + - uid: 3466 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-13.5 + rot: -1.5707963267948966 rad + pos: 18.5,-1.5 parent: 2 - - uid: 22929 +- proto: WarningO2 + entities: + - uid: 3467 components: - type: Transform - pos: 62.5,-13.5 + rot: -1.5707963267948966 rad + pos: 16.5,-1.5 parent: 2 - - uid: 22930 +- proto: WarningPlasma + entities: + - uid: 3468 components: - type: Transform - pos: 66.5,-13.5 + rot: -1.5707963267948966 rad + pos: 24.5,-1.5 parent: 2 - - uid: 22949 +- proto: WarningWaste + entities: + - uid: 3469 components: - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,-12.5 + rot: -1.5707963267948966 rad + pos: 22.5,-1.5 parent: 2 - - uid: 22950 + - uid: 3470 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,-12.5 + rot: -1.5707963267948966 rad + pos: 26.5,-1.5 parent: 2 - - uid: 22951 +- proto: WarpPoint + entities: + - uid: 20936 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,-13.5 - parent: 2 - - uid: 22952 + pos: 8.5,-3.5 + parent: 21128 + - type: WarpPoint + location: Unknown shuttle +- proto: WarpPointBombing + entities: + - uid: 13731 components: - type: Transform - pos: 72.5,-13.5 + pos: -18.5,1.5 parent: 2 - - uid: 22953 + - type: WarpPoint + location: Bar + - uid: 13732 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,-25.5 + pos: -2.5,24.5 parent: 2 - - uid: 22954 + - type: WarpPoint + location: Security + - uid: 13733 components: - type: Transform - rot: 3.141592653589793 rad - pos: 84.5,-25.5 + pos: -1.5,47.5 parent: 2 - - uid: 22955 + - type: WarpPoint + location: Perma + - uid: 13734 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-25.5 + pos: 27.5,20.5 parent: 2 - - uid: 22956 + - type: WarpPoint + location: Cargo + - uid: 13735 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-26.5 + pos: 44.5,8.5 parent: 2 - - uid: 22957 + - type: WarpPoint + location: Medical + - uid: 13736 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-27.5 + pos: -1.5,-22.5 parent: 2 - - uid: 22958 + - type: WarpPoint + location: Engineering + - uid: 13737 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-28.5 + pos: 40.5,-35.5 parent: 2 - - uid: 22959 + - type: WarpPoint + location: Bridge + - uid: 13738 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-29.5 + pos: -32.5,-13.5 parent: 2 - - uid: 22960 + - type: WarpPoint + location: Dorms + - uid: 13739 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 93.5,-12.5 + pos: -48.5,1.5 parent: 2 - - uid: 22961 + - type: WarpPoint + location: Evacuation +- proto: WaterCooler + entities: + - uid: 3471 components: - type: Transform - rot: 3.141592653589793 rad - pos: 93.5,-12.5 + pos: 4.5,-17.5 parent: 2 - - uid: 22962 + - uid: 3472 components: - type: Transform - pos: 93.5,-15.5 + pos: 21.5,-18.5 parent: 2 - - uid: 22963 + - uid: 5603 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 93.5,-15.5 + pos: 31.5,10.5 parent: 2 - - uid: 22964 + - uid: 8266 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 93.5,-14.5 + pos: -3.5,21.5 parent: 2 - - uid: 22965 +- proto: WaterTankFull + entities: + - uid: 60 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 93.5,-13.5 + pos: 58.5,-25.5 parent: 2 - - uid: 22966 + - uid: 5162 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,-21.5 + anchored: True + pos: -3.5,50.5 parent: 2 - - uid: 22967 + - type: Physics + bodyType: Static + - uid: 7619 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-21.5 + pos: 19.5,-35.5 parent: 2 - - uid: 22968 + - uid: 14675 components: - type: Transform - pos: 64.5,-21.5 + pos: -20.5,31.5 parent: 2 - - uid: 22969 + - uid: 14678 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,-33.5 + pos: 17.5,17.5 parent: 2 - - uid: 22970 + - uid: 14679 components: - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,-33.5 + pos: -13.5,-10.5 parent: 2 - - uid: 22971 + - uid: 14681 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,-33.5 + pos: -14.5,-33.5 parent: 2 - - uid: 22972 + - uid: 14685 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,-33.5 + pos: 5.5,-41.5 parent: 2 - - uid: 22973 + - uid: 14686 components: - type: Transform - pos: 70.5,-33.5 + pos: 73.5,-20.5 parent: 2 - - uid: 22974 + - uid: 14689 components: - type: Transform - pos: 69.5,-33.5 + pos: 65.5,-3.5 parent: 2 - - uid: 22975 + - uid: 14690 components: - type: Transform - pos: 68.5,-33.5 + pos: 49.5,17.5 parent: 2 - - uid: 22976 + - uid: 14693 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,-33.5 + pos: -11.5,17.5 parent: 2 - - uid: 22977 + - uid: 14694 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,-34.5 + pos: 3.5,38.5 parent: 2 - - uid: 22978 + - uid: 14718 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,-35.5 + pos: 45.5,-9.5 parent: 2 - - uid: 22979 + - uid: 14735 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,-34.5 + pos: 39.5,-6.5 parent: 2 - - uid: 22980 + - uid: 15758 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,-35.5 + pos: 67.5,0.5 parent: 2 - - uid: 22981 + - uid: 21571 components: - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,-34.5 + pos: 34.5,-2.5 parent: 2 - - uid: 22982 +- proto: WaterTankHighCapacity + entities: + - uid: 3475 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,-34.5 + pos: -13.5,-22.5 parent: 2 - - uid: 22983 + - uid: 15394 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-34.5 + pos: -28.5,17.5 parent: 2 - - uid: 22984 +- proto: WaterVaporCanister + entities: + - uid: 3477 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-35.5 + pos: 22.5,-2.5 parent: 2 - - uid: 22985 + - uid: 3478 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,-34.5 + pos: 24.5,-17.5 parent: 2 - - uid: 22986 +- proto: WeaponCapacitorRecharger + entities: + - uid: 4590 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,-35.5 + rot: 3.141592653589793 rad + pos: 39.5,-28.5 parent: 2 - - uid: 22987 + - uid: 4972 components: - type: Transform - pos: 73.5,-35.5 + pos: 5.5,25.5 parent: 2 - - uid: 22988 + - uid: 5294 components: - type: Transform - pos: 71.5,-35.5 + rot: -1.5707963267948966 rad + pos: -8.5,31.5 parent: 2 - - uid: 22989 + - uid: 7621 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,-36.5 + rot: 1.5707963267948966 rad + pos: 20.5,-38.5 parent: 2 - - uid: 22990 + - uid: 13590 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,-36.5 + pos: 37.5,-32.5 parent: 2 - - uid: 22991 +- proto: WeaponDisabler + entities: + - uid: 5154 components: - type: Transform - rot: 3.141592653589793 rad - pos: 80.5,-36.5 + pos: -8.829058,31.720768 parent: 2 - - uid: 22992 +- proto: WeaponLaserCarbine + entities: + - uid: 5093 components: - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,-36.5 + pos: 3.539238,33.610504 parent: 2 - - uid: 22993 + - uid: 5094 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 82.5,-36.5 + pos: 3.539238,33.43863 parent: 2 - - uid: 22994 + - uid: 20341 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,-36.5 + pos: 3.53751,33.53506 parent: 2 - - uid: 22995 +- proto: WeaponShotgunEnforcer + entities: + - uid: 1957 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-22.5 + pos: 2.550524,33.364468 parent: 2 - - uid: 22996 +- proto: WeaponShotgunKammerer + entities: + - uid: 5091 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-22.5 + pos: 2.523613,33.586533 parent: 2 - - uid: 22997 + - uid: 7564 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-22.5 + pos: 2.5417395,33.683712 parent: 2 - - uid: 22998 + - uid: 20305 components: - type: Transform - pos: 42.5,-22.5 + pos: 2.553135,33.488186 parent: 2 - - uid: 22999 +- proto: WeaponSubMachineGunWt550 + entities: + - uid: 5081 components: - type: Transform - pos: 41.5,-22.5 + pos: -11.600864,32.694817 parent: 2 - - uid: 23000 +- proto: WeaponTurretSyndicateBroken + entities: + - uid: 853 components: - type: Transform - pos: 40.5,-22.5 + pos: 9.5,-44.5 parent: 2 - - uid: 23001 + - uid: 8171 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-22.5 + pos: 7.5,-44.5 parent: 2 - - uid: 23002 + - uid: 20391 components: - type: Transform - pos: 44.5,-22.5 + pos: 16.5,42.5 parent: 2 - - uid: 23003 + - uid: 20392 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-27.5 + pos: 16.5,39.5 parent: 2 - - uid: 23004 + - uid: 21060 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-27.5 + pos: -34.5,-45.5 parent: 2 - - uid: 23005 + - uid: 22109 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-27.5 + pos: 16.5,-67.5 parent: 2 - - uid: 23006 + - uid: 22140 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-27.5 + pos: 22.5,-67.5 parent: 2 - - uid: 23007 + - uid: 22145 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-27.5 + pos: 22.5,-74.5 parent: 2 - - uid: 23008 + - uid: 22170 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-27.5 + pos: 16.5,-74.5 parent: 2 - - uid: 23009 +- proto: WeaponWaterPistol + entities: + - uid: 20287 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-27.5 + pos: 57.375835,-1.3271363 parent: 2 - - uid: 23010 + - uid: 20288 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-27.5 + pos: 57.594585,-1.5146363 parent: 2 - - uid: 23011 +- proto: Welder + entities: + - uid: 3479 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-27.5 + pos: -7.5141225,-25.4744 parent: 2 - - uid: 23012 +- proto: WelderIndustrial + entities: + - uid: 17640 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-30.5 + pos: 17.592184,-17.644693 parent: 2 - - uid: 23013 +- proto: WeldingFuelTankFull + entities: + - uid: 3481 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-30.5 + pos: 16.5,-13.5 parent: 2 - - uid: 23014 + - uid: 7618 components: - type: Transform - pos: 30.5,-30.5 + pos: 19.5,-36.5 parent: 2 - - uid: 23015 + - uid: 8161 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-39.5 + pos: 33.5,-2.5 parent: 2 - - uid: 23016 + - uid: 12468 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-39.5 + pos: 58.5,-26.5 parent: 2 - - uid: 23017 + - uid: 13648 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-39.5 + pos: -13.5,-11.5 parent: 2 - - uid: 23018 + - uid: 14676 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-39.5 + pos: -19.5,31.5 parent: 2 - - uid: 23019 + - uid: 14677 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-39.5 + pos: 17.5,1.5 parent: 2 - - uid: 23020 + - uid: 14682 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-39.5 + pos: -13.5,-33.5 parent: 2 - - uid: 23021 + - uid: 14683 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-39.5 + pos: 21.5,-40.5 parent: 2 - - uid: 23022 + - uid: 14684 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-39.5 + pos: 5.5,-42.5 parent: 2 - - uid: 23023 + - uid: 14687 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-39.5 + pos: 73.5,-21.5 parent: 2 - - uid: 23024 + - uid: 14688 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-39.5 + pos: 65.5,-4.5 parent: 2 - - uid: 23025 + - uid: 14691 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-39.5 + pos: 50.5,17.5 parent: 2 - - uid: 23026 + - uid: 14692 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-39.5 + pos: -12.5,17.5 parent: 2 - - uid: 23027 + - uid: 14719 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-39.5 + pos: 45.5,-10.5 parent: 2 - - uid: 23028 + - uid: 14734 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-39.5 + pos: 39.5,-7.5 parent: 2 - - uid: 23029 + - uid: 15853 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-39.5 + pos: 69.5,6.5 parent: 2 - - uid: 23030 + - uid: 16753 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-39.5 + pos: -3.5,-21.5 parent: 2 - - uid: 23031 +- proto: Windoor + entities: + - uid: 3483 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-39.5 + pos: -6.5,-28.5 parent: 2 - - uid: 23032 + - uid: 3484 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-39.5 + pos: -5.5,-28.5 parent: 2 - - uid: 23033 + - uid: 3485 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-39.5 + pos: 20.5,-23.5 parent: 2 - - uid: 23052 + - uid: 3486 components: - type: Transform - pos: 30.5,-13.5 + pos: 21.5,-23.5 parent: 2 - - uid: 23053 + - uid: 3487 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-8.5 + pos: 39.5,-20.5 parent: 2 - - uid: 23054 + - uid: 3488 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-7.5 + pos: 45.5,-20.5 parent: 2 - - uid: 23055 + - uid: 3489 components: - type: Transform rot: 3.141592653589793 rad - pos: 16.5,-7.5 + pos: 43.5,-22.5 parent: 2 - - uid: 23056 + - uid: 3494 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-7.5 + rot: 1.5707963267948966 rad + pos: -19.5,-9.5 parent: 2 - - uid: 23057 + - uid: 3495 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-7.5 + pos: -16.5,-28.5 parent: 2 - - uid: 23058 + - uid: 3496 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-7.5 + pos: -15.5,-28.5 parent: 2 - - uid: 23059 + - uid: 4764 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-7.5 + rot: -1.5707963267948966 rad + pos: 0.5,23.5 parent: 2 - - uid: 23060 + - uid: 4765 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-7.5 + rot: -1.5707963267948966 rad + pos: 0.5,24.5 parent: 2 - - uid: 23061 + - uid: 5149 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,-7.5 + pos: -5.5,44.5 parent: 2 - - uid: 23062 + - uid: 5150 components: - type: Transform rot: 3.141592653589793 rad - pos: 26.5,-7.5 + pos: 2.5,44.5 parent: 2 - - uid: 23063 + - uid: 5448 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-7.5 + rot: -1.5707963267948966 rad + pos: 24.5,13.5 parent: 2 - - uid: 23064 + - uid: 5449 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-7.5 + rot: -1.5707963267948966 rad + pos: 24.5,14.5 parent: 2 - - uid: 23065 + - uid: 6034 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-7.5 + pos: 42.5,10.5 parent: 2 - - uid: 23066 + - uid: 6035 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-7.5 + pos: 46.5,10.5 parent: 2 - - uid: 23067 + - uid: 7152 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-8.5 + pos: 58.5,-15.5 parent: 2 - - uid: 23068 + - uid: 7153 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-9.5 + pos: 59.5,-15.5 parent: 2 - - uid: 23069 + - uid: 7154 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-10.5 + pos: 60.5,-15.5 parent: 2 - - uid: 23070 + - uid: 15022 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,-7.5 + pos: -34.5,21.5 parent: 2 - - uid: 23071 + - uid: 16397 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-8.5 + pos: 53.5,22.5 parent: 2 - - uid: 23072 + - uid: 16912 components: - type: Transform rot: 1.5707963267948966 rad - pos: 29.5,-9.5 + pos: 14.5,37.5 parent: 2 - - uid: 23073 + - uid: 16941 components: + - type: MetaData + name: Theatre windoor - type: Transform rot: 1.5707963267948966 rad - pos: 30.5,-10.5 + pos: -37.5,4.5 parent: 2 - - uid: 23074 + - uid: 18471 components: + - type: MetaData + name: Theatre windoor - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-11.5 + rot: -1.5707963267948966 rad + pos: -29.5,4.5 parent: 2 - - uid: 23075 + - uid: 20921 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-12.5 + rot: 3.141592653589793 rad + pos: 89.5,-17.5 parent: 2 - - uid: 23076 + - uid: 20922 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-13.5 + rot: 3.141592653589793 rad + pos: 90.5,-17.5 parent: 2 - - uid: 23077 +- proto: WindoorHydroponicsLocked + entities: + - uid: 3499 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,-9.5 + pos: -27.5,13.5 parent: 2 - - uid: 23078 + - uid: 3500 components: - type: Transform rot: -1.5707963267948966 rad - pos: 30.5,-16.5 + pos: -27.5,14.5 parent: 2 - - uid: 23079 +- proto: WindoorKitchenHydroponicsLocked + entities: + - uid: 14242 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-16.5 + pos: -19.5,10.5 parent: 2 - - uid: 23080 +- proto: WindoorKitchenLocked + entities: + - uid: 3501 components: - type: Transform rot: 1.5707963267948966 rad - pos: 30.5,-16.5 + pos: -23.5,13.5 parent: 2 - - uid: 23081 + - uid: 3502 components: - type: Transform rot: 1.5707963267948966 rad - pos: 26.5,-16.5 + pos: -23.5,14.5 parent: 2 - - uid: 23082 +- proto: WindoorSecure + entities: + - uid: 3505 components: - type: Transform - pos: 26.5,-16.5 + rot: 1.5707963267948966 rad + pos: -31.5,-29.5 parent: 2 - - uid: 23083 + - uid: 3506 components: - type: Transform - pos: 30.5,-16.5 + rot: 1.5707963267948966 rad + pos: -31.5,-28.5 parent: 2 - - uid: 23091 + - uid: 7933 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-34.5 + rot: 1.5707963267948966 rad + pos: -10.5,-38.5 parent: 2 - - uid: 23092 + - uid: 16324 components: - type: Transform rot: 1.5707963267948966 rad - pos: 19.5,-34.5 + pos: 80.5,-6.5 parent: 2 - - uid: 23093 + - uid: 17182 components: - type: Transform - pos: 19.5,-34.5 + rot: 3.141592653589793 rad + pos: 66.5,-50.5 parent: 2 - - uid: 23094 + - uid: 17229 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-49.5 + rot: 3.141592653589793 rad + pos: 65.5,-50.5 parent: 2 - - uid: 23095 + - uid: 17258 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-47.5 + pos: -33.5,-2.5 parent: 2 - - uid: 23096 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 21184: + - DoorStatus: DoorBolt + - uid: 21184 components: - type: Transform rot: 3.141592653589793 rad - pos: 25.5,-47.5 + pos: -33.5,-1.5 parent: 2 - - uid: 23097 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 17258: + - DoorStatus: DoorBolt + - uid: 21321 components: - type: Transform rot: 3.141592653589793 rad - pos: 26.5,-47.5 + pos: 80.5,-24.5 parent: 2 - - uid: 23098 + - uid: 22489 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-47.5 + rot: -1.5707963267948966 rad + pos: 64.5,-35.5 parent: 2 - - uid: 23099 +- proto: WindoorSecureArmoryLocked + entities: + - uid: 4751 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-47.5 + rot: 1.5707963267948966 rad + pos: 0.5,24.5 parent: 2 - - uid: 23100 + - uid: 4763 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,-47.5 + pos: 0.5,23.5 parent: 2 - - uid: 23101 + - uid: 5082 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,-49.5 + pos: 2.5,32.5 parent: 2 - - uid: 23102 + - uid: 5083 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-49.5 + pos: 3.5,33.5 + parent: 2 + - uid: 5084 + components: + - type: Transform + pos: 4.5,33.5 + parent: 2 + - uid: 5085 + components: + - type: Transform + pos: 5.5,33.5 parent: 2 - - uid: 23103 +- proto: WindoorSecureAtmosphericsLocked + entities: + - uid: 3507 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,-49.5 + pos: 20.5,-23.5 parent: 2 - - uid: 23104 + - uid: 3508 components: - type: Transform rot: 3.141592653589793 rad - pos: 26.5,-49.5 + pos: 21.5,-23.5 parent: 2 - - uid: 23105 + - uid: 3509 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-45.5 + pos: 19.5,-22.5 parent: 2 - - uid: 23106 +- proto: WindoorSecureBrigLocked + entities: + - uid: 4421 components: - type: Transform rot: 3.141592653589793 rad - pos: 25.5,-49.5 + pos: -43.5,-15.5 parent: 2 - - uid: 23107 + - uid: 4497 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-45.5 + pos: -47.5,-15.5 parent: 2 - - uid: 23108 +- proto: WindoorSecureCargoLocked + entities: + - uid: 5445 components: - type: Transform - pos: 11.5,-45.5 + rot: 1.5707963267948966 rad + pos: 24.5,13.5 parent: 2 - - uid: 23109 + - uid: 5447 components: - type: Transform - pos: 14.5,-45.5 + rot: 1.5707963267948966 rad + pos: 24.5,14.5 parent: 2 - - uid: 23110 + - uid: 5450 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,-45.5 + pos: 25.5,12.5 parent: 2 - - uid: 23111 +- proto: WindoorSecureChapelLocked + entities: + - uid: 3510 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-45.5 + rot: 1.5707963267948966 rad + pos: -26.5,-39.5 parent: 2 - - uid: 23112 + - uid: 3511 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-63.5 + pos: -32.5,-37.5 parent: 2 - - uid: 23113 +- proto: WindoorSecureChemistryLocked + entities: + - uid: 6036 components: - type: Transform rot: 3.141592653589793 rad - pos: 19.5,-61.5 + pos: 42.5,10.5 parent: 2 - - uid: 23114 + - uid: 6037 components: - type: Transform rot: 3.141592653589793 rad - pos: 25.5,-63.5 + pos: 46.5,10.5 parent: 2 - - uid: 23115 + - uid: 8862 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-63.5 + pos: 46.5,15.5 parent: 2 - - uid: 23116 + - uid: 18993 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-64.5 + rot: 3.141592653589793 rad + pos: 44.5,10.5 parent: 2 - - uid: 23117 +- proto: WindoorSecureCommandLocked + entities: + - uid: 1943 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,-65.5 + pos: 14.5,-64.5 parent: 2 - - uid: 23118 + - uid: 1945 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-61.5 + pos: 8.5,-47.5 parent: 2 - - uid: 23119 + - uid: 4571 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-63.5 + rot: -1.5707963267948966 rad + pos: 38.5,-29.5 parent: 2 - - uid: 23120 + - uid: 7436 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-64.5 + rot: 3.141592653589793 rad + pos: 70.5,-27.5 parent: 2 - - uid: 23121 + - uid: 7437 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-65.5 + rot: 3.141592653589793 rad + pos: 69.5,-27.5 parent: 2 - - uid: 23122 + - uid: 7974 components: - type: Transform - pos: 13.5,-65.5 + pos: 12.5,-45.5 parent: 2 - - uid: 23123 + - uid: 7975 components: - type: Transform - pos: 19.5,-61.5 + pos: 13.5,-45.5 parent: 2 - - uid: 23124 + - uid: 20900 components: - type: Transform - pos: 25.5,-65.5 + rot: 1.5707963267948966 rad + pos: 14.5,-65.5 parent: 2 - - uid: 23125 + - uid: 20901 components: - type: Transform rot: -1.5707963267948966 rad - pos: 19.5,-55.5 + pos: 23.5,-53.5 parent: 2 - - uid: 23126 + - uid: 22049 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-55.5 + rot: -1.5707963267948966 rad + pos: 18.5,-72.5 parent: 2 - - uid: 23127 + - uid: 22050 components: - type: Transform rot: 1.5707963267948966 rad - pos: 19.5,-55.5 + pos: 20.5,-72.5 parent: 2 - - uid: 23128 +- proto: WindoorSecureDetectiveLocked + entities: + - uid: 17488 components: - type: Transform - pos: 19.5,-71.5 + pos: -24.5,28.5 parent: 2 - - uid: 23129 +- proto: WindoorSecureEngineeringLocked + entities: + - uid: 3512 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-71.5 + rot: 1.5707963267948966 rad + pos: -7.5,-22.5 parent: 2 - - uid: 23130 + - uid: 3513 components: - type: Transform rot: 3.141592653589793 rad - pos: 19.5,-71.5 - parent: 2 - - uid: 23131 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-32.5 + pos: -5.5,-28.5 parent: 2 - - uid: 23132 + - uid: 3514 components: - type: Transform - pos: -3.5,-32.5 + rot: 3.141592653589793 rad + pos: -6.5,-28.5 parent: 2 - - uid: 23133 + - uid: 3515 components: - type: Transform - pos: -4.5,-32.5 + pos: -7.5,-27.5 parent: 2 - - uid: 23134 + - uid: 15163 components: - type: Transform - pos: -5.5,-32.5 + rot: -1.5707963267948966 rad + pos: -24.5,34.5 parent: 2 - - uid: 23135 + - uid: 15164 components: - type: Transform rot: -1.5707963267948966 rad - pos: -5.5,-32.5 + pos: -24.5,35.5 parent: 2 - - uid: 23136 +- proto: WindoorSecureHeadOfPersonnelLocked + entities: + - uid: 3516 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-28.5 + pos: 43.5,-22.5 parent: 2 - - uid: 23137 + - uid: 7603 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,-28.5 - parent: 2 - - uid: 23138 - components: - - type: Transform - pos: 0.5,-28.5 + pos: 22.5,-37.5 parent: 2 - - uid: 23139 + - uid: 7604 components: - type: Transform - pos: -0.5,-28.5 + rot: 1.5707963267948966 rad + pos: 22.5,-36.5 parent: 2 - - uid: 23140 +- proto: WindoorSecureJanitorLocked + entities: + - uid: 3517 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-24.5 + rot: 3.141592653589793 rad + pos: -16.5,-28.5 parent: 2 - - uid: 23141 + - uid: 3518 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,-24.5 + pos: -15.5,-28.5 parent: 2 - - uid: 23142 + - uid: 4460 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-24.5 + rot: 1.5707963267948966 rad + pos: -22.5,-27.5 parent: 2 - - uid: 23143 + - uid: 20314 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,-24.5 + pos: -22.5,-26.5 parent: 2 - - uid: 23144 + - uid: 20315 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-20.5 + rot: 1.5707963267948966 rad + pos: -22.5,-25.5 parent: 2 - - uid: 23145 +- proto: WindoorSecureMedicalLocked + entities: + - uid: 4676 components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,-20.5 + pos: 54.5,1.5 parent: 2 - - uid: 23146 + - uid: 5773 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-20.5 + pos: 46.5,3.5 parent: 2 - - uid: 23147 + - uid: 5979 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-20.5 + rot: -1.5707963267948966 rad + pos: 44.5,2.5 parent: 2 - - uid: 23148 + - uid: 5980 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-20.5 + rot: -1.5707963267948966 rad + pos: 44.5,3.5 parent: 2 - - uid: 23149 + - uid: 5981 components: - type: Transform - pos: -3.5,-20.5 + rot: -1.5707963267948966 rad + pos: 44.5,1.5 parent: 2 - - uid: 23150 + - uid: 6905 components: - type: Transform - pos: -4.5,-20.5 + pos: 59.5,18.5 parent: 2 - - uid: 23151 + - uid: 6960 components: - type: Transform rot: -1.5707963267948966 rad - pos: -4.5,-20.5 + pos: 58.5,19.5 parent: 2 - - uid: 23152 +- proto: WindoorSecureSalvageLocked + entities: + - uid: 5542 components: - type: Transform - pos: 1.5,-10.5 + rot: 1.5707963267948966 rad + pos: 32.5,20.5 parent: 2 - - uid: 23153 + - uid: 5543 components: - type: Transform - pos: 0.5,-10.5 + rot: 1.5707963267948966 rad + pos: 32.5,21.5 parent: 2 - - uid: 23154 +- proto: WindoorSecureScienceLocked + entities: + - uid: 7147 components: - type: Transform - pos: -0.5,-10.5 + rot: 3.141592653589793 rad + pos: 58.5,-15.5 parent: 2 - - uid: 23155 + - uid: 7150 components: - type: Transform - pos: -1.5,-10.5 + rot: 3.141592653589793 rad + pos: 59.5,-15.5 parent: 2 - - uid: 23156 + - uid: 7151 components: - type: Transform - pos: -0.5,-18.5 + rot: 3.141592653589793 rad + pos: 60.5,-15.5 parent: 2 - - uid: 23157 + - uid: 7259 components: - type: Transform - pos: 0.5,-18.5 + rot: -1.5707963267948966 rad + pos: 67.5,-9.5 parent: 2 - - uid: 23158 + - uid: 7260 components: - type: Transform - pos: 1.5,-18.5 + rot: -1.5707963267948966 rad + pos: 67.5,-7.5 parent: 2 - - uid: 23159 + - uid: 7263 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-18.5 + rot: 1.5707963267948966 rad + pos: 71.5,-9.5 parent: 2 - - uid: 23160 + - uid: 8184 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-18.5 + rot: -1.5707963267948966 rad + pos: 67.5,-8.5 parent: 2 - - uid: 23161 +- proto: WindoorServiceLocked + entities: + - uid: 3716 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-18.5 + pos: -43.5,11.5 parent: 2 - - uid: 23162 + - uid: 4528 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-18.5 + rot: -1.5707963267948966 rad + pos: -59.5,-28.5 parent: 2 - - uid: 23163 + - uid: 4637 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-18.5 + pos: -53.5,-26.5 parent: 2 - - uid: 23164 +- proto: WindoorTheatreLocked + entities: + - uid: 3519 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,7.5 + pos: -19.5,4.5 parent: 2 - - uid: 23165 +- proto: WindowDirectional + entities: + - uid: 3527 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,7.5 + pos: -19.5,-8.5 parent: 2 - - uid: 23166 + - uid: 3528 components: - type: Transform - pos: 0.5,7.5 + rot: 1.5707963267948966 rad + pos: -19.5,-10.5 parent: 2 - - uid: 23167 + - uid: 15004 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,7.5 + pos: -34.5,22.5 parent: 2 - - uid: 23168 + - uid: 16198 components: - type: Transform rot: 1.5707963267948966 rad - pos: 64.5,14.5 + pos: 79.5,-24.5 parent: 2 - - uid: 23169 + - uid: 16401 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,0.5 + rot: 1.5707963267948966 rad + pos: 52.5,22.5 parent: 2 - - uid: 23170 + - uid: 16647 components: - type: Transform rot: 3.141592653589793 rad - pos: 7.5,0.5 - parent: 2 - - uid: 23171 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,0.5 + pos: 14.5,36.5 parent: 2 - - uid: 23172 +- proto: WindowFrostedDirectional + entities: + - uid: 3733 components: - type: Transform - pos: 7.5,0.5 + pos: -44.5,11.5 parent: 2 - - uid: 23173 + - uid: 3734 components: - type: Transform - pos: 0.5,-6.5 + pos: -42.5,11.5 parent: 2 - - uid: 23174 + - uid: 3736 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,-6.5 + pos: -45.5,9.5 parent: 2 - - uid: 23175 +- proto: WindowReinforcedDirectional + entities: + - uid: 2011 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,-6.5 + pos: 1.5,48.5 parent: 2 - - uid: 23176 + - uid: 2090 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,-6.5 + pos: 38.5,-30.5 parent: 2 - - uid: 23177 + - uid: 2144 components: - type: Transform - pos: -14.5,-41.5 + pos: 27.5,-44.5 parent: 2 - - uid: 23178 + - uid: 2280 components: - type: Transform - pos: -13.5,-41.5 + rot: 3.141592653589793 rad + pos: 34.5,-37.5 parent: 2 - - uid: 23179 + - uid: 3160 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-41.5 + pos: -4.5,-11.5 parent: 2 - - uid: 23180 + - uid: 3474 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-41.5 + pos: -21.5,10.5 parent: 2 - - uid: 23181 + - uid: 3531 components: - type: Transform rot: 3.141592653589793 rad - pos: -11.5,-41.5 + pos: -8.5,-17.5 parent: 2 - - uid: 23182 + - uid: 3532 components: - type: Transform rot: 3.141592653589793 rad - pos: -10.5,-41.5 + pos: -9.5,-17.5 parent: 2 - - uid: 23183 + - uid: 3533 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-41.5 + rot: 1.5707963267948966 rad + pos: -7.5,-21.5 parent: 2 - - uid: 23184 + - uid: 3534 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-41.5 + rot: 1.5707963267948966 rad + pos: -7.5,-23.5 parent: 2 - - uid: 23185 + - uid: 3535 components: - type: Transform rot: -1.5707963267948966 rad - pos: -23.5,-47.5 + pos: 42.5,-23.5 parent: 2 - - uid: 23186 + - uid: 3536 components: - type: Transform rot: -1.5707963267948966 rad - pos: -23.5,-46.5 + pos: 42.5,-24.5 parent: 2 - - uid: 23187 + - uid: 3537 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-47.5 + pos: -38.5,5.5 parent: 2 - - uid: 23188 + - uid: 3538 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-46.5 + pos: -37.5,5.5 parent: 2 - - uid: 23189 + - uid: 3539 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-47.5 + rot: 1.5707963267948966 rad + pos: -27.5,6.5 parent: 2 - - uid: 23190 + - uid: 3540 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-46.5 + pos: -27.5,5.5 parent: 2 - - uid: 23191 + - uid: 3541 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-47.5 + rot: 1.5707963267948966 rad + pos: -27.5,5.5 parent: 2 - - uid: 23192 + - uid: 3542 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-46.5 + pos: -28.5,5.5 parent: 2 - - uid: 23193 + - uid: 3543 components: - type: Transform rot: 1.5707963267948966 rad - pos: -19.5,-46.5 + pos: -27.5,7.5 parent: 2 - - uid: 23194 + - uid: 3544 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-47.5 + pos: -29.5,5.5 parent: 2 - - uid: 23195 + - uid: 3545 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-46.5 + pos: -39.5,5.5 parent: 2 - - uid: 23196 + - uid: 3546 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,-47.5 + pos: -23.5,4.5 parent: 2 - - uid: 23197 + - uid: 3547 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,-46.5 + pos: -23.5,5.5 parent: 2 - - uid: 23198 + - uid: 3548 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,-47.5 + pos: -23.5,6.5 parent: 2 - - uid: 23199 + - uid: 3549 components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,-46.5 + pos: -23.5,7.5 parent: 2 - - uid: 23200 + - uid: 3550 components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,-47.5 + pos: -38.5,-33.5 parent: 2 - - uid: 23201 + - uid: 3551 components: - type: Transform - pos: -17.5,-44.5 + pos: -26.5,-38.5 + parent: 2 + - uid: 3552 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-36.5 + parent: 2 + - uid: 3553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,4.5 parent: 2 - - uid: 23202 + - uid: 3554 components: - type: Transform rot: -1.5707963267948966 rad - pos: -17.5,-44.5 + pos: -50.5,4.5 parent: 2 - - uid: 23203 + - uid: 3555 components: - type: Transform rot: -1.5707963267948966 rad - pos: -17.5,-43.5 + pos: -50.5,-1.5 parent: 2 - - uid: 23204 + - uid: 3556 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-43.5 + rot: 1.5707963267948966 rad + pos: -43.5,-1.5 parent: 2 - - uid: 23205 + - uid: 4346 components: - type: Transform - pos: -45.5,-40.5 + rot: 1.5707963267948966 rad + pos: 22.5,14.5 parent: 2 - - uid: 23206 + - uid: 4359 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,-40.5 + pos: 39.5,-2.5 parent: 2 - - uid: 23207 + - uid: 4419 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,-39.5 + rot: 3.141592653589793 rad + pos: -44.5,-15.5 parent: 2 - - uid: 23208 + - uid: 4420 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,-39.5 + pos: -44.5,-17.5 parent: 2 - - uid: 23209 + - uid: 4428 components: - type: Transform rot: -1.5707963267948966 rad - pos: -49.5,-40.5 + pos: -50.5,-15.5 parent: 2 - - uid: 23210 + - uid: 4430 components: - type: Transform rot: 1.5707963267948966 rad - pos: -49.5,-39.5 + pos: -48.5,-15.5 parent: 2 - - uid: 23211 + - uid: 4524 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,-40.5 + pos: -59.5,-27.5 parent: 2 - - uid: 23212 + - uid: 4583 components: - type: Transform - pos: -49.5,-40.5 + rot: 1.5707963267948966 rad + pos: 40.5,-27.5 parent: 2 - - uid: 23213 + - uid: 4595 components: - type: Transform rot: -1.5707963267948966 rad - pos: -52.5,-37.5 + pos: 46.5,-33.5 parent: 2 - - uid: 23214 + - uid: 4596 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-37.5 + rot: 1.5707963267948966 rad + pos: 34.5,-33.5 parent: 2 - - uid: 23215 + - uid: 4597 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-37.5 + rot: 3.141592653589793 rad + pos: 46.5,-37.5 parent: 2 - - uid: 23238 + - uid: 4598 components: - type: Transform rot: 3.141592653589793 rad - pos: 41.5,19.5 + pos: 42.5,-37.5 parent: 2 - - uid: 23239 + - uid: 4599 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,19.5 + rot: 3.141592653589793 rad + pos: 38.5,-37.5 parent: 2 - - uid: 23240 + - uid: 4600 components: - type: Transform - pos: 41.5,19.5 + rot: 1.5707963267948966 rad + pos: 37.5,-32.5 parent: 2 - - uid: 23241 + - uid: 4601 components: - type: Transform rot: -1.5707963267948966 rad - pos: 49.5,24.5 + pos: 43.5,-32.5 parent: 2 - - uid: 23242 + - uid: 4602 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,24.5 + pos: 38.5,-38.5 parent: 2 - - uid: 23243 + - uid: 4603 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,24.5 + pos: 42.5,-38.5 parent: 2 - - uid: 23244 + - uid: 4604 components: - type: Transform rot: 1.5707963267948966 rad - pos: 49.5,23.5 + pos: 48.5,-38.5 parent: 2 - - uid: 23245 + - uid: 4605 components: - type: Transform rot: -1.5707963267948966 rad - pos: 62.5,28.5 + pos: 32.5,-38.5 parent: 2 - - uid: 23246 + - uid: 4636 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,28.5 + rot: 1.5707963267948966 rad + pos: -54.5,-26.5 parent: 2 - - uid: 23247 + - uid: 4638 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,28.5 + rot: -1.5707963267948966 rad + pos: -56.5,-26.5 parent: 2 - - uid: 23248 + - uid: 4966 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,28.5 + rot: -1.5707963267948966 rad + pos: 3.5,25.5 parent: 2 - - uid: 23249 + - uid: 4967 components: - type: Transform - pos: 56.5,28.5 + rot: -1.5707963267948966 rad + pos: 3.5,26.5 parent: 2 - - uid: 23250 + - uid: 5075 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,28.5 + rot: 1.5707963267948966 rad + pos: 5.5,33.5 parent: 2 - - uid: 23251 + - uid: 5079 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,20.5 + pos: 2.5,32.5 parent: 2 - - uid: 23252 + - uid: 5118 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,20.5 + rot: -1.5707963267948966 rad + pos: 46.5,15.5 parent: 2 - - uid: 23253 + - uid: 5453 components: - type: Transform rot: 1.5707963267948966 rad - pos: 68.5,20.5 + pos: 22.5,13.5 parent: 2 - - uid: 23254 + - uid: 5654 components: - type: Transform - pos: 68.5,20.5 + pos: 1.5,50.5 parent: 2 - - uid: 23255 + - uid: 5734 components: - type: Transform - pos: 68.5,20.5 + rot: -1.5707963267948966 rad + pos: 34.5,17.5 parent: 2 - - uid: 23256 + - uid: 5975 components: - type: Transform rot: 1.5707963267948966 rad - pos: 64.5,13.5 - parent: 2 - - uid: 23257 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,13.5 + pos: 45.5,3.5 parent: 2 - - uid: 23258 + - uid: 5976 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,14.5 + pos: 44.5,1.5 parent: 2 - - uid: 23259 + - uid: 5977 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,15.5 + rot: 3.141592653589793 rad + pos: 45.5,3.5 parent: 2 - - uid: 23260 + - uid: 5978 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,16.5 + rot: 3.141592653589793 rad + pos: 44.5,3.5 parent: 2 - - uid: 23261 + - uid: 6699 components: - type: Transform - pos: 73.5,2.5 + rot: 3.141592653589793 rad + pos: 50.5,-5.5 parent: 2 - - uid: 23262 + - uid: 6700 components: - type: Transform - pos: 72.5,2.5 + pos: 50.5,-3.5 parent: 2 - - uid: 23263 + - uid: 6745 components: - type: Transform - pos: 73.5,6.5 + rot: 3.141592653589793 rad + pos: 54.5,11.5 parent: 2 - - uid: 23264 + - uid: 6907 components: - type: Transform - pos: 72.5,6.5 + pos: 57.5,18.5 parent: 2 - - uid: 23265 + - uid: 6908 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,6.5 + pos: 58.5,18.5 parent: 2 - - uid: 23266 + - uid: 6910 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,4.5 + pos: 60.5,18.5 parent: 2 - - uid: 23267 + - uid: 6911 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,2.5 + pos: 61.5,18.5 parent: 2 - - uid: 23268 + - uid: 6959 components: - type: Transform rot: -1.5707963267948966 rad - pos: 72.5,0.5 + pos: 58.5,18.5 parent: 2 - - uid: 23269 + - uid: 7231 components: - type: Transform rot: 3.141592653589793 rad - pos: 73.5,2.5 + pos: 67.5,-10.5 parent: 2 - - uid: 23270 + - uid: 7233 components: - type: Transform rot: 3.141592653589793 rad - pos: 72.5,2.5 + pos: 71.5,-10.5 parent: 2 - - uid: 23271 + - uid: 7234 components: - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,4.5 + rot: 1.5707963267948966 rad + pos: 71.5,-8.5 parent: 2 - - uid: 23272 + - uid: 7235 components: - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,4.5 + rot: 1.5707963267948966 rad + pos: 71.5,-7.5 parent: 2 - - uid: 23273 + - uid: 7289 components: - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,6.5 + rot: 1.5707963267948966 rad + pos: 38.5,-28.5 parent: 2 - - uid: 23274 + - uid: 7345 components: - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,6.5 + pos: -3.5,-11.5 parent: 2 - - uid: 23275 + - uid: 7434 components: - type: Transform rot: 3.141592653589793 rad - pos: 73.5,0.5 + pos: 68.5,-27.5 parent: 2 - - uid: 23276 + - uid: 7435 components: - type: Transform rot: 3.141592653589793 rad - pos: 72.5,0.5 - parent: 2 - - uid: 23277 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,0.5 + pos: 71.5,-27.5 parent: 2 - - uid: 23278 + - uid: 7581 components: - type: Transform rot: 1.5707963267948966 rad - pos: 73.5,2.5 + pos: 22.5,-38.5 parent: 2 - - uid: 23279 + - uid: 7582 components: - type: Transform rot: 1.5707963267948966 rad - pos: 73.5,4.5 + pos: 22.5,-35.5 parent: 2 - - uid: 23280 + - uid: 7700 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,6.5 + rot: -1.5707963267948966 rad + pos: 26.5,-44.5 parent: 2 - - uid: 23281 + - uid: 7701 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 77.5,-5.5 + rot: -1.5707963267948966 rad + pos: 26.5,-43.5 parent: 2 - - uid: 23282 + - uid: 7702 components: - type: Transform - pos: 77.5,-5.5 + rot: -1.5707963267948966 rad + pos: 26.5,-41.5 parent: 2 - - uid: 23283 + - uid: 7703 components: - type: Transform rot: -1.5707963267948966 rad - pos: 77.5,-5.5 + pos: 26.5,-46.5 parent: 2 - - uid: 23284 + - uid: 7932 components: - type: Transform rot: 3.141592653589793 rad - pos: 77.5,-5.5 + pos: -11.5,-40.5 parent: 2 - - uid: 23285 + - uid: 8006 components: - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,-4.5 + rot: -1.5707963267948966 rad + pos: -6.5,43.5 parent: 2 - - uid: 23286 + - uid: 8435 components: - type: Transform rot: 3.141592653589793 rad - pos: 82.5,-4.5 + pos: 38.5,-30.5 parent: 2 - - uid: 23287 + - uid: 9185 components: - type: Transform rot: 1.5707963267948966 rad - pos: 82.5,-4.5 + pos: -25.5,28.5 parent: 2 - - uid: 23288 + - uid: 9271 components: - type: Transform - pos: 82.5,-4.5 + rot: -1.5707963267948966 rad + pos: 1.5,-17.5 parent: 2 - - uid: 23289 + - uid: 9272 components: - type: Transform - pos: 81.5,-4.5 + rot: 1.5707963267948966 rad + pos: -0.5,-17.5 + parent: 2 + - uid: 12695 + components: + - type: Transform + pos: 38.5,-28.5 parent: 2 - - uid: 23290 + - uid: 12705 components: - type: Transform rot: -1.5707963267948966 rad - pos: 81.5,-4.5 + pos: 38.5,-30.5 parent: 2 - - uid: 23295 + - uid: 12805 components: - type: Transform rot: 3.141592653589793 rad - pos: 52.5,-21.5 + pos: -10.5,-40.5 parent: 2 - - uid: 23296 + - uid: 13490 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-21.5 + pos: 39.5,-28.5 parent: 2 - - uid: 23297 + - uid: 14260 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-21.5 + rot: -1.5707963267948966 rad + pos: 46.5,16.5 parent: 2 - - uid: 23298 + - uid: 15193 components: - type: Transform - pos: 54.5,-21.5 + rot: 3.141592653589793 rad + pos: -30.5,-1.5 parent: 2 - - uid: 23299 + - uid: 15404 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-21.5 + pos: -20.5,10.5 parent: 2 - - uid: 23300 + - uid: 15602 components: - type: Transform rot: 3.141592653589793 rad - pos: 54.5,-21.5 + pos: 53.5,1.5 parent: 2 - - uid: 23301 + - uid: 15843 components: - type: Transform - pos: -3.5,22.5 + rot: -1.5707963267948966 rad + pos: -27.5,34.5 parent: 2 - - uid: 23302 + - uid: 15844 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,22.5 + pos: -27.5,35.5 parent: 2 - - uid: 23303 + - uid: 16322 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,22.5 + rot: 1.5707963267948966 rad + pos: 80.5,-7.5 parent: 2 - - uid: 23304 + - uid: 16323 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,22.5 + rot: 1.5707963267948966 rad + pos: 80.5,-5.5 parent: 2 - - uid: 23305 + - uid: 16662 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,22.5 + pos: 44.5,-20.5 parent: 2 - - uid: 23306 + - uid: 16663 components: - type: Transform - pos: -0.5,22.5 + pos: 43.5,-20.5 + parent: 2 + - uid: 17484 + components: + - type: Transform + pos: 42.5,-20.5 parent: 2 - - uid: 23307 + - uid: 19757 components: - type: Transform rot: -1.5707963267948966 rad - pos: -23.5,28.5 + pos: 38.5,-28.5 parent: 2 - - uid: 23308 + - uid: 20306 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,28.5 + pos: 41.5,-20.5 parent: 2 - - uid: 23309 + - uid: 20307 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,28.5 + pos: 40.5,-20.5 parent: 2 - - uid: 23310 + - uid: 20515 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,27.5 + pos: -10.5,-39.5 parent: 2 - - uid: 23313 + - uid: 20881 components: - type: Transform - pos: 17.5,-48.5 + rot: 3.141592653589793 rad + pos: 14.5,-64.5 parent: 2 - - uid: 23314 + - uid: 21185 components: - type: Transform rot: -1.5707963267948966 rad - pos: 17.5,-48.5 + pos: -32.5,-2.5 parent: 2 - - uid: 23315 + - uid: 21402 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-47.5 + rot: 3.141592653589793 rad + pos: 23.5,-53.5 parent: 2 - - uid: 23316 + - uid: 21416 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-47.5 + pos: 9.5,-47.5 parent: 2 - - uid: 23317 + - uid: 21421 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-39.5 + pos: 7.5,-47.5 parent: 2 - - uid: 23318 + - uid: 21553 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-40.5 + rot: 3.141592653589793 rad + pos: 27.5,-43.5 parent: 2 - - uid: 23319 + - uid: 21561 components: - type: Transform - pos: -0.5,-40.5 + pos: -1.5,-9.5 parent: 2 - - uid: 23320 + - uid: 21562 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-40.5 + pos: -0.5,-9.5 parent: 2 - - uid: 23321 + - uid: 21563 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-39.5 + pos: 0.5,-9.5 parent: 2 - - uid: 23322 + - uid: 21564 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-39.5 + pos: 1.5,-9.5 parent: 2 - - uid: 23323 + - uid: 21565 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-40.5 + pos: 2.5,-9.5 parent: 2 - - uid: 23324 + - uid: 21646 components: - type: Transform - pos: 2.5,-40.5 + rot: 1.5707963267948966 rad + pos: 3.5,43.5 parent: 2 - - uid: 23325 + - uid: 21752 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-42.5 + pos: 47.5,15.5 parent: 2 - - uid: 23326 + - uid: 21846 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,-42.5 + pos: 55.5,1.5 parent: 2 - - uid: 23327 + - uid: 21847 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-42.5 + rot: 1.5707963267948966 rad + pos: 55.5,1.5 parent: 2 - - uid: 23328 + - uid: 21939 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,-42.5 + pos: -31.5,-1.5 parent: 2 - - uid: 23329 + - uid: 22366 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,-42.5 + pos: -4.5,40.5 + parent: 2 + - uid: 22410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,40.5 + parent: 2 + - uid: 22487 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,-34.5 + parent: 2 + - uid: 22488 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,-36.5 parent: 2 - proto: WoodDoor entities: From 33042b00d0fa64e2880acecd7430c425caf3e8f4 Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Tue, 8 Oct 2024 11:50:54 +0200 Subject: [PATCH 76/94] Fix cryo locale again (#32654) * Fix cryo locale again * yeep --- Content.Server/Bed/Cryostorage/CryostorageSystem.cs | 2 +- Resources/Locale/en-US/bed/cryostorage/cryogenic-storage.ftl | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Content.Server/Bed/Cryostorage/CryostorageSystem.cs b/Content.Server/Bed/Cryostorage/CryostorageSystem.cs index cd4aa4a098..345f51783c 100644 --- a/Content.Server/Bed/Cryostorage/CryostorageSystem.cs +++ b/Content.Server/Bed/Cryostorage/CryostorageSystem.cs @@ -239,7 +239,7 @@ public void HandleEnterCryostorage(Entity ent, Ne Loc.GetString( "earlyleave-cryo-announcement", ("character", name), - ("entity", ent.Owner), + ("entity", ent.Owner), // gender things for supporting downstreams with other languages ("job", CultureInfo.CurrentCulture.TextInfo.ToTitleCase(jobName)) ), Loc.GetString("earlyleave-cryo-sender"), playDefaultSound: false diff --git a/Resources/Locale/en-US/bed/cryostorage/cryogenic-storage.ftl b/Resources/Locale/en-US/bed/cryostorage/cryogenic-storage.ftl index 7d1c079443..f966f30e2d 100644 --- a/Resources/Locale/en-US/bed/cryostorage/cryogenic-storage.ftl +++ b/Resources/Locale/en-US/bed/cryostorage/cryogenic-storage.ftl @@ -2,5 +2,6 @@ ### Announcement earlyleave-cryo-job-unknown = Unknown -earlyleave-cryo-announcement = {$character} ({$job}) { CONJUGATE-HAVE($entity) } entered cryogenic storage! +# {$entity} available for GENDER function purposes +earlyleave-cryo-announcement = {$character} ({$job}) has entered cryogenic storage! earlyleave-cryo-sender = Station From 922dd0bce6519d0af35a9bfbc2360c32893b4cbc Mon Sep 17 00:00:00 2001 From: shamp <140359015+shampunj@users.noreply.github.com> Date: Tue, 8 Oct 2024 12:51:23 +0300 Subject: [PATCH 77/94] Fix cloth dupe (#32685) Update curtains.yml --- .../Prototypes/Entities/Structures/Decoration/curtains.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Prototypes/Entities/Structures/Decoration/curtains.yml b/Resources/Prototypes/Entities/Structures/Decoration/curtains.yml index 1d5069c7da..fc7fe23bb8 100644 --- a/Resources/Prototypes/Entities/Structures/Decoration/curtains.yml +++ b/Resources/Prototypes/Entities/Structures/Decoration/curtains.yml @@ -49,7 +49,7 @@ spawn: MaterialCloth1: min: 1 - max: 2 + max: 1 - type: WallMount arc: 360 From 1f04117edf71b5f3871a18de50e83ad240fdebcb Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 8 Oct 2024 09:52:31 +0000 Subject: [PATCH 78/94] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 62ef075a6c..25a65785d4 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: metalgearsloth - changes: - - message: Moved VGRoid from 1,000m away to ~500m. - type: Tweak - id: 6993 - time: '2024-07-28T03:14:18.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29943 - author: lzk228 changes: - message: Fixed pancakes stacks. Before it, splitting not default pancakes stacks @@ -3943,3 +3936,10 @@ id: 7492 time: '2024-10-07T22:42:43.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32429 +- author: shampunj + changes: + - message: When curtains are destroyed, only 1 cloth drops out + type: Tweak + id: 7493 + time: '2024-10-08T09:51:23.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32685 From 0e0887bd49beae005584db0c0ff632fe442d0b4b Mon Sep 17 00:00:00 2001 From: averystarbit Date: Tue, 8 Oct 2024 09:52:46 +0000 Subject: [PATCH 79/94] Added proper capitalisation for supervisors when entering the game (#32683) changed punctuation for jobs, added proper capitalization and comma usa --- .../Locale/en-US/job/job-supervisors.ftl | 24 +++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/Resources/Locale/en-US/job/job-supervisors.ftl b/Resources/Locale/en-US/job/job-supervisors.ftl index d92065a40b..c7eedfd246 100644 --- a/Resources/Locale/en-US/job/job-supervisors.ftl +++ b/Resources/Locale/en-US/job/job-supervisors.ftl @@ -1,15 +1,15 @@ job-supervisors-centcom = Central Command -job-supervisors-captain = the captain -job-supervisors-hop = the head of personnel -job-supervisors-hos = the head of security -job-supervisors-ce = the chief engineer -job-supervisors-cmo = the chief medical officer -job-supervisors-rd = the research director -job-supervisors-qm = the quartermaster -job-supervisors-service = chefs, botanists, the bartender, and the head of personnel -job-supervisors-engineering = station engineers, atmospheric technicians, and the chief engineer -job-supervisors-medicine = medical doctors, chemists, and the chief medical officer -job-supervisors-security = security officers, the warden, and the head of security -job-supervisors-science = scientists, and the research director +job-supervisors-captain = the Captain +job-supervisors-hop = the Head of Personnel +job-supervisors-hos = the Head of Security +job-supervisors-ce = the Chief Engineer +job-supervisors-cmo = the Chief Medical Officer +job-supervisors-rd = the Research Director +job-supervisors-qm = the Quartermaster +job-supervisors-service = Chefs, Botanists, the Bartender, and the Head of Personnel +job-supervisors-engineering = Station Engineers, Atmospheric Technicians, and the Chief Engineer +job-supervisors-medicine = Medical Doctors, Paramedics, Chemists, and the Chief Medical Officer +job-supervisors-security = Security Officers, the Warden, and the Head of Security +job-supervisors-science = Scientists and the Research Director job-supervisors-hire = whoever hires you job-supervisors-everyone = absolutely everyone From 1366f6b405195efa7ba73041c2e06df0f37d1d3f Mon Sep 17 00:00:00 2001 From: Plykiya <58439124+Plykiya@users.noreply.github.com> Date: Tue, 8 Oct 2024 02:53:50 -0700 Subject: [PATCH 80/94] Replace the Librarian's round-start D10 with a D20 (#32648) Replace D10 with a D20 --- Resources/Prototypes/Roles/Jobs/Civilian/librarian.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/librarian.yml b/Resources/Prototypes/Roles/Jobs/Civilian/librarian.yml index d865d57cab..61f0ea1d32 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/librarian.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/librarian.yml @@ -16,7 +16,7 @@ shoes: ClothingShoesBootsLaceup id: LibrarianPDA ears: ClothingHeadsetService - pocket1: d10Dice + pocket1: d20Dice pocket2: HandLabeler # for making named bestsellers storage: back: From 28f576dae87bb6f696ce359d969058fbd34d8d88 Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 8 Oct 2024 09:54:56 +0000 Subject: [PATCH 81/94] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 25a65785d4..29e8376711 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: lzk228 - changes: - - message: Fixed pancakes stacks. Before it, splitting not default pancakes stacks - would give you default pancakes. - type: Fix - id: 6994 - time: '2024-07-28T03:49:06.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30270 - author: Plykiya changes: - message: Fixed the client mispredicting people slipping with their magboots turned @@ -3943,3 +3935,10 @@ id: 7493 time: '2024-10-08T09:51:23.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32685 +- author: Plykiya + changes: + - message: Librarians now start with a D20. + type: Tweak + id: 7494 + time: '2024-10-08T09:53:50.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32648 From 6f9b4f42267814b73feda51cd2e15bff765a872e Mon Sep 17 00:00:00 2001 From: K-Dynamic <20566341+K-Dynamic@users.noreply.github.com> Date: Wed, 9 Oct 2024 06:29:37 +1200 Subject: [PATCH 82/94] CHIMP and APE particle speed increase (#32690) * swap omega and delta particle colours * remove upgrade doafter * explicit syndicate chip description * Syndicate CHIMP stealth * fast projectile speed * 10 to 12 shots * buff heat dmg * upgrade chip mentions omega particle * Revert "remove upgrade doafter" This reverts commit 8a321980b7a384daca06215656494e0c116e7333. * Revert "explicit syndicate chip description" This reverts commit c803c773739a61fc5b3a6cb90810622a6d5846c9. * Revert "Syndicate CHIMP stealth" This reverts commit 698a108580892addabf8d51494a72e1ee651b8e6. * Revert "10 to 12 shots" This reverts commit 858ac0392be0549eb0a288648413d1020cabae1a. * Revert "swap omega and delta particle colours" This reverts commit 4c000b2f110a5d35f317cb61cb5b03ea32841ad5. * Revert "buff heat dmg" This reverts commit 02a8690dafbd41631b098e51ef9afba5b6ee6ac4. --- .../Entities/Objects/Weapons/Guns/Battery/battery_guns.yml | 2 +- .../Entities/Structures/Machines/anomaly_equipment.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml index 92c952671f..e7fef78f80 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml @@ -647,7 +647,7 @@ - type: Clothing sprite: Objects/Weapons/Guns/Revolvers/chimp.rsi - type: Gun - projectileSpeed: 4 + projectileSpeed: 10 fireRate: 1.5 soundGunshot: path: /Audio/Weapons/Guns/Gunshots/taser2.ogg diff --git a/Resources/Prototypes/Entities/Structures/Machines/anomaly_equipment.yml b/Resources/Prototypes/Entities/Structures/Machines/anomaly_equipment.yml index 4d4eff1f70..1761f176da 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/anomaly_equipment.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/anomaly_equipment.yml @@ -184,7 +184,7 @@ guides: - APE - type: Gun - projectileSpeed: 4 + projectileSpeed: 10 fireRate: 10 #just has to be fast enough to keep up with upgrades showExamineText: false selectedMode: SemiAuto From dc2899c274341db8b0384944a5dce6849b113c9b Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 8 Oct 2024 18:30:44 +0000 Subject: [PATCH 83/94] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 29e8376711..898a69c3c2 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: Plykiya - changes: - - message: Fixed the client mispredicting people slipping with their magboots turned - on - type: Fix - id: 6995 - time: '2024-07-28T06:17:06.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30425 - author: Katzenminer changes: - message: Pun and similar pets are no longer firemune @@ -3942,3 +3934,10 @@ id: 7494 time: '2024-10-08T09:53:50.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32648 +- author: K-Dynamic + changes: + - message: CHIMP and APE particles should be almost as fast as before + type: Tweak + id: 7495 + time: '2024-10-08T18:29:37.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32690 From 384ff7e8f614e47efdc4eeaf39b3067a614001bd Mon Sep 17 00:00:00 2001 From: beck-thompson <107373427+beck-thompson@users.noreply.github.com> Date: Tue, 8 Oct 2024 16:29:41 -0700 Subject: [PATCH 84/94] Add pumpkin pie! (#32623) * first commit * Licence fix * rosysyntax licence change (permission granted!) * simplify * Better wording --- .../Objects/Consumable/Food/Baked/pie.yml | 39 +++++++++++++++++- .../Recipes/Cooking/meal_recipes.yml | 12 +++++- .../Consumable/Food/Baked/pie.rsi/meta.json | 8 +++- .../Food/Baked/pie.rsi/pumpkin-slice.png | Bin 0 -> 499 bytes .../Consumable/Food/Baked/pie.rsi/pumpkin.png | Bin 0 -> 600 bytes 5 files changed, 56 insertions(+), 3 deletions(-) create mode 100644 Resources/Textures/Objects/Consumable/Food/Baked/pie.rsi/pumpkin-slice.png create mode 100644 Resources/Textures/Objects/Consumable/Food/Baked/pie.rsi/pumpkin.png diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pie.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pie.yml index c9ac483343..b86a4201e8 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pie.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pie.yml @@ -23,7 +23,7 @@ - ReagentId: Vitamin Quantity: 5 - type: Food #All pies here made with a pie tin; unless you're some kind of savage, you're probably not destroying this when you eat or slice the pie! - trash: + trash: - FoodPlateTin - type: SliceableFood count: 4 @@ -317,6 +317,43 @@ - Slice # Tastes like pie, meat. +- type: entity + name: pumpkin pie + parent: FoodPieBase + id: FoodPiePumpkin + description: Someone should turn this into a latte! + components: + - type: FlavorProfile + flavors: + - sweet + - pumpkin + - type: Sprite + layers: + - state: tin + - state: pumpkin + - type: SliceableFood + slice: FoodPiePumpkinSlice + - type: Tag + tags: + - Pie + +- type: entity + name: slice of pumpkin pie + parent: FoodPieSliceBase + id: FoodPiePumpkinSlice + components: + - type: FlavorProfile + flavors: + - sweet + - pumpkin + - type: Sprite + layers: + - state: pumpkin-slice + - type: Tag + tags: + - Pie + - Slice + - type: entity name: xeno pie parent: FoodPieBase diff --git a/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml b/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml index 8dc25c1c72..fa2b657391 100644 --- a/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml +++ b/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml @@ -1062,6 +1062,16 @@ FoodMeat: 3 FoodPlateTin: 1 +- type: microwaveMealRecipe + id: RecipePumpkinPie + name: pumpkin pie recipe + result: FoodPiePumpkin + time: 15 + solids: + FoodDoughPie: 1 + FoodPumpkin: 1 + FoodPlateTin: 1 + #- type: microwaveMealRecipe # id: RecipePlumpPie # name: plump pie recipe @@ -1978,4 +1988,4 @@ solids: FoodCroissantRaw: 1 FoodButterSlice: 1 - ShardGlass: 1 \ No newline at end of file + ShardGlass: 1 diff --git a/Resources/Textures/Objects/Consumable/Food/Baked/pie.rsi/meta.json b/Resources/Textures/Objects/Consumable/Food/Baked/pie.rsi/meta.json index ced8d58373..644424690d 100644 --- a/Resources/Textures/Objects/Consumable/Food/Baked/pie.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Food/Baked/pie.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24, mime tart slice and banana cream pie slice from rosysyntax under under CC BY-SA 4.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24, the pumpkin and pumpkin slice are made by ss14nekow (Mute Maid), the mime tart slice and banana cream pie slice are made by rosysyntax.", "size": { "x": 32, "y": 32 @@ -95,6 +95,12 @@ { "name": "plump" }, + { + "name": "pumpkin" + }, + { + "name": "pumpkin-slice" + }, { "name": "tin" }, diff --git a/Resources/Textures/Objects/Consumable/Food/Baked/pie.rsi/pumpkin-slice.png b/Resources/Textures/Objects/Consumable/Food/Baked/pie.rsi/pumpkin-slice.png new file mode 100644 index 0000000000000000000000000000000000000000..e462de6b654c318147b680e25f1059c62f28de44 GIT binary patch literal 499 zcmVtLEM_DRCyT3p|q;m_xz4EJ|^V$f+k4_5M|NfoA);n`O zj10ejd}h#{{1vYqEO4C!7>q&;3_=1t3@vVfgmr z7uaGc?k^17Tx<+qzkO!lWs?M&dIzt`L`A`^w*p{8-hKGOAgsj0ux8#=utRK$Yr#GS zSq_Q%13-#FX#o@!AiyVS$8h@4B?gK2?-*e54GMB%d<`)HLXzYFkQU^SczEtPgTNng zumd!@Uyy7T$UL$%!5ktg@sZ*63x0;s*6U=O12StAjE2By2#kin$PNJj&Z~-Q6TnoW p0000EWmrjOO-%qQ00008000000002eQ_Y literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Consumable/Food/Baked/pie.rsi/pumpkin.png b/Resources/Textures/Objects/Consumable/Food/Baked/pie.rsi/pumpkin.png new file mode 100644 index 0000000000000000000000000000000000000000..f2f18879448f8ef498b1765d6515bd676932c3bf GIT binary patch literal 600 zcmV-e0;m0nP)rD(u{f{TJ#^gopNCls<0x(U=j(NO#YuF4246e@HP zQ1Am$D6KjJ)e<2SDrz#$xfpR_Cdt}&A@9A+JNKS*&&&l>C1NZ#9R$S&uI zCwCXRCs+z*ZYvR?0@z;vxFH2kt3IB@xfZCvjd&g5*~h75UK-<}w_| zk^P~isXf_jRx?dgThNL%^UWNtc1uFS?im!(8+6T}Fb2sfL@+N#;r{%NPkv5!T^F`( zKlm*)6~KZNk;!C`bqm*l2yu%-NJuj7_k{@g#4Dzf{M0t{gQZfbDLHYW0tlc8;?n7~ zZx{x0&wtb#W605Ca3mXJSo|}q)AF#cCFyo)DWCzq6~e!KHS*Z9ET3elR0`#CnWU^I zR@1pwBPhkBQU?piDzNpAh^c(Pfxt*WT5pH613Cp&4k!nd1CPLg8&)pjkcyO^p8x;= m4rN$LW=%~1DgXcg2mk;800000(o>TF0000 Date: Tue, 8 Oct 2024 23:30:49 +0000 Subject: [PATCH 85/94] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 898a69c3c2..1b358b481e 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Katzenminer - changes: - - message: Pun and similar pets are no longer firemune - type: Fix - id: 6996 - time: '2024-07-28T08:32:27.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30424 - author: lzk228 changes: - message: Fixed permanent absence of the approver string in cargo invoice. @@ -3941,3 +3934,11 @@ id: 7495 time: '2024-10-08T18:29:37.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32690 +- author: ss14nekow + changes: + - message: Added pumpkin pie! Can be made in the microwave with 1 pie tin, 1 pie + dough, and 1 pumpkin. + type: Add + id: 7496 + time: '2024-10-08T23:29:41.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32623 From 1dbbf315c7d4b3d5b2d8b35b48b7fccfcc1409fc Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Wed, 9 Oct 2024 13:41:03 +0200 Subject: [PATCH 86/94] Update submodule to v236.1.0 (#32704) --- RobustToolbox | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RobustToolbox b/RobustToolbox index 1c3ea968e4..d1d43f834b 160000 --- a/RobustToolbox +++ b/RobustToolbox @@ -1 +1 @@ -Subproject commit 1c3ea968e4ab66d57ffe014f6ee207e4d0d2c403 +Subproject commit d1d43f834b8845da698ef1898e8191ab159ee367 From ddaa0e83c6b055a0b2d162af7d2f04b8a6fec1c5 Mon Sep 17 00:00:00 2001 From: SlamBamActionman <83650252+SlamBamActionman@users.noreply.github.com> Date: Wed, 9 Oct 2024 13:55:48 +0200 Subject: [PATCH 87/94] Add admin log for codewords (#32531) * initial commit * Delta review --- Content.Server/GameTicking/Rules/TraitorRuleSystem.cs | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Content.Server/GameTicking/Rules/TraitorRuleSystem.cs b/Content.Server/GameTicking/Rules/TraitorRuleSystem.cs index 4e4191a51b..56b652ed9a 100644 --- a/Content.Server/GameTicking/Rules/TraitorRuleSystem.cs +++ b/Content.Server/GameTicking/Rules/TraitorRuleSystem.cs @@ -1,3 +1,4 @@ +using Content.Server.Administration.Logs; using Content.Server.Antag; using Content.Server.GameTicking.Rules.Components; using Content.Server.Mind; @@ -5,6 +6,7 @@ using Content.Server.PDA.Ringer; using Content.Server.Roles; using Content.Server.Traitor.Uplink; +using Content.Shared.Database; using Content.Shared.GameTicking.Components; using Content.Shared.Mind; using Content.Shared.NPC.Systems; @@ -25,6 +27,7 @@ public sealed class TraitorRuleSystem : GameRuleSystem { private static readonly Color TraitorCodewordColor = Color.FromHex("#cc3b3b"); + [Dependency] private readonly IAdminLogManager _adminLogger = default!; [Dependency] private readonly IPrototypeManager _prototypeManager = default!; [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly NpcFactionSystem _npcFaction = default!; @@ -47,7 +50,7 @@ public override void Initialize() protected override void Added(EntityUid uid, TraitorRuleComponent component, GameRuleComponent gameRule, GameRuleAddedEvent args) { base.Added(uid, component, gameRule, args); - SetCodewords(component); + SetCodewords(component, args.RuleEntity); } private void AfterEntitySelected(Entity ent, ref AfterAntagEntitySelectedEvent args) @@ -55,9 +58,10 @@ private void AfterEntitySelected(Entity ent, ref AfterAnta MakeTraitor(args.EntityUid, ent); } - private void SetCodewords(TraitorRuleComponent component) + private void SetCodewords(TraitorRuleComponent component, EntityUid ruleEntity) { component.Codewords = GenerateTraitorCodewords(component); + _adminLogger.Add(LogType.EventStarted, LogImpact.Low, $"Codewords generated for game rule {ToPrettyString(ruleEntity)}: {string.Join(", ", component.Codewords)}"); } public string[] GenerateTraitorCodewords(TraitorRuleComponent component) From b657aba2e1fbb089693fd1bb0220a71e717baba0 Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 9 Oct 2024 11:56:57 +0000 Subject: [PATCH 88/94] Automatic changelog update --- Resources/Changelog/Admin.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Resources/Changelog/Admin.yml b/Resources/Changelog/Admin.yml index 537c6b09ff..63fd6cabd2 100644 --- a/Resources/Changelog/Admin.yml +++ b/Resources/Changelog/Admin.yml @@ -552,5 +552,12 @@ Entries: id: 68 time: '2024-09-23T07:28:42.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32395 +- author: SlamBamActionman + changes: + - message: Added admin logging for generated codewords. + type: Add + id: 69 + time: '2024-10-09T11:55:49.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32531 Name: Admin Order: 1 From d450b613d6f53d12208220d0655279656a2ba35c Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Wed, 9 Oct 2024 14:41:07 +0200 Subject: [PATCH 89/94] fix typo (#32712) --- .../Prototypes/Entities/Objects/Misc/fire_extinguisher.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Prototypes/Entities/Objects/Misc/fire_extinguisher.yml b/Resources/Prototypes/Entities/Objects/Misc/fire_extinguisher.yml index b306da6442..b0c586fc75 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/fire_extinguisher.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/fire_extinguisher.yml @@ -97,7 +97,7 @@ name: pocket fire extinguisher parent: FireExtinguisher id: FireExtinguisherMini - description: A light and compact fibreglass-framed model fire extinguisher. It holds less water then its bigger brother. + description: A light and compact fibreglass-framed model fire extinguisher. It holds less water than its bigger brother. components: - type: Sprite sprite: Objects/Misc/fire_extinguisher_mini.rsi From 5a41cc81b307e1ea8b82f30392bb5f22ef421716 Mon Sep 17 00:00:00 2001 From: beck-thompson <107373427+beck-thompson@users.noreply.github.com> Date: Wed, 9 Oct 2024 05:44:38 -0700 Subject: [PATCH 90/94] Decrease price of radio jammer from 4 tc -> 3 tc (#32472) * First commit * increase price by one tc --- Resources/Prototypes/Catalog/uplink_catalog.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Prototypes/Catalog/uplink_catalog.yml b/Resources/Prototypes/Catalog/uplink_catalog.yml index a91aab53c8..748a65b761 100644 --- a/Resources/Prototypes/Catalog/uplink_catalog.yml +++ b/Resources/Prototypes/Catalog/uplink_catalog.yml @@ -887,7 +887,7 @@ discountDownTo: Telecrystal: 2 cost: - Telecrystal: 4 + Telecrystal: 3 categories: - UplinkDisruption From fc1c709d4421cb2267daf35b50f764629645624b Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 9 Oct 2024 12:45:45 +0000 Subject: [PATCH 91/94] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 1b358b481e..fc57e527ab 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: lzk228 - changes: - - message: Fixed permanent absence of the approver string in cargo invoice. - type: Fix - id: 6997 - time: '2024-07-29T06:19:43.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29690 - author: JIPDawg changes: - message: F9 is correctly bound to the Round End Summary window by default now. @@ -3942,3 +3935,10 @@ id: 7496 time: '2024-10-08T23:29:41.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32623 +- author: Beck Thompson + changes: + - message: The radio jammers price has been decreased from 4 -> 3 TC. + type: Tweak + id: 7497 + time: '2024-10-09T12:44:38.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32472 From 6d9959734928fd6fbd6c7b05baac60106f000bb6 Mon Sep 17 00:00:00 2001 From: chavonadelal <156101927+chavonadelal@users.noreply.github.com> Date: Wed, 9 Oct 2024 18:05:36 +0300 Subject: [PATCH 92/94] Job title localization (#32338) * Job title localization * Correcting fields --- Content.Server/Access/Systems/AgentIDCardSystem.cs | 2 +- Content.Server/Access/Systems/IdCardConsoleSystem.cs | 2 +- Content.Server/IdentityManagement/IdentitySystem.cs | 2 +- Content.Server/Medical/SuitSensors/SuitSensorSystem.cs | 4 ++-- Content.Server/PDA/PdaSystem.cs | 2 +- Content.Shared/Access/Components/IdCardComponent.cs | 7 ++++++- Content.Shared/Access/Systems/IdExaminableSystem.cs | 2 +- Content.Shared/Access/Systems/SharedIdCardSystem.cs | 9 +++++---- Resources/Locale/en-US/job/job-names.ftl | 5 +++++ .../Entities/Objects/Misc/identification_cards.yml | 6 +++--- 10 files changed, 26 insertions(+), 15 deletions(-) diff --git a/Content.Server/Access/Systems/AgentIDCardSystem.cs b/Content.Server/Access/Systems/AgentIDCardSystem.cs index 4de908bc30..a38aefce93 100644 --- a/Content.Server/Access/Systems/AgentIDCardSystem.cs +++ b/Content.Server/Access/Systems/AgentIDCardSystem.cs @@ -67,7 +67,7 @@ private void AfterUIOpen(EntityUid uid, AgentIDCardComponent component, AfterAct if (!TryComp(uid, out var idCard)) return; - var state = new AgentIDCardBoundUserInterfaceState(idCard.FullName ?? "", idCard.JobTitle ?? "", idCard.JobIcon); + var state = new AgentIDCardBoundUserInterfaceState(idCard.FullName ?? "", idCard.LocalizedJobTitle ?? "", idCard.JobIcon); _uiSystem.SetUiState(uid, AgentIDCardUiKey.Key, state); } diff --git a/Content.Server/Access/Systems/IdCardConsoleSystem.cs b/Content.Server/Access/Systems/IdCardConsoleSystem.cs index e02664f2bb..a9e5d9a6d3 100644 --- a/Content.Server/Access/Systems/IdCardConsoleSystem.cs +++ b/Content.Server/Access/Systems/IdCardConsoleSystem.cs @@ -96,7 +96,7 @@ private void UpdateUserInterface(EntityUid uid, IdCardConsoleComponent component PrivilegedIdIsAuthorized(uid, component), true, targetIdComponent.FullName, - targetIdComponent.JobTitle, + targetIdComponent.LocalizedJobTitle, targetAccessComponent.Tags.ToList(), possibleAccess, jobProto, diff --git a/Content.Server/IdentityManagement/IdentitySystem.cs b/Content.Server/IdentityManagement/IdentitySystem.cs index e110a42483..ff6901f5a9 100644 --- a/Content.Server/IdentityManagement/IdentitySystem.cs +++ b/Content.Server/IdentityManagement/IdentitySystem.cs @@ -166,7 +166,7 @@ private IdentityRepresentation GetIdentityRepresentation(EntityUid target, if (_idCard.TryFindIdCard(target, out var id)) { presumedName = string.IsNullOrWhiteSpace(id.Comp.FullName) ? null : id.Comp.FullName; - presumedJob = id.Comp.JobTitle?.ToLowerInvariant(); + presumedJob = id.Comp.LocalizedJobTitle?.ToLowerInvariant(); } // If it didn't find a job, that's fine. diff --git a/Content.Server/Medical/SuitSensors/SuitSensorSystem.cs b/Content.Server/Medical/SuitSensors/SuitSensorSystem.cs index b1b87ae981..f56b16432e 100644 --- a/Content.Server/Medical/SuitSensors/SuitSensorSystem.cs +++ b/Content.Server/Medical/SuitSensors/SuitSensorSystem.cs @@ -363,8 +363,8 @@ public void SetSensor(Entity sensors, SuitSensorMode mode, { if (card.Comp.FullName != null) userName = card.Comp.FullName; - if (card.Comp.JobTitle != null) - userJob = card.Comp.JobTitle; + if (card.Comp.LocalizedJobTitle != null) + userJob = card.Comp.LocalizedJobTitle; userJobIcon = card.Comp.JobIcon; foreach (var department in card.Comp.JobDepartments) diff --git a/Content.Server/PDA/PdaSystem.cs b/Content.Server/PDA/PdaSystem.cs index cdcdbc02e5..7f17b97d0a 100644 --- a/Content.Server/PDA/PdaSystem.cs +++ b/Content.Server/PDA/PdaSystem.cs @@ -192,7 +192,7 @@ public void UpdatePdaUi(EntityUid uid, PdaComponent? pda = null) { ActualOwnerName = pda.OwnerName, IdOwner = id?.FullName, - JobTitle = id?.JobTitle, + JobTitle = id?.LocalizedJobTitle, StationAlertLevel = pda.StationAlertLevel, StationAlertColor = pda.StationAlertColor }, diff --git a/Content.Shared/Access/Components/IdCardComponent.cs b/Content.Shared/Access/Components/IdCardComponent.cs index ccd4cccbe7..e80ced6464 100644 --- a/Content.Shared/Access/Components/IdCardComponent.cs +++ b/Content.Shared/Access/Components/IdCardComponent.cs @@ -20,7 +20,12 @@ public sealed partial class IdCardComponent : Component [DataField] [AutoNetworkedField] [Access(typeof(SharedIdCardSystem), typeof(SharedPdaSystem), typeof(SharedAgentIdCardSystem), Other = AccessPermissions.ReadWrite)] - public string? JobTitle; + public LocId? JobTitle; + + private string? _jobTitle; + + [Access(typeof(SharedIdCardSystem), typeof(SharedPdaSystem), typeof(SharedAgentIdCardSystem), Other = AccessPermissions.ReadWriteExecute)] + public string? LocalizedJobTitle { set => _jobTitle = value; get => _jobTitle ?? Loc.GetString(JobTitle ?? string.Empty); } /// /// The state of the job icon rsi. diff --git a/Content.Shared/Access/Systems/IdExaminableSystem.cs b/Content.Shared/Access/Systems/IdExaminableSystem.cs index 13359adcba..807ccc6616 100644 --- a/Content.Shared/Access/Systems/IdExaminableSystem.cs +++ b/Content.Shared/Access/Systems/IdExaminableSystem.cs @@ -67,7 +67,7 @@ public string GetMessage(EntityUid uid) private string GetNameAndJob(IdCardComponent id) { - var jobSuffix = string.IsNullOrWhiteSpace(id.JobTitle) ? string.Empty : $" ({id.JobTitle})"; + var jobSuffix = string.IsNullOrWhiteSpace(id.LocalizedJobTitle) ? string.Empty : $" ({id.LocalizedJobTitle})"; var val = string.IsNullOrWhiteSpace(id.FullName) ? Loc.GetString(id.NameLocId, diff --git a/Content.Shared/Access/Systems/SharedIdCardSystem.cs b/Content.Shared/Access/Systems/SharedIdCardSystem.cs index 8bdc548e35..a5a37eecbd 100644 --- a/Content.Shared/Access/Systems/SharedIdCardSystem.cs +++ b/Content.Shared/Access/Systems/SharedIdCardSystem.cs @@ -116,6 +116,7 @@ public bool TryGetIdCard(EntityUid uid, out Entity idCard) /// /// /// If provided with a player's EntityUid to the player parameter, adds the change to the admin logs. + /// Actually works with the LocalizedJobTitle DataField and not with JobTitle. /// public bool TryChangeJobTitle(EntityUid uid, string? jobTitle, IdCardComponent? id = null, EntityUid? player = null) { @@ -134,9 +135,9 @@ public bool TryChangeJobTitle(EntityUid uid, string? jobTitle, IdCardComponent? jobTitle = null; } - if (id.JobTitle == jobTitle) + if (id.LocalizedJobTitle == jobTitle) return true; - id.JobTitle = jobTitle; + id.LocalizedJobTitle = jobTitle; Dirty(uid, id); UpdateEntityName(uid, id); @@ -238,7 +239,7 @@ private void UpdateEntityName(EntityUid uid, IdCardComponent? id = null) if (!Resolve(uid, ref id)) return; - var jobSuffix = string.IsNullOrWhiteSpace(id.JobTitle) ? string.Empty : $" ({id.JobTitle})"; + var jobSuffix = string.IsNullOrWhiteSpace(id.LocalizedJobTitle) ? string.Empty : $" ({id.LocalizedJobTitle})"; var val = string.IsNullOrWhiteSpace(id.FullName) ? Loc.GetString(id.NameLocId, @@ -251,7 +252,7 @@ private void UpdateEntityName(EntityUid uid, IdCardComponent? id = null) private static string ExtractFullTitle(IdCardComponent idCardComponent) { - return $"{idCardComponent.FullName} ({CultureInfo.CurrentCulture.TextInfo.ToTitleCase(idCardComponent.JobTitle ?? string.Empty)})" + return $"{idCardComponent.FullName} ({CultureInfo.CurrentCulture.TextInfo.ToTitleCase(idCardComponent.LocalizedJobTitle ?? string.Empty)})" .Trim(); } } diff --git a/Resources/Locale/en-US/job/job-names.ftl b/Resources/Locale/en-US/job/job-names.ftl index 0140adf8a2..5a0b615b47 100644 --- a/Resources/Locale/en-US/job/job-names.ftl +++ b/Resources/Locale/en-US/job/job-names.ftl @@ -62,6 +62,11 @@ job-name-unknown = Unknown job-name-virologist = Virologist job-name-zombie = Zombie +# Job titles +job-title-visitor = Visitor +job-title-cluwne = Cluwne +job-title-universal = Universal + # Role timers - Make these alphabetical or I cut you JobAtmosphericTechnician = Atmospheric Technician JobBartender = Bartender diff --git a/Resources/Prototypes/Entities/Objects/Misc/identification_cards.yml b/Resources/Prototypes/Entities/Objects/Misc/identification_cards.yml index a08afa127e..ccb83b6aaa 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/identification_cards.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/identification_cards.yml @@ -443,7 +443,7 @@ - state: default - state: idvisitor - type: IdCard - jobTitle: Visitor + jobTitle: job-title-visitor jobIcon: JobIconVisitor - type: PresetIdCard job: Visitor @@ -741,7 +741,7 @@ - state: default - state: idcluwne - type: IdCard - jobTitle: Cluwne + jobTitle: job-title-cluwne - type: Unremoveable - type: entity @@ -801,7 +801,7 @@ - type: Item heldPrefix: green - type: IdCard - jobTitle: Universal + jobTitle: job-title-universal jobIcon: JobIconAdmin - type: Access groups: From 327466a6e2e36eba03c4bee397371fec5d3e4a86 Mon Sep 17 00:00:00 2001 From: beck-thompson <107373427+beck-thompson@users.noreply.github.com> Date: Wed, 9 Oct 2024 11:01:32 -0700 Subject: [PATCH 93/94] Plushies can now have pAIs stuffed into them (v2)! (#30805) * First commit * I forgot silly me * Actually added comments * spellin * fixes * more blacklists * Minor fixes * Speech Verb also changes now * Simple name stuff * Other fixes * remove one line of whitespace --------- Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> --- .../EntitySystems/ReagentGrinderSystem.cs | 4 +++ .../Nutrition/EntitySystems/FoodSystem.cs | 4 +++ .../ChangeNameInContainerComponent.cs | 18 +++++++++++ .../ChangeNameInContainerSystem.cs | 30 +++++++++++++++++++ .../Components/SecretStashComponent.cs | 7 +++++ .../EntitySystems/SecretStashSystem.cs | 8 +++-- .../components/secret-stash-component.ftl | 1 + .../Prototypes/Entities/Objects/Fun/pai.yml | 4 +++ .../Prototypes/Entities/Objects/Fun/toys.yml | 20 +++++++++++++ .../Entities/Objects/Misc/dat_fukken_disk.yml | 3 ++ .../Structures/Furniture/potted_plants.yml | 2 ++ Resources/Prototypes/tags.yml | 5 +++- 12 files changed, 102 insertions(+), 4 deletions(-) create mode 100644 Content.Shared/ChangeNameInContainer/ChangeNameInContainerComponent.cs create mode 100644 Content.Shared/ChangeNameInContainer/ChangeNameInContainerSystem.cs diff --git a/Content.Server/Kitchen/EntitySystems/ReagentGrinderSystem.cs b/Content.Server/Kitchen/EntitySystems/ReagentGrinderSystem.cs index 12c5a30a4b..de848b34c2 100644 --- a/Content.Server/Kitchen/EntitySystems/ReagentGrinderSystem.cs +++ b/Content.Server/Kitchen/EntitySystems/ReagentGrinderSystem.cs @@ -5,6 +5,7 @@ using Content.Shared.Chemistry.EntitySystems; using Content.Shared.Chemistry.Components; using Content.Shared.Containers.ItemSlots; +using Content.Shared.Destructible; using Content.Shared.FixedPoint; using Content.Shared.Interaction; using Content.Shared.Kitchen; @@ -122,6 +123,9 @@ public override void Update(float frameTime) if (solution.Volume > containerSolution.AvailableVolume) continue; + var dev = new DestructionEventArgs(); + RaiseLocalEvent(item, dev); + QueueDel(item); } diff --git a/Content.Server/Nutrition/EntitySystems/FoodSystem.cs b/Content.Server/Nutrition/EntitySystems/FoodSystem.cs index 3a7c249c2b..d7daf632d6 100644 --- a/Content.Server/Nutrition/EntitySystems/FoodSystem.cs +++ b/Content.Server/Nutrition/EntitySystems/FoodSystem.cs @@ -33,6 +33,7 @@ using Content.Shared.Containers.ItemSlots; using Robust.Server.GameObjects; using Content.Shared.Whitelist; +using Content.Shared.Destructible; namespace Content.Server.Nutrition.EntitySystems; @@ -335,6 +336,9 @@ public void DeleteAndSpawnTrash(FoodComponent component, EntityUid food, EntityU if (ev.Cancelled) return; + var dev = new DestructionEventArgs(); + RaiseLocalEvent(food, dev); + if (component.Trash.Count == 0) { QueueDel(food); diff --git a/Content.Shared/ChangeNameInContainer/ChangeNameInContainerComponent.cs b/Content.Shared/ChangeNameInContainer/ChangeNameInContainerComponent.cs new file mode 100644 index 0000000000..dca8f5b29b --- /dev/null +++ b/Content.Shared/ChangeNameInContainer/ChangeNameInContainerComponent.cs @@ -0,0 +1,18 @@ +using Content.Shared.Whitelist; +using Robust.Shared.GameStates; + +namespace Content.Shared.ChangeNameInContainer; + +/// +/// An entity with this component will get its name and verb chaned to the container it's inside of. E.g, if your a +/// pAI that has this component and are inside a lizard plushie, your name when talking will be "lizard plushie". +/// +[RegisterComponent, NetworkedComponent, Access(typeof(ChangeNameInContainerSystem))] +public sealed partial class ChangeVoiceInContainerComponent : Component +{ + /// + /// A whitelist of containers that will change the name. + /// + [DataField] + public EntityWhitelist? Whitelist; +} diff --git a/Content.Shared/ChangeNameInContainer/ChangeNameInContainerSystem.cs b/Content.Shared/ChangeNameInContainer/ChangeNameInContainerSystem.cs new file mode 100644 index 0000000000..f9abda3ec2 --- /dev/null +++ b/Content.Shared/ChangeNameInContainer/ChangeNameInContainerSystem.cs @@ -0,0 +1,30 @@ +using Content.Shared.Chat; +using Robust.Shared.Containers; +using Content.Shared.Whitelist; +using Content.Shared.Speech; + +namespace Content.Shared.ChangeNameInContainer; + +public sealed partial class ChangeNameInContainerSystem : EntitySystem +{ + [Dependency] private readonly SharedContainerSystem _container = default!; + [Dependency] private readonly EntityWhitelistSystem _whitelist = default!; + + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(OnTransformSpeakerName); + } + + private void OnTransformSpeakerName(Entity ent, ref TransformSpeakerNameEvent args) + { + if (!_container.TryGetContainingContainer((ent, null, null), out var container) + || _whitelist.IsWhitelistFail(ent.Comp.Whitelist, container.Owner)) + return; + + args.VoiceName = Name(container.Owner); + if (TryComp(container.Owner, out var speechComp)) + args.SpeechVerb = speechComp.SpeechVerb; + } + +} diff --git a/Content.Shared/Storage/Components/SecretStashComponent.cs b/Content.Shared/Storage/Components/SecretStashComponent.cs index 3bf8e2e871..f8fff4c194 100644 --- a/Content.Shared/Storage/Components/SecretStashComponent.cs +++ b/Content.Shared/Storage/Components/SecretStashComponent.cs @@ -8,6 +8,7 @@ using Content.Shared.DoAfter; using Robust.Shared.Serialization; using Robust.Shared.Audio; +using Content.Shared.Whitelist; namespace Content.Shared.Storage.Components { @@ -26,6 +27,12 @@ public sealed partial class SecretStashComponent : Component [DataField("maxItemSize")] public ProtoId MaxItemSize = "Small"; + /// + /// Entity blacklist for secret stashes. + /// + [DataField] + public EntityWhitelist? Blacklist; + /// /// This sound will be played when you try to insert an item in the stash. /// The sound will be played whether or not the item is actually inserted. diff --git a/Content.Shared/Storage/EntitySystems/SecretStashSystem.cs b/Content.Shared/Storage/EntitySystems/SecretStashSystem.cs index 901d744df5..08a69c345f 100644 --- a/Content.Shared/Storage/EntitySystems/SecretStashSystem.cs +++ b/Content.Shared/Storage/EntitySystems/SecretStashSystem.cs @@ -13,6 +13,7 @@ using Content.Shared.Verbs; using Content.Shared.IdentityManagement; using Content.Shared.Tools.EntitySystems; +using Content.Shared.Whitelist; namespace Content.Shared.Storage.EntitySystems; @@ -27,7 +28,7 @@ public sealed class SecretStashSystem : EntitySystem [Dependency] private readonly SharedItemSystem _item = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly ToolOpenableSystem _toolOpenableSystem = default!; - + [Dependency] private readonly EntityWhitelistSystem _whitelistSystem = default!; public override void Initialize() { @@ -90,8 +91,9 @@ private bool TryStashItem(Entity entity, EntityUid userUid return false; } - // check if item is too big to fit into secret stash - if (_item.GetSizePrototype(itemComp.Size) > _item.GetSizePrototype(entity.Comp.MaxItemSize)) + // check if item is too big to fit into secret stash or is in the blacklist + if (_item.GetSizePrototype(itemComp.Size) > _item.GetSizePrototype(entity.Comp.MaxItemSize) || + _whitelistSystem.IsBlacklistPass(entity.Comp.Blacklist, itemToHideUid)) { var msg = Loc.GetString("comp-secret-stash-action-hide-item-too-big", ("item", itemToHideUid), ("stashname", GetStashName(entity))); diff --git a/Resources/Locale/en-US/storage/components/secret-stash-component.ftl b/Resources/Locale/en-US/storage/components/secret-stash-component.ftl index 3689242807..16e575c0f1 100644 --- a/Resources/Locale/en-US/storage/components/secret-stash-component.ftl +++ b/Resources/Locale/en-US/storage/components/secret-stash-component.ftl @@ -22,3 +22,4 @@ comp-secret-stash-verb-open = Open ### Stash names secret-stash-plant = plant secret-stash-toilet = toilet cistern +secret-stash-plushie = plushie diff --git a/Resources/Prototypes/Entities/Objects/Fun/pai.yml b/Resources/Prototypes/Entities/Objects/Fun/pai.yml index ff662c2186..b4af7f010e 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/pai.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/pai.yml @@ -69,6 +69,10 @@ Searching: { state: pai-searching-overlay } On: { state: pai-on-overlay } - type: StationMap + - type: ChangeVoiceInContainer + whitelist: + components: + - SecretStash - type: entity parent: [ PersonalAI, BaseSyndicateContraband] diff --git a/Resources/Prototypes/Entities/Objects/Fun/toys.yml b/Resources/Prototypes/Entities/Objects/Fun/toys.yml index ffb1611a71..a5105fac5f 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/toys.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/toys.yml @@ -52,6 +52,24 @@ reagents: - ReagentId: Fiber Quantity: 10 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - type: Speech + speechVerb: Default # for pais (In the secret stash) + - type: SecretStash + secretStashName: secret-stash-plushie + blacklist: + components: + - SecretStash # Prevents being able to insert plushies inside each other (infinite plush)! + - NukeDisk # Could confuse the nukies if they don't know that plushies have a stash. + tags: + - QuantumSpinInverter # It will cause issues with the grinder... + - FakeNukeDisk # So you can't tell if the nuke disk is real or fake depending on if it can be inserted or not. + - type: ToolOpenable + openToolQualityNeeded: Slicing + closeToolQualityNeeded: Slicing # Should probably be stitching or something if that gets added + name: secret-stash-plushie - type: entity parent: BasePlushie @@ -323,6 +341,8 @@ equippedPrefix: lizard slots: - HEAD + - type: Speech + speechVerb: Reptilian # for pais (In the secret stash) - type: entity parent: PlushieLizard diff --git a/Resources/Prototypes/Entities/Objects/Misc/dat_fukken_disk.yml b/Resources/Prototypes/Entities/Objects/Misc/dat_fukken_disk.yml index 90e975b93e..e1fc3fa5b6 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/dat_fukken_disk.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/dat_fukken_disk.yml @@ -35,3 +35,6 @@ state: icon - type: StaticPrice price: 1 # it's worth even less than normal items. Perfection. + - type: Tag + tags: + - FakeNukeDisk diff --git a/Resources/Prototypes/Entities/Structures/Furniture/potted_plants.yml b/Resources/Prototypes/Entities/Structures/Furniture/potted_plants.yml index 97c845a786..9e6d6580b3 100644 --- a/Resources/Prototypes/Entities/Structures/Furniture/potted_plants.yml +++ b/Resources/Prototypes/Entities/Structures/Furniture/potted_plants.yml @@ -25,6 +25,8 @@ offset: "0.0,0.3" sprite: Structures/Furniture/potted_plants.rsi noRot: true + - type: Speech + speechVerb: Plant # for pais (In the secret stash) - type: SecretStash tryInsertItemSound: /Audio/Effects/plant_rustle.ogg tryRemoveItemSound: /Audio/Effects/plant_rustle.ogg diff --git a/Resources/Prototypes/tags.yml b/Resources/Prototypes/tags.yml index 86ade97d4e..4f9d0eb3f8 100644 --- a/Resources/Prototypes/tags.yml +++ b/Resources/Prototypes/tags.yml @@ -993,6 +993,9 @@ - type: Tag id: Nugget # for chicken nuggets +- type: Tag + id: FakeNukeDisk + - type: Tag id: NukeOpsUplink @@ -1177,7 +1180,7 @@ - type: Tag id: SecureWindoor -- type: Tag +- type: Tag id: SecurityHelmet - type: Tag From ac16a05fef3b7bb029e62c8d0e354999027dca7d Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 9 Oct 2024 18:02:38 +0000 Subject: [PATCH 94/94] Automatic changelog update --- Resources/Changelog/Changelog.yml | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index fc57e527ab..469ffc0724 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: JIPDawg - changes: - - message: F9 is correctly bound to the Round End Summary window by default now. - type: Fix - id: 6998 - time: '2024-07-29T06:49:28.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30438 - author: githubuser508 changes: - message: Candles crate and the ability for Cargo to order it. @@ -3942,3 +3935,16 @@ id: 7497 time: '2024-10-09T12:44:38.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32472 +- author: beck-thompson, Moomoobeef + changes: + - message: Plushies now can have small items stuffed inside of them! To open, click + on the plush with a sharp item. You can then insert a small item into the plush. + To close, just click on it again with any sharp item! + type: Add + - message: When pAIs are inserted into plushies, their names will be updated to + the plushies name. E.g when inside a lizard plushie the pAI's name will appear + as "lizard plushie" when speaking. + type: Add + id: 7498 + time: '2024-10-09T18:01:32.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30805